]> git.pld-linux.org Git - packages/glibc.git/blob - glibc.spec
- updated paths patch: set nscd persistent storage dir to /var/lib/nscd
[packages/glibc.git] / glibc.spec
1 #
2 # You can define min_kernel macro by "rpm --define 'min_kernel version'"
3 # default is 2.4.6 for linuxthreads, 2.6.0 for NPTL
4 #
5 # Conditional build:
6 %bcond_with     omitfp          # build without frame pointer (pass \--enable-omitfp)
7 %bcond_without  memusage        # don't build memusage utility
8 %bcond_with     kernelheaders   # use headers from %{_kernelsrcdir} instead of
9                                 # linux-libc-headers (evil, breakage etc., don't use)
10 %bcond_without  linuxthreads    # don't build linuxthreads version (NPTL only)
11 %bcond_without  nptl            # don't build NPTL version (linuxthreads only)
12 %bcond_without  tls             # don't support TLS at all (implies no NPTL)
13 %bcond_with     __thread        # use TLS in linuxthreads
14 %bcond_without  selinux         # without SELinux support (in nscd)
15 %bcond_with     tests           # perform "make test"
16 %bcond_with     tests_nptl      # perform NPTL tests on dual build (requires 2.6.x kernel)
17 %bcond_without  localedb        # don't build localedb-all (is time consuming)
18 %bcond_with     cross           # build using crossgcc (without libgcc_eh)
19 #
20 # TODO:
21 # - look at locale fixes/updates in bugzilla
22 # - usable persitent storage in nscd:
23 #   - change persistent storage paths to /var/lib/nscd (to be FHS 2.3 compliant)
24 #     (see glibc/nscd/nscd.h)
25 #   - create nscd user, use it in nscd.conf (see -pld.patch)
26 # [OLD]
27 # - localedb-gen man pages(?)
28 # - fix what trojan broke while upgreading (getaddrinfo-workaround)
29 # - math/{test-fenv,test-tgmath,test-float,test-ifloat},
30 #   linuxthreads/tst-cancel8, debug/backtrace-tst(SEGV)  fail on alpha
31 # - problem compiling with --enable-bounded (must be reported to libc-alpha)
32 #   (is this comment still valid???)
33 #
34
35 %{!?min_kernel:%global          min_kernel      2.4.6}
36 %if "%{min_kernel}" < "2.6.0"
37 %global         nptl_min_kernel 2.6.0
38 %else
39 %global         nptl_min_kernel %{min_kernel}
40 %endif
41
42 %if %{with tls}
43 # sparc temporarily removed (broken)
44 %ifnarch %{ix86} amd64 ia64 alpha s390 s390x sparc64 sparcv9 ppc ppc64
45 %undefine       with_tls
46 %endif
47 %endif
48
49 %if %{with nptl}
50 # on x86 uses cmpxchgl (available since i486)
51 # on sparc only sparcv9 is supported
52 %ifnarch i486 i586 i686 pentium3 pentium4 athlon amd64 ia64 alpha s390 s390x sparc64 sparcv9 ppc ppc64
53 %undefine       with_nptl
54 %else
55 %if %{without tls}
56 %undefine       with_nptl
57 %endif
58 %endif
59 %endif
60
61 %ifarch sparc64
62 %undefine       with_memusage
63 %endif
64
65 %if %{with linuxthreads} && %{with nptl}
66 %define         with_dual       1
67 %endif
68
69 %define         llh_version     7:2.6.6.0
70
71 Summary:        GNU libc
72 Summary(de):    GNU libc
73 Summary(es):    GNU libc
74 Summary(fr):    GNU libc
75 Summary(ja):    GNU libc ¥é¥¤¥Ö¥é¥ê
76 Summary(pl):    GNU libc
77 Summary(ru):    GNU libc ×ÅÒÓÉÉ 2.3
78 Summary(tr):    GNU libc
79 Summary(uk):    GNU libc ×ÅÒÓ¦§ 2.3
80 Name:           glibc
81 Version:        2.3.4
82 Release:        0.99999999.2
83 Epoch:          6
84 License:        LGPL
85 Group:          Libraries
86 Source0:        ftp://sources.redhat.com/pub/glibc/releases/%{name}-%{version}.tar.bz2
87 # Source0-md5:  174ac5ed4f2851fcc866a3bac1e4a6a5
88 Source1:        ftp://sources.redhat.com/pub/glibc/releases/%{name}-linuxthreads-%{version}.tar.bz2
89 # Source1-md5:  7a199cd4965eb5622163756ae64358fe
90 Source2:        nscd.init
91 Source3:        nscd.sysconfig
92 Source4:        nscd.logrotate
93 #Source5:       http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/%{name}-man-pages.tar.bz2
94 Source5:        %{name}-man-pages.tar.bz2
95 # Source5-md5:  03bee93e9786b3e7dad2570ccb0cbc5c
96 #Source6:       http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/%{name}-non-english-man-pages.tar.bz2
97 Source6:        %{name}-non-english-man-pages.tar.bz2
98 # Source6-md5:  6159f0a9b6426b5f6fc1b0d8d21b9b76
99 Source7:        %{name}-localedb-gen
100 Patch0:         %{name}-info.patch
101 Patch1:         %{name}-pl.po-update.patch
102 Patch2:         %{name}-pld.patch
103 Patch3:         %{name}-crypt-blowfish.patch
104 Patch4:         %{name}-linuxthreads-lock.patch
105 Patch5:         %{name}-pthread_create-manpage.patch
106 Patch6:         %{name}-paths.patch
107 Patch7:         %{name}-postshell.patch
108 Patch8:         %{name}-missing-nls.patch
109 Patch9:         %{name}-java-libc-wait.patch
110 Patch10:        %{name}-lthrds_noomit.patch
111 Patch11:        %{name}-no_opt_override.patch
112 Patch12:        %{name}-includes.patch
113 Patch13:        %{name}-soinit-EH_FRAME.patch
114 Patch14:        %{name}-sparc-errno_fix.patch
115 Patch15:        %{name}-csu-quotes.patch
116 Patch16:        %{name}-tests-noproc.patch
117 Patch17:        %{name}-new-charsets.patch
118 Patch18:        %{name}-sr_CS.patch
119 Patch19:        %{name}-sparc64-dl-machine.patch
120 Patch20:        %{name}-tzfile-noassert.patch
121 Patch21:        %{name}-morelocales.patch
122 Patch22:        %{name}-locale_ZA.patch
123 Patch23:        %{name}-locale_fixes.patch
124 Patch24:        %{name}-ZA_collate.patch
125 Patch25:        %{name}-tls_fix.patch
126 Patch26:        %{name}-nscd.patch
127 Patch27:        %{name}-iconvconfig-nxstack.patch
128 Patch28:        %{name}-gcc4.patch
129 Patch29:        %{name}-cross-gcc_eh.patch
130 # PaX hack (dropped)
131 #Patch30:       %{name}-pax_dl-execstack.patch
132 URL:            http://www.gnu.org/software/libc/
133 BuildRequires:  automake
134 BuildRequires:  binutils >= 2:2.15.90.0.3
135 BuildRequires:  gcc >= 3.2
136 %ifarch ppc ppc64 sparc sparcv9 sparc64
137 %if %{with nptl} || %{with __thread}
138 BuildRequires:  gcc >= 5:3.4
139 %endif
140 %endif
141 %{?with_memusage:BuildRequires: gd-devel >= 2.0.1}
142 BuildRequires:  gettext-devel >= 0.10.36
143 %if %{without kernelheaders}
144 BuildRequires:  linux-libc-headers >= %{llh_version}
145 %endif
146 %{?with_selinux:BuildRequires:  libselinux-devel >= 1.18}
147 BuildRequires:  perl-base
148 BuildRequires:  rpm-build >= 4.3-0.20030610.28
149 BuildRequires:  rpm-perlprov
150 BuildRequires:  rpmbuild(macros) >= 1.159
151 BuildRequires:  sed >= 4.0.5
152 BuildRequires:  texinfo
153 AutoReq:        false
154 PreReq:         basesystem
155 Requires:       glibc-misc = %{epoch}:%{version}-%{release}
156 %{?with_tls:Provides:   glibc(tls)}
157 Provides:       ldconfig
158 Provides:       /sbin/ldconfig
159 Obsoletes:      %{name}-common
160 Obsoletes:      %{name}-debug
161 Obsoletes:      ldconfig
162 Conflicts:      kernel < %{min_kernel}
163 Conflicts:      ld.so < 1.9.9-10
164 Conflicts:      man-pages < 1.43
165 Conflicts:      rc-scripts < 0.3.1-13
166 Conflicts:      rpm < 4.1
167 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
168
169 %define         debugcflags     -O1 -g
170 # avoid -s here (ld.so must not be stripped to allow any program debugging)
171 %define         rpmldflags      %{nil}
172 %define         specflags_sparc64       -mcpu=ultrasparc -mvis -fcall-used-g6
173 # we don't want perl dependency in glibc-devel
174 %define         _noautoreqfiles         %{_bindir}/mtrace
175 # hack: don't depend on rpmlib(PartialHardlinkSets) for easier upgrade from Ra
176 # (hardlinks here are unlikely to be "partial"... and rpm 4.0.2 from Ra was
177 # patched not to crash on partial hardlinks too)
178 %define         _hack_dontneed_PartialHardlinkSets      1
179 %define         _noautochrpath          .*\\(ldconfig\\|sln\\)
180 %if %{with kernelheaders}
181 %define         sysheaders      %{_kernelsrcdir}/include
182 %else
183 %define         sysheaders      %{_includedir}
184 %endif
185
186 %description
187 Contains the standard libraries that are used by multiple programs on
188 the system. In order to save disk space and memory, as well as to ease
189 upgrades, common system code is kept in one place and shared between
190 programs. This package contains the most important sets of shared
191 libraries, the standard C library and the standard math library.
192 Without these, a Linux system will not function. It also contains
193 national language (locale) support and timezone databases.
194
195 Can be used on: Linux kernel >= %{min_kernel}.
196
197 %description -l es
198 Contiene las bibliotecas estándared que son usadas por varios
199 programas del sistema. Para ahorrar el espacio en el disco y la
200 memoria, igual que para facilitar actualizaciones, código común del
201 sistema se guarda en un sitio y es compartido entre los programas.
202 Este paquete contiene las bibliotecas compartidas más importantes, es
203 decir la biblioteca C estándar y la biblioteca estándar de matemática.
204 Sin éstas, un sistema Linux no podrá funcionar. También está incluido
205 soporte de idiomas nacionales (locale) y bases de datos de zona de
206 tiempo.
207
208 Puede usarse con: núcleo Linux >= %{min_kernel}.
209
210 %description -l de
211 Enthält die Standard-Libraries, die von verschiedenen Programmen im
212 System benutzt werden. Um Festplatten- und Arbeitsspeicher zu sparen
213 und zur Vereinfachung von Upgrades ist der gemeinsame Systemcode an
214 einer einzigen Stelle gespeichert und wird von den Programmen
215 gemeinsam genutzt. Dieses Paket enthält die wichtigsten Sets der
216 shared Libraries, die Standard-C-Library und die
217 Standard-Math-Library, ohne die das Linux-System nicht funktioniert.
218 Ferner enthält es den Support für die verschiedenen Sprachgregionen
219 (locale) und die Zeitzonen-Datenbank.
220
221 Can be used on: Linux kernel >= %{min_kernel}.
222
223 %description -l fr
224 Contient les bibliothèques standards utilisées par de nombreux
225 programmes du système. Afin d'économiser l'espace disque et mémoire,
226 et de faciliter les mises à jour, le code commun au système est mis à
227 un endroit et partagé entre les programmes. Ce paquetage contient les
228 bibliothèques partagées les plus importantes, la bibliothèque standard
229 du C et la bibliothèque mathématique standard. Sans celles-ci, un
230 système Linux ne peut fonctionner. Il contient aussi la gestion des
231 langues nationales (locales) et les bases de données des zones
232 horaires.
233
234 Can be used on: Linux kernel >= %{min_kernel}.
235
236 %description -l ja
237 glibc
238 ¥Ñ¥Ã¥±¡¼¥¸¤Ï¥·¥¹¥Æ¥à¾å¤ÎÊ£¿ô¤Î¥×¥í¥°¥é¥à¤Ç»È¤ï¤ì¤ëɸ½à¥é¥¤¥Ö¥é¥ê¤ò
239 ¤Õ¤¯¤ß¤Þ¤¹¡£¥Ç¥£¥¹¥¯¥¹¥Ú¡¼¥¹¤È¥á¥â¥ê¤òÀáÌó¤·¤¿¤ê¡¢¥¢¥Ã¥×¥°¥ì¡¼¥É¤ò
240 ÍѰդˤ¹¤ë¤¿¤á¤Ë¡¢¶¦Ä̤Υ·¥¹¥Æ¥à¥³¡¼¥É¤Ï°ì¤Ä¤Î¾ì½ê¤Ë¤ª¤«¤ì¡¢¥×¥í¥°¥é¥à
241 ´Ö¤Ç¶¦Í­¤µ¤ì¤Þ¤¹¡£¤³¤ÎÉôʬŪ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤Ï¥·¥§¥¢¥É¥é¥¤¥Ö¥é¥ê¤Î¤«¤Ê¤ê
242 ½ÅÍפʥ»¥Ã¥È¤ò¤Õ¤¯¤ß¤Þ¤¹: É¸½à C ¥é¥¤¥Ö¥é¥ê¤Èɸ½à¿ôÃͥ饤¥Ö¥é¥ê¤Ç¤¹¡£
243 ¤³¤ÎÆó¤Ä¤Î¥é¥¤¥Ö¥é¥êÈ´¤­¤Ç¤Ï¡¢Linux ¥·¥¹¥Æ¥à¤Ïµ¡Ç½¤·¤Þ¤»¤ó¡£ glibc
244 ¥Ñ¥Ã¥±¡¼¥¸¤Ï¤Þ¤¿ÃÏ°è¸À¸ì (locale) ¥µ¥Ý¡¼¥È¤È¥¿¥¤¥à¥¾¡¼¥ó¥Ç¡¼¥¿¥Ù¡¼¥¹
245 ¥µ¥Ý¡¼¥È¤ò¤Õ¤¯¤ß¤Þ¤¹¡£
246
247 Can be used on: Linux kernel >= %{min_kernel}.
248
249 %description -l pl
250 W pakiecie znajduj± siê podstawowe biblioteki, u¿ywane przez ró¿ne
251 programy w Twoim systemie. U¿ywanie przez programy bibliotek z tego
252 pakietu oszczêdza miejsce na dysku i pamiêæ. Wiêkszo¶æ kodu
253 systemowego jest usytuowane w jednym miejscu i dzielone miêdzy wieloma
254 programami. Pakiet ten zawiera bardzo wa¿ny zbiór bibliotek
255 standardowych, wspó³dzielonych (dynamicznych) bibliotek C i
256 matematycznych. Bez glibc system Linux nie jest w stanie funkcjonowaæ.
257 Znajduj± siê tutaj równie¿ definicje ró¿nych informacji dla wielu
258 jêzyków (locale) oraz definicje stref czasowych.
259
260 Przeznaczony dla j±dra Linux >= %{min_kernel}.
261
262 %description -l ru
263 óÏÄÅÒÖÉÔ ÓÔÁÎÄÁÒÔÎÙÅ ÂÉÂÌÉÏÔÅËÉ, ÉÓÐÏÌØÚÕÅÍÙÅ ÍÎÏÇÏÞÉÓÌÅÎÎÙÍÉ
264 ÐÒÏÇÒÁÍÍÁÍÉ × ÓÉÓÔÅÍÅ. äÌÑ ÔÏÇÏ, ÞÔÏÂÙ ÓÏÈÒÁÎÉÔØ ÄÉÓËÏ×ÏÅ ÐÒÏÓÔÒÁÎÓÔ×Ï
265 É ÐÁÍÑÔØ, Á ÔÁËÖÅ ÄÌÑ ÐÒÏÓÔÏÔÙ ÏÂÎÏ×ÌÅÎÉÑ, ÓÉÓÔÅÍÎÙÊ ËÏÄ, ÏÂÝÉÊ ÄÌÑ
266 ×ÓÅÈ ÐÒÏÇÒÁÍÍ, ÈÒÁÎÉÔÓÑ × ÏÄÎÏÍ ÍÅÓÔÅ É ËÏÌÌÅËÔÉ×ÎÏ ÉÓÐÏÌØÚÕÅÔÓÑ ×ÓÅÍÉ
267 ÐÒÏÇÒÁÍÍÁÍÉ. üÔÏÔ ÐÁËÅÔ ÓÏÄÅÒÖÉÔ ÎÁÉÂÏÌÅÅ ×ÁÖÎÙÅ ÉÚ ÒÁÚÄÅÌÑÅÍÙÈ
268 ÂÉÂÌÉÏÔÅË - ÓÔÁÎÄÁÒÔÎÕÀ ÂÉÂÌÉÏÔÅËÕ C É ÓÔÁÎÄÁÒÔÎÕÀ ÂÉÂÌÉÏÔÅËÕ
269 ÍÁÔÅÍÁÔÉËÉ. âÅÚ ÜÔÉÈ ÂÉÂÌÉÏÔÅË Linux ÆÕÎËÃÉÏÎÉÒÏ×ÁÔØ ÎÅ ÂÕÄÅÔ. ôÁËÖÅ
270 ÐÁËÅÔ ÓÏÄÅÒÖÉÔ ÐÏÄÄÅÒÖËÕ ÎÁÃÉÏÎÁÌØÎÙÈ ÑÚÙËÏ× (locale) É ÂÁÚÙ ÄÁÎÎÙÈ
271 ×ÒÅÍÅÎÎÙÈ ÚÏΠ(timezone databases).
272
273 Can be used on: Linux kernel >= %{min_kernel}.
274
275 %description -l tr
276 Bu paket, birçok programýn kullandýðý standart kitaplýklarý içerir.
277 Disk alaný ve bellek kullanýmýný azaltmak ve ayný zamanda güncelleme
278 iþlemlerini kolaylaþtýrmak için ortak sistem kodlarý tek bir yerde
279 tutulup programlar arasýnda paylaþtýrýlýr. Bu paket en önemli ortak
280 kitaplýklarý, standart C kitaplýðýný ve standart matematik kitaplýðýný
281 içerir. Bu kitaplýklar olmadan Linux sistemi çalýþmayacaktýr. Yerel
282 dil desteði ve zaman dilimi veri tabaný da bu pakette yer alýr.
283
284 Can be used on: Linux kernel >= %{min_kernel}.
285
286 %description -l uk
287 í¦ÓÔÉÔØ ÓÔÁÎÄÁÒÔΦ Â¦Â̦ÏÔÅËÉ, ËÏÔÒ¦ ×ÉËÏÒÉÓÔÏ×ÕÀÔØÓÑ ÞÉÓÌÅÎÎÉÍÉ
288 ÐÒÏÇÒÁÍÁÍÉ × ÓÉÓÔÅͦ. äÌÑ ÔÏÇÏ, ÝÏ ÚÂÅÒÅÇÔÉ ÄÉÓËÏ×ÉÊ ÐÒÏÓÔ¦Ò ÔÁ
289 ÐÁÍ'ÑÔØ, Á ÔÁËÏÖ ÄÌÑ ÐÒÏÓÔÏÔÉ ÐÏÎÏ×ÌÅÎÎÑ ÓÉÓÔÅÍÉ, ÓÉÓÔÅÍÎÉÊ ËÏÄ,
290 ÓЦÌØÎÉÊ ÄÌÑ ×ӦȠÐÒÏÇÒÁÍ, ÚÂÅÒ¦ÇÁ¤ÔØÓÑ × ÏÄÎÏÍՠͦÓæ ¦ ËÏÌÅËÔÉ×ÎÏ
291 ×ÉËÏÒÉÓÔÏ×Õ¤ÔØÓÑ ×Ó¦ÍÁ ÐÒÏÇÒÁÍÁÍÉ. ãÅÊ ÐÁËÅԠͦÓÔÉÔØ ÎÁʦÌØÛ ×ÁÖÌÉצ
292 Ú ÄÉÎÁͦÞÎÉȠ¦Â̦ÏÔÅË - ÓÔÁÎÄÁÒÔÎՠ¦Â̦ÏÔÅËÕ ó ÔÁ ÓÔÁÎÄÁÒÔÎÕ
293 ¦Â̦ÏÔÅËÕ ÍÁÔÅÍÁÔÉËÉ. âÅÚ ÃÉȠ¦Â̦ÏÔÅË Linux ÆÕÎËæÏÎÕ×ÁÔÉ ÎÅ ÂÕÄÅ.
294 ôÁËÏÖ ÐÁËÅԠͦÓÔÉÔؠЦÄÔÒÉÍËÕ ÎÁæÏÎÁÌØÎÉÈ ÍÏ× (locale) ÔÁ ÂÁÚÉ ÄÁÎÎÉÈ
295 ÞÁÓÏ×ÉÈ ÚÏΠ(timezone databases).
296
297 Can be used on: Linux kernel >= %{min_kernel}.
298
299 %package misc
300 Summary:        Utilities and data used by glibc
301 Summary(pl):    Narzêdzia i dane u¿ywane przez glibc
302 Group:          Development/Libraries
303 AutoReq:        false
304 PreReq:         %{name} = %{epoch}:%{version}-%{release}
305
306 %description misc
307 Utilities and data used by glibc.
308
309 %description misc -l pl
310 Narzêdzia i dane u¿ywane przez glibc.
311
312 %package devel
313 Summary:        Additional libraries required to compile
314 Summary(de):    Weitere Libraries zum Kompilieren
315 Summary(es):    Bibliotecas adicionales necesarias para la compilación
316 Summary(fr):    Librairies supplémentaires nécessaires à la compilation
317 Summary(ja):    É¸½à C ¥é¥¤¥Ö¥é¥ê¤Ç»È¤ï¤ì¤ë¥Ø¥Ã¥À¡¼¤È¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë
318 Summary(pl):    Dodatkowe biblioteki wymagane podczas kompilacji
319 Summary(ru):    äÏÐÏÌÎÉÔÅÌØÎÙÅ ÂÉÂÌÉÏÔÅËÉ, ÎÅÏÂÈÏÄÉÍÙÅ ÄÌÑ ËÏÍÐÉÌÑÃÉÉ
320 Summary(tr):    Geliþtirme için gerekli diðer kitaplýklar
321 Summary(uk):    äÏÄÁÔËÏצ Â¦Â̦ÏÔÅËÉ, ÐÏÔÒ¦ÂΦ ÄÌÑ ËÏÍЦÌÑæ§
322 Group:          Development/Libraries
323 Requires:       %{name} = %{epoch}:%{version}-%{release}
324 %{!?with_kernelheaders:Requires:        linux-libc-headers >= %{llh_version}}
325 Obsoletes:      libiconv-devel
326 Obsoletes:      glibc-headers
327
328 %description devel
329 To develop programs which use the standard C libraries (which nearly
330 all programs do), the system needs to have these standard header files
331 and object files available for creating the executables.
332
333 %description devel -l de
334 Bei der Entwicklung von Programmen, die die Standard-C-Libraries
335 verwenden (also fast alle), benötigt das System diese Standard-Header-
336 und Objektdateien zum Erstellen der ausführbaren Programme.
337
338 %description devel -l es
339 Para desarrollar programas que utilizan las bibliotecas C estándar (lo
340 cual hacen prácticamente todos los programas), el sistema necesita
341 disponer de estos ficheros de cabecera y de objetos para crear los
342 ejecutables.
343
344 %description devel -l fr
345 Pour développer des programmes utilisant les bibliothèques standard du
346 C (ce que presque tous les programmes font), le système doit posséder
347 ces fichiers en-têtes et objets standards pour créer les exécutables.
348
349 %description devel -l ja
350 glibc-devel ¥Ñ¥Ã¥±¡¼¥¸¤Ï(¤Û¤È¤ó¤É¤¹¤Ù¤Æ¤Î¥×¥í¥°¥é¥à¤Ç»È¤ï¤ì¤ë)ɸ½à C
351 ¥é¥¤¥Ö¥é¥ê¤ò»ÈÍѤ·¤¿¥×¥í¥°¥é¥à¤ò³«È¯¤¹¤ë¤¿¤á¤Î¥Ø¥Ã¥À¡¼¤È¥ª¥Ö¥¸¥§¥¯¥È
352 ¥Õ¥¡¥¤¥ë¤ò´Þ¤ß¤Þ¤¹¡£¤â¤·É¸½à C
353 ¥é¥¤¥Ö¥é¥ê¤ò»ÈÍѤ¹¤ë¥×¥í¥°¥é¥à¤ò³«È¯¤¹¤ë¤Ê¤é
354 ¼Â¹Ô¥Õ¥¡¥¤¥ë¤òºîÀ®¤¹¤ëÌÜŪ¤Ç¤³¤ì¤é¤Îɸ½à¥Ø¥Ã¥À¤È¥ª¥Ö¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë
355 ¤¬»ÈÍѤǤ­¤Þ¤¹¡£
356
357 %description devel -l pl
358 Pakiet ten jest niezbêdny przy tworzeniu w³asnych programów
359 korzystaj±cych ze standardowej biblioteki C. Znajduj± siê tutaj pliki
360 nag³ówkowe oraz pliki obiektowe, niezbêdne do kompilacji programów
361 wykonywalnych i innych bibliotek.
362
363 %description devel -l ru
364 äÌÑ ÒÁÚÒÁÂÏÔËÉ ÐÒÏÇÒÁÍÍ, ÉÓÐÏÌØÚÕÀÝÉÈ ÓÔÁÎÄÁÒÔÎÙÅ ÂÉÂÌÉÏÔÅËÉ C (Á
365 ÐÒÁËÔÉÞÅÓËÉ ×ÓÅ ÐÒÏÇÒÁÍÍÙ ÉÈ ÉÓÐÏÌØÚÕÀÔ), ÓÉÓÔÅÍÅ îåïâèïäéíù ÈÅÄÅÒÙ É
366 ÏÂßÅËÔÎÙÅ ÆÁÊÌÙ, ÓÏÄÅÒÖÁÝÉÅÓÑ × ÜÔÏÍ ÐÁËÅÔÅ, ÞÔÏÂÙ ÓÏÚÄÁ×ÁÔØ
367 ÉÓÐÏÌÎÑÅÍÙÅ ÆÁÊÌÙ.
368
369 %description devel -l tr
370 C kitaplýðýný kullanan (ki hemen hemen hepsi kullanýyor) programlar
371 geliþtirmek için gereken standart baþlýk dosyalarý ve statik
372 kitaplýklar.
373
374 %description devel -l uk
375 äÌÑ ÒÏÚÒÏÂËÉ ÐÒÏÇÒÁÍ, ÝÏ ×ÉËÏÒÉÓÔÏ×ÕÀÔØ ÓÔÁÎÄÁÒÔΦ Â¦Â̦ÏÔÅËÉ C
376 (ÐÒÁËÔÉÞÎÏ ×Ó¦ ÐÒÏÇÒÁÍÉ §È ×ÉËÏÒÉÓÔÏ×ÕÀÔØ), ÓÉÓÔÅͦ îåïâè¶äÈÅÄÅÒÉ
377 ÔÁ ÏÂ'¤ËÔΦ ÆÁÊÌÉ, ÝϠͦÓÔÑÔØÓÑ × ÃØÏÍÕ ÐÁËÅÔ¦, ÃÏ ÓÔ×ÏÒÀ×ÁÔÉ
378 ×ÉËÏÎÕ×ÁΦ ÆÁÊÌÉ.
379
380 %package -n nscd
381 Summary:        Name Service Caching Daemon
382 Summary(es):    Demonio de caché del servicio de nombres
383 Summary(ja):    ¥Í¡¼¥à¥µ¡¼¥Ó¥¹¥­¥ã¥Ã¥·¥ó¥°¥Ç¡¼¥â¥ó (nacd)
384 Summary(pl):    Demon zapamiêtuj±cy odpowiedzi serwisów nazw
385 Summary(ru):    ëÜÛÉÒÕÀÝÉÊ ÄÅÍÏΠÓÅÒ×ÉÓÏ× ÉÍÅÎ
386 Summary(uk):    ëÅÛÕÀÞÉÊ ÄÅÍÏΠÓÅצӦנ¦ÍÅÎ
387 Group:          Networking/Daemons
388 PreReq:         rc-scripts >= 0.2.0
389 Requires(pre):  /bin/id
390 Requires(pre):  /usr/bin/getgid
391 Requires(pre):  /usr/sbin/groupadd
392 Requires(pre):  /usr/sbin/useradd
393 Requires(post,preun):   /sbin/chkconfig
394 Requires(post): fileutils
395 Requires(postun):       /usr/sbin/groupdel
396 Requires(postun):       /usr/sbin/userdel
397 Requires:       %{name} = %{epoch}:%{version}-%{release}
398 %{?with_selinux:Requires:       libselinux >= 1.18}
399 Provides:       group(nscd)
400 Provides:       user(nscd)
401
402 %description -n nscd
403 nscd caches name service lookups; it can dramatically improve
404 performance with NIS+, and may help with DNS as well.
405
406 %description -n nscd -l es
407 nscd guarda las peticiones del servicio de nombres en una caché; eso
408 puede aumentar drásticamente las prestaciones de NIS+, y también puede
409 ayudar con DNS.
410
411 %description -n nscd -l ja
412 Nscd ¤Ï¥Í¡¼¥à¥µ¡¼¥Ó¥¹»²¾È¤ò¥­¥ã¥Ã¥·¥å¤·¡¢NIS+ ¤Î¥Ñ¥Õ¥©¡¼¥Þ¥ó¥¹¤ò
413 ¥É¥é¥Þ¥Æ¥£¥Ã¥¯¤Ë²þÁ±¤¹¤ë¤³¤È¤¬¤Ç¤­¡¢DNS ¤òƱÍͤËÊä½õ¤·¤Þ¤¹¡£
414
415 %description -n nscd -l pl
416 nscd zapamiêtuje zapytania i odpowiedzi NIS oraz DNS. Pozwala
417 drastycznie poprawiæ szybko¶æ dzia³ania NIS+.
418
419 %description -n nscd -l ru
420 nscd ËÜÛÉÒÕÅÔ ÒÅÚÕÌØÔÁÔÙ ÚÁÐÒÏÓÏ× Ë ÓÅÒ×ÉÓÁÍ ÉÍÅÎ; ÜÔÏ ÍÏÖÅÔ ÒÅÚËÏ
421 Õ×ÅÌÉÞÉÔØ ÐÒÏÉÚ×ÏÄÉÔÅÌØÎÏÓÔØ ÒÁÂÏÔÙ Ó NIS+ É, ÔÁËÖÅ, ÍÏÖÅÔ ÐÏÍÏÞØ Ó
422 DNS.
423
424 %description -n nscd -l uk
425 nscd ËÅÛÕ¤ ÒÅÚÕÌØÔÁÔÉ ÚÁÐÒÏӦנÄÏ ÓÅÒצӦנ¦ÍÅÎ; ÃÅ ÍÏÖÅ ÓÉÌØÎÏ
426 Ú¦ÌØÛÉÔÉ Û×ÉÄ˦ÓÔØ ÒÏÂÏÔÉ Ú NIS+ ¦, ÔÁËÏÖ, ÍÏÖÅ ÄÏÐÏÍÏÇÔÉ Ú DNS.
427
428 %package -n localedb-src
429 Summary:        locale database source code
430 Summary(es):    Código fuente de la base de datos de los locales
431 Summary(pl):    Kod ¼ród³owy bazy locale
432 Group:          Daemons
433 Requires:       %{name} = %{epoch}:%{version}-%{release}
434 Requires:       gzip
435 Requires:       sed
436
437 %description -n localedb-src
438 This add-on package contains the data needed to build the locale data
439 files to use the internationalization features of the GNU libc.
440
441 %description -n localedb-src -l es
442 Este paquete adicional contiene los datos necesarios para construir
443 los ficheros de locale, imprescindibles para usar las cualidades de
444 internacionalización de GNU libc.
445
446 %description -n localedb-src -l pl
447 Pakiet ten zawiera dane niezbêdne do zbudowania binarnych plików
448 lokalizacyjnych, by móc wykorzystaæ mo¿liwo¶ci oferowane przez GNU
449 libc.
450
451 %package localedb-all
452 Summary:        locale database for all locales supported by glibc
453 Summary(es):    Base de datos de todos los locales soportados por glibc
454 Summary(pl):    Baza danych locale dla wszystkich lokalizacji obs³ugiwanych przez glibc
455 Group:          Libraries
456 Requires:       iconv = %{epoch}:%{version}-%{release}
457 Requires:       %{name} = %{epoch}:%{version}-%{release}
458
459 %description localedb-all
460 This package contains locale database for all locales supported by
461 glibc. In glibc 2.3.x it's one large file (about 39MB) - if you want
462 something smaller with support for chosen locales only, consider
463 installing localedb-src and regenerating database using localedb-gen
464 script (when database is generated, localedb-src can be uninstalled).
465
466 %description localedb-all -l es
467 Este paquete contiene una base de datos de todos los locales
468 soportados por glibc. En glibc 2.3.x ése es un fichero grande (aprox.
469 39 MB) -- si prefiere algo más pequeño, sólo con soporte de unos
470 locales elegidos, considérese instalar localedb-src y regenerar la
471 base de datos usando el escript localedb-gen (una vez que la base de
472 datos esté creada, localedb-src se podrá desinstalar).
473
474 %description localedb-all -l pl
475 Ten pakiet zawiera bazê danych locale dla wszystkich lokalizacji
476 obs³ugiwanych przez glibc. W glibc 2.3.x jest to jeden du¿y plik
477 (oko³o 39MB); aby mieæ co¶ mniejszego, z obs³ug± tylko wybranych
478 lokalizacji, nale¿y zainstalowaæ pakiet localedb-src i przegenerowaæ
479 bazê danych przy u¿yciu skryptu localedb-gen (po wygenerowaniu bazy
480 pakiet localedb-src mo¿na odinstalowaæ).
481
482 %package -n iconv
483 Summary:        Convert encoding of given files from one encoding to another
484 Summary(es):    Convierte entre varias codificaciones de los ficheros dados
485 Summary(pl):    Program do konwersji plików tekstowych z jednego kodowania do innego
486 Group:          Applications/Text
487 Requires:       %{name} = %{epoch}:%{version}-%{release}
488
489 %description -n iconv
490 Convert encoding of given files from one encoding to another. You need
491 this package if you want to convert some document from one encoding to
492 another or if you have installed some programs which use Generic
493 Character Set Conversion Interface.
494
495 %description -n iconv -l es
496 Convierte la codificación de dados ficheros. Necesita este paquete si
497 quiere convertir un documento entre una codificación (juego de
498 caracteres) y otra, o si tiene instalado algún programa que usa el
499 Generic Character Set Conversion Interface (interfaz genérica de
500 conversión de juegos de caracteres).
501
502 %description -n iconv -l pl
503 Program do konwersji plików tekstowych z jednego kodowania do innego.
504 Musisz mieæ zainstalowany ten pakiet je¿eli wykonujesz konwersjê
505 dokumentów z jednego kodowania do innego lub je¿eli masz zainstalowane
506 jakie¶ programy, które korzystaj± z Generic Character Set Conversion
507 Interface w glibc, czyli z zestawu funkcji z tej biblioteki, które
508 umo¿liwiaj± konwersjê kodowania danych z poziomu dowolnego programu.
509
510 %package static
511 Summary:        Static libraries
512 Summary(es):    Bibliotecas estáticas
513 Summary(pl):    Biblioteki statyczne
514 Summary(ru):    óÔÁÔÉÞÅÓËÉÅ ÂÉÂÌÉÏÔÅËÉ glibc
515 Summary(uk):    óÔÁÔÉÞΦ Â¦Â̦ÏÔÅËÉ glibc
516 Group:          Development/Libraries
517 Requires:       %{name}-devel = %{epoch}:%{version}-%{release}
518 Obsoletes:      libiconv-static
519
520 %description static
521 GNU libc static libraries.
522
523 %description static -l es
524 Bibliotecas estáticas de GNU libc.
525
526 %description static -l pl
527 Biblioteki statyczne GNU libc.
528
529 %description static -l ru
530 üÔÏ ÏÔÄÅÌØÎÙÊ ÐÁËÅÔ ÓÏ ÓÔÁÔÉÞÅÓËÉÍÉ ÂÉÂÌÉÏÔÅËÁÍÉ, ËÏÔÏÒÙÅ ÂÏÌØÛÅ ÎÅ
531 ×ÈÏÄÑÔ × glibc-devel.
532
533 %description static -l uk
534 ãÅ ÏËÒÅÍÉÊ ÐÁËÅÔ Ú¦ ÓÔÁÔÉÞÎÉÍɠ¦Â̦ÏÔÅËÁÍÉ, ÝϠ¦ÌØÛÅ ÎÅ ×ÈÏÄÑÔØ ×
535 ÓËÌÁÄ glibc-devel.
536
537 %package profile
538 Summary:        glibc with profiling support
539 Summary(de):    glibc mit Profil-Unterstützung
540 Summary(es):    glibc con soporte de perfilamiento
541 Summary(fr):    glibc avec support pour profiling
542 Summary(pl):    glibc ze wsparciem dla profilowania
543 Summary(ru):    GNU libc Ó ÐÏÄÄÅÒÖËÏÊ ÐÒÏÆÁÊÌÅÒÁ
544 Summary(tr):    Ölçüm desteði olan glibc
545 Summary(uk):    GNU libc Ú Ð¦ÄÔÒÉÍËÏÀ ÐÒÏÆÁÊÌÅÒÁ
546 Group:          Development/Libraries/Libc
547 Requires:       %{name}-devel = %{epoch}:%{version}-%{release}
548 Obsoletes:      libc-profile
549
550 %description profile
551 When programs are being profiled using gprof, they must use these
552 libraries instead of the standard C libraries for gprof to be able to
553 profile them correctly.
554
555 %description profile -l de
556 Damit Programmprofile mit gprof richtig erstellt werden, müssen diese
557 Libraries anstelle der üblichen C-Libraries verwendet werden.
558
559 %description profile -l es
560 Cuando programas son perfilidas usando gprof, tienen que usar estas
561 biblioteces en vez de las estándares para que gprof pueda perfilarlas
562 correctamente.
563
564 %description profile -l pl
565 Programy profilowane za pomoc± gprof musz± u¿ywaæ tych bibliotek
566 zamiast standardowych bibliotek C, aby gprof móg³ odpowiednio je
567 wyprofilowaæ.
568
569 %description profile -l uk
570 ëÏÌÉ ÐÒÏÇÒÁÍÉ ÄÏÓ̦ÄÖÕÀÔØÓÑ ÐÒÏÆÁÊÌÅÒÏÍ gprof, ×ÏÎÉ ÐÏ×ÉÎΦ
571 ×ÉËÏÒÉÓÔÏ×Õ×ÁÔÉ ÚÁͦÓÔØ ÓÔÁÎÄÁÒÔÎÉȠ¦Â̦ÏÔÅˠ¦Â̦ÏÔÅËÉ, ÝϠͦÓÔÑÔØÓÑ
572 × ÃØÏÍÕ ÐÁËÅÔ¦. ðÒÉ ×ÉËÏÒÉÓÔÁÎΦ ÓÔÁÎÄÁÒÔÎÉȠ¦Â̦ÏÔÅË gprof ÚÁͦÓÔØ
573 ÒÅÁÌØÎÉÈ ÒÅÚÕÌØÔÁԦנÂÕÄÅ ÐÏËÁÚÕ×ÁÔɠæÎÉ ÎÁ ÐÁÐÁÊÀ × çÏÎÏÌÕÌÕ ×
574 ÐÏÚÁÍÉÎÕÌÏÍÕ ÒÏæ...
575
576 %description profile -l tr
577 gprof kullanýlarak ölçülen programlar standart C kitaplýðý yerine bu
578 kitaplýðý kullanmak zorundadýrlar.
579
580 %description profile -l ru
581 ëÏÇÄÁ ÐÒÏÇÒÁÍÍÙ ÉÓÓÌÅÄÕÀÔÓÑ ÐÒÏÆÁÊÌÅÒÏÍ gprof, ÏÎÉ ÄÏÌÖÎÙ
582 ÉÓÐÏÌØÚÏ×ÁÔØ, ×ÍÅÓÔÏ ÓÔÁÎÄÁÒÔÎÙÈ ÂÉÂÌÉÏÔÅË, ÂÉÂÌÉÏÔÅËÉ, ×ËÌÀÞÅÎÎÙÅ ×
583 ÜÔÏÔ ÐÁËÅÔ. ðÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ ÓÔÁÎÄÁÒÔÎÙÈ ÂÉÂÌÉÏÔÅË gprof ×ÍÅÓÔÏ
584 ÒÅÁÌØÎÙÈ ÒÅÚÕÌØÔÁÔÏ× ÂÕÄÅÔ ÐÏËÁÚÙ×ÁÔØ ÃÅÎÙ ÎÁ ÐÁÐÁÊÀ × çÏÎÏÌÕÌÕ ×
585 ÐÏÚÁÐÒÏÛÌÏÍ ÇÏÄÕ...
586
587 %package pic
588 Summary:        glibc PIC archive
589 Summary(es):    Archivo PIC de glibc
590 Summary(pl):    Archiwum PIC glibc
591 Group:          Development/Libraries/Libc
592 Requires:       %{name}-devel = %{epoch}:%{version}-%{release}
593
594 %description pic
595 GNU C Library PIC archive contains an archive library (ar file)
596 composed of individual shared objects. This is used for creating a
597 library which is a smaller subset of the standard libc shared library.
598
599 %description pic -l es
600 El archivo PIC de la biblioteca glibc contiene una biblioteca
601 archivada (un fichero ar) compuesta de individuales objetos
602 compartidos. Es usado para crear una biblioteca que sea un subconjunto
603 más pequeño de la biblioteca libc compartida estándar.
604
605 %description pic -l pl
606 Archiwum PIC biblioteki GNU C zawiera archiwaln± bibliotekê (plik ar)
607 z³o¿on± z pojedynczych obiektów wspó³dzielonych. U¿ywana jest do
608 tworzenia biblioteki bêd±cej mniejszym podzestawem standardowej
609 biblioteki wspó³dzielonej libc.
610
611 %package -n nss_compat
612 Summary:        Old style NYS NSS glibc module
613 Summary(es):    El antiguo módulo NYS NSS de glibc
614 Summary(pl):    Stary modu³ NYS NSS glibc
615 Group:          Base
616 Requires:       %{name} = %{epoch}:%{version}-%{release}
617
618 %description -n nss_compat
619 Old style NYS NSS glibc module.
620
621 %description -n nss_compat -l es
622 El antiguo módulo NYS NSS de glibc
623
624 %description -n nss_compat -l pl
625 Stary modu³ NYS NSS glibc.
626
627 %package -n nss_dns
628 Summary:        BIND NSS glibc module
629 Summary(es):    Módulo BIND NSS de glibc
630 Summary(pl):    Modu³ BIND NSS glibc
631 Group:          Base
632 Requires:       %{name} = %{epoch}:%{version}-%{release}
633
634 %description -n nss_dns
635 BIND NSS glibc module.
636
637 %description -n nss_dns -l es
638 Módulo BIND NSS de glibc.
639
640 %description -n nss_dns -l pl
641 Modu³ BIND NSS glibc.
642
643 %package -n nss_files
644 Summary:        Traditional files databases NSS glibc module
645 Summary(es):    Módulo de tradicionales bases de datos en ficheros para glibc
646 Summary(pl):    Modu³ tradycyjnych plikowych baz danych NSS glibc
647 Group:          Base
648 Requires:       %{name} = %{epoch}:%{version}-%{release}
649
650 %description -n nss_files
651 Traditional files databases NSS glibc module.
652
653 %description -n nss_files -l es
654 Módulo de tradicionales bases de datos en ficheros para glibc.
655
656 %description -n nss_files -l pl
657 Modu³ tradycyjnych plikowych baz danych NSS glibc.
658
659 %package -n nss_hesiod
660 Summary:        hesiod NSS glibc module
661 Summary(es):    Módulo hesiod NSS de glibc
662 Summary(pl):    Modu³ hesiod NSS glibc
663 Group:          Base
664 Requires:       %{name} = %{epoch}:%{version}-%{release}
665
666 %description -n nss_hesiod
667 glibc NSS (Name Service Switch) module for databases access.
668
669 %description -n nss_hesiod -l es
670 Módulo hesiod NSS de glibc.
671
672 %description -n nss_hesiod -l pl
673 Modu³ glibc NSS (Name Service Switch) dostêpu do baz danych.
674
675 %package -n nss_nis
676 Summary:        NIS(YP) NSS glibc module
677 Summary(es):    Módulo NIS(YP) NSS de glibc
678 Summary(pl):    Modu³ NIS(YP) NSS glibc
679 Group:          Base
680 Requires:       %{name} = %{epoch}:%{version}-%{release}
681
682 %description -n nss_nis
683 glibc NSS (Name Service Switch) module for NIS(YP) databases access.
684
685 %description -n nss_nis -l es
686 Módulo NSS de glibc para acceder las bases de datos NIS(YP).
687
688 %description -n nss_nis -l pl
689 Modu³ glibc NSS (Name Service Switch) dostêpu do baz danych NIS(YP).
690
691 %package -n nss_nisplus
692 Summary:        NIS+ NSS module
693 Summary(es):    Módulo NIS+ NSS
694 Summary(pl):    Modu³ NIS+ NSS
695 Group:          Base
696 Requires:       %{name} = %{epoch}:%{version}-%{release}
697
698 %description -n nss_nisplus
699 glibc NSS (Name Service Switch) module for NIS+ databases access.
700
701 %description -n nss_nisplus -l es
702 Módulo NSS (Name Service Switch) de glibc para acceder las bases de
703 datos NIS+.
704
705 %description -n nss_nisplus -l pl
706 Modu³ glibc NSS (Name Service Switch) dostêpu do baz danych NIS+.
707
708 %package memusage
709 Summary:        A toy
710 Summary(es):    Un juguete
711 Summary(pl):    Zabawka
712 Group:          Applications
713 Requires:       %{name} = %{epoch}:%{version}-%{release}
714 Requires:       gd
715
716 %description memusage
717 A toy.
718
719 %description memusage -l es
720 Un juguete.
721
722 %description memusage -l pl
723 Zabawka.
724
725 %package zoneinfo_right
726 Summary:        Non-POSIX (real) time zones
727 Summary(es):    Zonas de tiempo reales (no de POSIX)
728 Summary(pl):    Nie-POSIX-owe (prawdziwe) strefy czasowe
729 Group:          Libraries
730 Requires:       %{name} = %{epoch}:%{version}-%{release}
731
732 %description zoneinfo_right
733 You don't want this. Details at:
734 http://sources.redhat.com/ml/libc-alpha/2000-12/msg00068.html
735
736 %description zoneinfo_right -l es
737 No lo necesita. Encontrará los detalles en:
738 http://sources.redhat.com/ml/libc-alpha/2000-12/msg00068.html
739
740 %description zoneinfo_right -l pl
741 Nie potrzebujesz tego. Szczegó³y pod:
742 http://sources.redhat.com/ml/libc-alpha/2000-12/msg00068.html
743
744 %package -n %{name}64
745 Summary:        GNU libc - 64-bit libraries
746 Summary(es):    GNU libc - bibliotecas de 64 bits
747 Summary(pl):    GNU libc - biblioteki 64-bitowe
748 Group:          Libraries
749 %ifarch amd64 ppc64 s390x sparc64
750 Provides:       glibc = %{epoch}:%{version}-%{release}
751 Requires:       glibc-misc = %{epoch}:%{version}-%{release}
752 %else
753 Requires:       %{name} = %{epoch}:%{version}-%{release}
754 %endif
755
756 %description -n %{name}64
757 64-bit GNU libc libraries for 64bit architecture.
758
759 %description -n %{name}64 -l es
760 Bibliotecas GNU libc de 64 bits para la arquitectura 64bit.
761
762 %description -n %{name}64 -l pl
763 Biblioteki 64-bitowe GNU libc dla architektury 64bit.
764
765 %package -n %{name}64-devel
766 Summary:        Development files for 64-bit GNU libc libraries
767 Summary(es):    Ficheros de desarrollo para bibliotecas GNU libc de 64 bits
768 Summary(pl):    Pliki do programowania z u¿yciem 64-bitowych bibliotek GNU libc
769 Group:          Development/Libraries
770 Requires:       %{name}-devel = %{epoch}:%{version}-%{release}
771
772 %description -n %{name}64-devel
773 Development files for 64-bit GNU libc libraries for 64bit
774 architecture.
775
776 %description -n %{name}64-devel -l es
777 Ficheros de desarrollo para las bibliotecas GNU libc de 64 bits para
778 la arquitectura 64bit.
779
780 %description -n %{name}64-devel -l pl
781 Pliki do programowania z u¿yciem 64-bitowych bibliotek GNU libc dla
782 architektury 64bit.
783
784 %package -n %{name}64-static
785 Summary:        Static 64-bit GNU libc libraries
786 Summary(es):    Bibliotecas estáticas GNU libc de 64 bits
787 Summary(pl):    Statyczne 64-bitowe biblioteki GNU libc
788 Group:          Development/Libraries
789 Requires:       %{name}64-devel = %{epoch}:%{version}-%{release}
790
791 %description -n %{name}64-static
792 Static 64-bit GNU libc libraries.
793
794 %description -n %{name}64-static -l es
795 Bibliotecas estáticas GNU libc de 64 bits.
796
797 %description -n %{name}64-static -l pl
798 Statyczne 64-bitowe biblioteki GNU libc.
799
800 %prep
801 %setup -q -a1
802 %patch0 -p1
803 %patch1 -p1
804 %patch2 -p1
805 %patch3 -p1
806 %patch4 -p1
807 %patch5 -p1
808 %patch6 -p1
809 %patch7 -p1
810 %patch8 -p1
811 %patch9 -p1
812 %patch10 -p1
813 # don't know, if it is good idea, for brave ones
814 #%patch11 -p1
815 %{!?with_kernelheaders:%patch12 -p1}
816 %patch13 -p1
817 %patch14 -p0
818 %patch15 -p1
819 %patch16 -p1
820 %patch17 -p1
821 %patch18 -p1
822 %patch19 -p1
823 %patch20 -p1
824 %patch21 -p1
825 %patch22 -p1
826 %patch23 -p1
827 %patch24 -p1
828 %patch25 -p1
829 %patch26 -p1
830 %patch27 -p1
831 %patch28 -p1
832 %{?with_cross:%patch29 -p1}
833
834 chmod +x scripts/cpp
835
836 # i786 (aka pentium4) hack
837 cd nptl/sysdeps/i386 && ln -s i686 i786 && cd -
838 cd nptl/sysdeps/unix/sysv/linux/i386 && ln -s i686 i786 && cd -
839
840 %build
841 # Build glibc
842 cp -f /usr/share/automake/config.sub scripts
843 %{__aclocal}
844 %{__autoconf}
845 rm -rf builddir
846 install -d builddir
847 cd builddir
848 %ifarch sparc64
849 CC="%{__cc} -m64 -mcpu=ultrasparc -mvis -fcall-used-g6"
850 %endif
851 %if %{with linuxthreads}
852 ../%configure \
853         --enable-kernel="%{min_kernel}" \
854         --%{?with_omitfp:en}%{!?with_omitfp:dis}able-omitfp \
855         --with%{!?with___thread:out}-__thread \
856         --with-headers=%{sysheaders} \
857         --with%{!?with_selinux:out}-selinux \
858         --with%{!?with_tls:out}-tls \
859         --enable-add-ons=linuxthreads \
860         --enable-profile
861 %{__make}
862 %endif
863 %if %{with nptl}
864 %if %{with dual}
865 cd ..
866 rm -rf builddir-nptl
867 install -d builddir-nptl
868 cd builddir-nptl
869 %endif
870 ../%configure \
871         --enable-kernel="%{nptl_min_kernel}" \
872         --%{?with_omitfp:en}%{!?with_omitfp:dis}able-omitfp \
873         --with-headers=%{sysheaders} \
874         --with%{!?with_selinux:out}-selinux \
875         --with-tls \
876         --enable-add-ons=nptl \
877         --enable-profile
878 # simulate cross-compiling so we can perform dual builds on 2.4.x kernel
879 %{__make} \
880         %{?with_dual:cross-compiling=yes}
881 %endif
882 cd ..
883
884 %if %{with linuxthreads}
885 %{__make} -C linuxthreads/man
886 %endif
887
888 %if %{with tests}
889 for d in builddir %{?with_tests_nptl:builddir-nptl} ; do
890 cd $d
891 env LANGUAGE=C LC_ALL=C \
892 %{__make} tests 2>&1 | awk '
893 BEGIN { file = "" }
894 {
895         if (($0 ~ /\*\*\* \[.*\.out\] Error/) && ($0 !~ /annexc/) && (file == "")) {
896                 file=$0;
897                 gsub(/.*\[/, NIL, file);
898                 gsub(/\].*/, NIL, file);
899         }
900         print $0;
901 }
902 END { if (file != "") { print "ERROR OUTPUT FROM " file; system("cat " file); exit(1); } }'
903 cd ..
904 done
905 %endif
906
907 %install
908 rm -rf $RPM_BUILD_ROOT
909 install -d $RPM_BUILD_ROOT{/etc/{logrotate.d,rc.d/init.d,sysconfig},%{_mandir}/man{3,8},/var/log,/var/{lib,run}/nscd}
910
911 cd builddir
912 env LANGUAGE=C LC_ALL=C \
913 %{__make} install \
914         install_root=$RPM_BUILD_ROOT \
915         infodir=%{_infodir} \
916         mandir=%{_mandir}
917
918 %if %{with localedb}
919 env LANGUAGE=C LC_ALL=C \
920 %{__make} localedata/install-locales \
921         install_root=$RPM_BUILD_ROOT
922 %endif
923
924 PICFILES="libc_pic.a libc.map
925         math/libm_pic.a libm.map
926         resolv/libresolv_pic.a"
927
928 install $PICFILES                               $RPM_BUILD_ROOT%{_libdir}
929 install elf/soinit.os                           $RPM_BUILD_ROOT%{_libdir}/soinit.o
930 install elf/sofini.os                           $RPM_BUILD_ROOT%{_libdir}/sofini.o
931
932 install elf/postshell                           $RPM_BUILD_ROOT/sbin
933 cd ..
934
935 %if %{with dual}
936 env LANGUAGE=C LC_ALL=C \
937 %{__make} -C builddir-nptl install \
938         cross-compiling=yes \
939         install_root=$RPM_BUILD_ROOT/nptl
940
941 install -d $RPM_BUILD_ROOT{/%{_lib}/tls,%{_libdir}/nptl,%{_includedir}/nptl}
942 for f in libc libm libpthread libthread_db librt; do
943         mv -f $RPM_BUILD_ROOT/nptl/%{_lib}/${f}[-.]* $RPM_BUILD_ROOT/%{_lib}/tls
944 done
945 $RPM_BUILD_ROOT/sbin/ldconfig -n $RPM_BUILD_ROOT/%{_lib}/tls
946
947 for f in libc.so libpthread.so ; do
948         cat $RPM_BUILD_ROOT/nptl%{_libdir}/$f | sed \
949                 -e "s|/libc.so.6|/tls/libc.so.6|g" \
950                 -e "s|/libpthread.so.0|/tls/libpthread.so.0|g" \
951                 -e "s|/libpthread_nonshared.a|/nptl/libpthread_nonshared.a|g" \
952                 > $RPM_BUILD_ROOT%{_libdir}/nptl/$f
953 done
954 for f in libc.a libpthread.a libpthread_nonshared.a; do
955         mv -f $RPM_BUILD_ROOT/nptl%{_libdir}/$f $RPM_BUILD_ROOT%{_libdir}/nptl
956 done
957 cd $RPM_BUILD_ROOT/nptl%{_prefix}/include
958         for f in `find . -type f`; do
959                 if ! [ -f $RPM_BUILD_ROOT%{_prefix}/include/$f ] \
960                    || ! cmp -s $f $RPM_BUILD_ROOT%{_prefix}/include/$f ; then
961                         install -d $RPM_BUILD_ROOT%{_prefix}/include/nptl/`dirname $f`
962                         cp -a $f $RPM_BUILD_ROOT%{_prefix}/include/nptl/$f
963                 fi
964         done
965 cd -
966 rm -rf $RPM_BUILD_ROOT/nptl
967 %endif
968
969 %{?with_memusage:mv -f $RPM_BUILD_ROOT/%{_lib}/libmemusage.so   $RPM_BUILD_ROOT%{_libdir}}
970 mv -f $RPM_BUILD_ROOT/%{_lib}/libpcprofile.so   $RPM_BUILD_ROOT%{_libdir}
971
972 %if %{with linuxthreads}
973 install linuxthreads/man/*.3thr         $RPM_BUILD_ROOT%{_mandir}/man3
974 %endif
975
976 rm -rf $RPM_BUILD_ROOT%{_datadir}/zoneinfo/{localtime,posixtime,posixrules,posix/*}
977
978 #cd $RPM_BUILD_ROOT%{_datadir}/zoneinfo
979 #for i in [A-Z]*; do
980 #       ln -s ../$i posix
981 #done
982 #cd -
983
984 ln -sf %{_sysconfdir}/localtime $RPM_BUILD_ROOT%{_datadir}/zoneinfo/localtime
985 ln -sf localtime                $RPM_BUILD_ROOT%{_datadir}/zoneinfo/posixtime
986 ln -sf localtime                $RPM_BUILD_ROOT%{_datadir}/zoneinfo/posixrules
987 ln -sf libbsd-compat.a          $RPM_BUILD_ROOT%{_libdir}/libbsd.a
988
989 rm -f $RPM_BUILD_ROOT%{_sysconfdir}/localtime
990
991 # make symlinks across top-level directories absolute
992 for l in anl BrokenLocale crypt dl m nsl resolv rt thread_db util ; do
993         rm -f $RPM_BUILD_ROOT%{_libdir}/lib${l}.so
994         ln -sf /%{_lib}/`cd $RPM_BUILD_ROOT/%{_lib} ; echo lib${l}.so.*` $RPM_BUILD_ROOT%{_libdir}/lib${l}.so
995 done
996
997 install %{SOURCE2}              $RPM_BUILD_ROOT/etc/rc.d/init.d/nscd
998 install %{SOURCE3}              $RPM_BUILD_ROOT/etc/sysconfig/nscd
999 install %{SOURCE4}              $RPM_BUILD_ROOT/etc/logrotate.d/nscd
1000 install nscd/nscd.conf  $RPM_BUILD_ROOT%{_sysconfdir}
1001 install nss/nsswitch.conf       $RPM_BUILD_ROOT%{_sysconfdir}
1002
1003 bzip2 -dc %{SOURCE5} | tar xf - -C $RPM_BUILD_ROOT%{_mandir}
1004 bzip2 -dc %{SOURCE6} | tar xf - -C $RPM_BUILD_ROOT%{_mandir}
1005 > $RPM_BUILD_ROOT%{_sysconfdir}/ld.so.cache
1006 > $RPM_BUILD_ROOT%{_sysconfdir}/ld.so.conf
1007 rm -f $RPM_BUILD_ROOT%{_mandir}/hu/man7/man.7
1008
1009 :> $RPM_BUILD_ROOT/var/log/nscd
1010 :> $RPM_BUILD_ROOT/var/lib/nscd/passwd
1011 :> $RPM_BUILD_ROOT/var/lib/nscd/group
1012 :> $RPM_BUILD_ROOT/var/lib/nscd/hosts
1013
1014 rm -rf documentation
1015 install -d documentation
1016
1017 %if %{with linuxthreads}
1018 for f in ChangeLog Changes README ; do
1019         cp -f linuxthreads/$f documentation/${f}.linuxthreads
1020 done
1021 %endif
1022 %if %{with nptl}
1023 for f in ANNOUNCE ChangeLog DESIGN-{barrier,condvar,rwlock,sem}.txt TODO{,-kernel,-testing} ;  do
1024         cp -f nptl/$f documentation/${f}.nptl
1025 done
1026 %endif
1027 cp -f crypt/README.ufc-crypt documentation
1028
1029 cp -f ChangeLog* documentation
1030
1031 rm -f $RPM_BUILD_ROOT%{_libdir}/libnss_*.so
1032
1033 # strip ld.so with --strip-debug only (other ELFs are stripped by rpm):
1034 %{!?debug:strip -g -R .comment -R .note $RPM_BUILD_ROOT/%{_lib}/ld-*.so}
1035
1036 # Collect locale files and mark them with %%lang()
1037 rm -f glibc.lang
1038 echo '%defattr(644,root,root,755)' > glibc.lang
1039 for i in $RPM_BUILD_ROOT%{_datadir}/locale/* $RPM_BUILD_ROOT%{_libdir}/locale/* ; do
1040         if [ -d $i ]; then
1041                 lang=`echo $i | sed -e 's/.*locale\///' -e 's/\/.*//'`
1042                 twochar=1
1043                 # list of long %%lang values we do support
1044                 for j in de_AT de_BE de_CH de_LU es_AR es_MX pt_BR \
1045                          zh_CN zh_CN.gbk zh_HK zh_TW ; do
1046                         if [ $j = "$lang" ]; then
1047                                 twochar=
1048                         fi
1049                 done
1050                 if [ -n "$twochar" ]; then
1051                         if [ `echo $lang | sed "s,_.*,,"` = "zh" ]; then
1052                                 lang=`echo $lang | sed "s,\..*,,"`
1053                         else
1054                                 lang=`echo $lang | sed "s,_.*,,"`
1055                         fi
1056                 fi
1057                 dir=`echo $i | sed "s#$RPM_BUILD_ROOT##"`
1058                 echo "%lang($lang) $dir" >> glibc.lang
1059         fi
1060 done
1061 # XXX: to be added when become supported by glibc
1062 # tk, yo (used by GNOME)
1063 # ven -> ve (used by KDE)
1064 # NOTES:
1065 # bn is used for bn_BD or bn_IN?
1066 # omitted here - already existing (with libc.mo):
1067 #   be,ca,cs,da,de,el,en_GB,es,fi,fr,gl,hr,hu,it,ja,ko,nb,nl,pl,pt_BR,sk,sv,tr,zh_CN,zh_TW
1068 for i in af am ang ar az bg bn br bs cy de_AT en en@boldquot en@quot en_AU \
1069     en_CA en_US eo es_AR es_MX et eu fa fo ga gu he hi hsb ia id is ka kn \
1070     leet lg li lo lt lv mi mk ml mn mr ms mt nds ne nn nso or pa pt ro ru se \
1071     sl sq sr sr@Latn sr@ije ss ta tg th tlh uk uz ve vi wa xh yi zu ; do
1072         if [ ! -d $RPM_BUILD_ROOT%{_datadir}/locale/$i/LC_MESSAGES ]; then
1073                 install -d $RPM_BUILD_ROOT%{_datadir}/locale/$i/LC_MESSAGES
1074                 lang=`echo $i | sed -e 's/_.*//'`
1075                 echo "%lang($lang) %{_datadir}/locale/$i" >> glibc.lang
1076         fi
1077 done
1078 cd $RPM_BUILD_ROOT%{_datadir}/locale
1079 ln -s zh_CN zh_SG
1080 ln -s zh_CN zh_HK
1081 cd -
1082
1083 # localedb-gen infrastructure
1084 install %{SOURCE7} $RPM_BUILD_ROOT%{_bindir}/localedb-gen
1085 install localedata/SUPPORTED $RPM_BUILD_ROOT%{_datadir}/i18n
1086
1087 # shutup check-files
1088 rm -f $RPM_BUILD_ROOT%{_mandir}/README.*
1089 rm -f $RPM_BUILD_ROOT%{_mandir}/diff.*
1090 rm -f $RPM_BUILD_ROOT%{_infodir}/dir
1091 # we don't support kernel without ptys support
1092 rm -f $RPM_BUILD_ROOT%{_libdir}/pt_chown
1093
1094 %clean
1095 rm -rf $RPM_BUILD_ROOT
1096
1097 # don't run iconvconfig in %%postun -n iconv because iconvconfig doesn't exist
1098 # when %%postun is run
1099
1100 %ifarch amd64 ppc64 s390x sparc64
1101 %post   -n %{name}64 -p /sbin/postshell
1102 %else
1103 %post   -p /sbin/postshell
1104 %endif
1105 /sbin/ldconfig
1106 -/sbin/telinit u
1107
1108 %ifarch amd64 ppc64 s390x sparc64
1109 %postun -n %{name}64 -p /sbin/postshell
1110 %else
1111 %postun -p /sbin/postshell
1112 %endif
1113 /sbin/ldconfig
1114 -/sbin/telinit u
1115
1116 %ifarch amd64 ppc64 s390x sparc64
1117 %triggerpostun -n %{name}64 -p /sbin/postshell -- glibc-misc < 6:2.3.4-0.20040505.1
1118 %else
1119 %triggerpostun -p /sbin/postshell -- glibc-misc < 6:2.3.4-0.20040505.1
1120 %endif
1121 -/bin/mv %{_sysconfdir}/ld.so.conf.rpmsave %{_sysconfdir}/ld.so.conf
1122
1123 %post   memusage -p /sbin/ldconfig
1124 %postun memusage -p /sbin/ldconfig
1125
1126 %post -n iconv -p %{_sbindir}/iconvconfig
1127
1128 %post devel
1129 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
1130
1131 %postun devel
1132 [ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
1133
1134 %pre -n nscd
1135 if [ -n "`/usr/bin/getgid nscd`" ]; then
1136         if [ "`/usr/bin/getgid nscd`" != "144" ]; then
1137                 echo "Error: group nscd doesn't have gid=144. Correct this before installing nscd." 1>&2
1138                 exit 1
1139         fi
1140 else
1141         /usr/sbin/groupadd -g 144 -r nscd
1142 fi
1143 if [ -n "`/bin/id -u nscd 2>/dev/null`" ]; then
1144         if [ "`/bin/id -u nscd`" != "144" ]; then
1145                 echo "Error: user nscd doesn't have uid=144. Correct this before installing nscd." 1>&2
1146                 exit 1
1147         fi
1148 else
1149         /usr/sbin/useradd -u 144 -r -d /tmp -s /bin/false -c "nscd" -g nscd nscd 1>&2
1150 fi
1151
1152 %post -n nscd
1153 /sbin/chkconfig --add nscd
1154 touch /var/log/nscd
1155 chmod 000 /var/log/nscd
1156 chown root:root /var/log/nscd
1157 chmod 640 /var/log/nscd
1158 if [ -f /var/lock/subsys/nscd ]; then
1159         /etc/rc.d/init.d/nscd restart 1>&2
1160 else
1161         echo "Run \"/etc/rc.d/init.d/nscd start\" to start nscd daemon." 1>&2
1162 fi
1163
1164 %preun -n nscd
1165 if [ "$1" = "0" ]; then
1166         if [ -f /var/lock/subsys/nscd ]; then
1167                 /etc/rc.d/init.d/nscd stop 1>&2
1168         fi
1169         /sbin/chkconfig --del nscd
1170 fi
1171
1172 %postun -n nscd
1173 if [ "$1" = "0" ]; then
1174         %userremove nscd
1175         %groupremove nscd
1176 fi
1177
1178 %ifarch amd64 ppc64 s390x sparc64
1179 %files -n glibc64
1180 %defattr(644,root,root,755)
1181 %else
1182 %files
1183 %defattr(644,root,root,755)
1184 %endif
1185 %defattr(644,root,root,755)
1186 %doc README NEWS FAQ BUGS
1187 %attr(755,root,root) /sbin/postshell
1188 %attr(755,root,root) /sbin/ldconfig
1189 # ld* and libc.so.6 SONAME symlinks must be in package because of
1190 # chicken-egg problem (postshell is dynamically linked with libc);
1191 # ld-*.so SONAME is:
1192 #   ld.so.1 on ppc
1193 #   ld64.so.1 on ppc64,s390x
1194 #   ld-linux-ia64.so.2 on ia64
1195 #   ld-linux-x86-64.so.2 on amd64
1196 #   ld-linux.so.2 on other archs
1197 %attr(755,root,root) /%{_lib}/ld*
1198 %attr(755,root,root) /%{_lib}/libanl*
1199 %attr(755,root,root) /%{_lib}/libdl*
1200 %attr(755,root,root) /%{_lib}/libnsl*
1201 %attr(755,root,root) /%{_lib}/lib[BScmprtu]*
1202 %if %{with dual}
1203 %dir /%{_lib}/tls
1204 %attr(755,root,root) /%{_lib}/tls/lib[cmprt]*
1205 %endif
1206 %{?with_localedb:%dir %{_libdir}/locale}
1207 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/ld.so.conf
1208 %ghost %{_sysconfdir}/ld.so.cache
1209
1210 #%files -n nss_dns
1211 %defattr(644,root,root,755)
1212 %attr(755,root,root) /%{_lib}/libnss_dns*.so*
1213
1214 #%files -n nss_files
1215 %defattr(644,root,root,755)
1216 %attr(755,root,root) /%{_lib}/libnss_files*.so*
1217
1218 %files misc -f %{name}.lang
1219 %defattr(644,root,root,755)
1220
1221 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/nsswitch.conf
1222 %config %{_sysconfdir}/rpc
1223
1224 %attr(755,root,root) /sbin/sln
1225 %attr(755,root,root) %{_bindir}/catchsegv
1226 %attr(755,root,root) %{_bindir}/getconf
1227 %attr(755,root,root) %{_bindir}/getent
1228 %attr(755,root,root) %{_bindir}/iconv
1229 %attr(755,root,root) %{_bindir}/ldd
1230 %ifarch %{ix86} m68k sparc sparcv9
1231 %attr(755,root,root) %{_bindir}/lddlibc4
1232 %endif
1233 %attr(755,root,root) %{_bindir}/locale
1234 %attr(755,root,root) %{_bindir}/rpcgen
1235 %attr(755,root,root) %{_bindir}/tzselect
1236
1237 %attr(755,root,root) %{_sbindir}/rpcinfo
1238 %attr(755,root,root) %{_sbindir}/zdump
1239 %attr(755,root,root) %{_sbindir}/zic
1240
1241 %dir %{_libexecdir}/getconf
1242 %attr(755,root,root) %{_libexecdir}/getconf/*
1243
1244 %dir %{_datadir}/locale
1245 %{_datadir}/locale/locale.alias
1246 %{_datadir}/zoneinfo
1247 %exclude %{_datadir}/zoneinfo/right
1248
1249 %{_mandir}/man1/catchsegv.1*
1250 %{_mandir}/man1/getconf.1*
1251 %{_mandir}/man1/getent.1*
1252 %{_mandir}/man1/iconv.1*
1253 %{_mandir}/man1/ldd.1*
1254 %{_mandir}/man1/locale.1*
1255 %{_mandir}/man1/rpcgen.1*
1256 %{_mandir}/man5/locale.5*
1257 %{_mandir}/man5/nsswitch.conf.5*
1258 %{_mandir}/man5/tzfile.5*
1259 %{_mandir}/man7/*
1260 %{_mandir}/man8/ld*.8*
1261 %{_mandir}/man8/rpcinfo.8*
1262 %{_mandir}/man8/sln.8*
1263 %{_mandir}/man8/tzselect.8*
1264 %{_mandir}/man8/zdump.8*
1265 %{_mandir}/man8/zic.8*
1266 %lang(cs) %{_mandir}/cs/man7/*
1267 %lang(de) %{_mandir}/de/man5/tzfile.5*
1268 %lang(de) %{_mandir}/de/man7/*
1269 %lang(es) %{_mandir}/es/man5/locale.5*
1270 %lang(es) %{_mandir}/es/man5/nsswitch.conf.5*
1271 %lang(es) %{_mandir}/es/man5/tzfile.5*
1272 %lang(es) %{_mandir}/es/man7/*
1273 %lang(es) %{_mandir}/es/man8/ld*.8*
1274 %lang(es) %{_mandir}/es/man8/tzselect.8*
1275 %lang(es) %{_mandir}/es/man8/zdump.8*
1276 %lang(es) %{_mandir}/es/man8/zic.8*
1277 %lang(fi) %{_mandir}/fi/man1/ldd.1*
1278 %lang(fr) %{_mandir}/fr/man1/ldd.1*
1279 %lang(fr) %{_mandir}/fr/man5/locale.5*
1280 %lang(fr) %{_mandir}/fr/man5/nsswitch.conf.5*
1281 %lang(fr) %{_mandir}/fr/man5/tzfile.5*
1282 %lang(fr) %{_mandir}/fr/man7/*
1283 %lang(fr) %{_mandir}/fr/man8/ld*.8*
1284 %lang(fr) %{_mandir}/fr/man8/tzselect.8*
1285 %lang(fr) %{_mandir}/fr/man8/zdump.8*
1286 %lang(fr) %{_mandir}/fr/man8/zic.8*
1287 %lang(hu) %{_mandir}/hu/man1/ldd.1*
1288 %lang(hu) %{_mandir}/hu/man7/*
1289 %lang(hu) %{_mandir}/hu/man8/ld*.8*
1290 %lang(hu) %{_mandir}/hu/man8/zdump.8*
1291 %lang(it) %{_mandir}/it/man5/locale.5*
1292 %lang(it) %{_mandir}/it/man7/*
1293 %lang(it) %{_mandir}/it/man8/tzselect.8*
1294 %lang(it) %{_mandir}/it/man8/zdump.8*
1295 %lang(ja) %{_mandir}/ja/man1/ldd.1*
1296 %lang(ja) %{_mandir}/ja/man1/rpcgen.1*
1297 %lang(ja) %{_mandir}/ja/man5/locale.5*
1298 %lang(ja) %{_mandir}/ja/man5/nsswitch.conf.5*
1299 %lang(ja) %{_mandir}/ja/man5/tzfile.5*
1300 %lang(ja) %{_mandir}/ja/man7/*
1301 %lang(ja) %{_mandir}/ja/man8/ld*.8*
1302 %lang(ja) %{_mandir}/ja/man8/rpcinfo.8*
1303 %lang(ja) %{_mandir}/ja/man8/sln.8*
1304 %lang(ja) %{_mandir}/ja/man8/tzselect.8*
1305 %lang(ja) %{_mandir}/ja/man8/zdump.8*
1306 %lang(ja) %{_mandir}/ja/man8/zic.8*
1307 %lang(ko) %{_mandir}/ko/man5/nsswitch.conf.5*
1308 %lang(ko) %{_mandir}/ko/man5/tzfile.5*
1309 %lang(ko) %{_mandir}/ko/man7/*
1310 %lang(ko) %{_mandir}/ko/man8/tzselect.8*
1311 %lang(ko) %{_mandir}/ko/man8/zdump.8*
1312 %lang(pl) %{_mandir}/pl/man1/ldd.1*
1313 %lang(pl) %{_mandir}/pl/man5/locale.5*
1314 %lang(pl) %{_mandir}/pl/man7/*
1315 %lang(pl) %{_mandir}/pl/man8/ld*.8*
1316 %lang(pt) %{_mandir}/pt/man5/locale.5*
1317 %lang(pt) %{_mandir}/pt/man5/nsswitch.conf.5*
1318 %lang(pt) %{_mandir}/pt/man5/tzfile.5*
1319 %lang(pt) %{_mandir}/pt/man7/*
1320 %lang(pt) %{_mandir}/pt/man8/ld*.8*
1321 %lang(pt) %{_mandir}/pt/man8/tzselect.8*
1322 %lang(pt) %{_mandir}/pt/man8/zdump.8*
1323 %lang(pt) %{_mandir}/pt/man8/zic.8*
1324 %lang(ru) %{_mandir}/ru/man5/nsswitch.conf.5*
1325 %lang(ru) %{_mandir}/ru/man5/tzfile.5*
1326 %lang(ru) %{_mandir}/ru/man7/*
1327 %lang(ru) %{_mandir}/ru/man8/tzselect.8*
1328 %lang(ru) %{_mandir}/ru/man8/zdump.8*
1329 %lang(ru) %{_mandir}/ru/man8/zic.8*
1330 %lang(zh_CN) %{_mandir}/zh_CN/man1/iconv.1*
1331 %lang(zh_CN) %{_mandir}/zh_CN/man1/ldd.1*
1332 %lang(zh_CN) %{_mandir}/zh_CN/man5/locale.5*
1333 %lang(zh_CN) %{_mandir}/zh_CN/man5/tzfile.5*
1334 %lang(zh_CN) %{_mandir}/zh_CN/man7/*
1335 %lang(zh_CN) %{_mandir}/zh_CN/man8/tzselect.8*
1336 %lang(zh_CN) %{_mandir}/zh_CN/man8/zdump.8*
1337 %lang(zh_CN) %{_mandir}/zh_CN/man8/zic.8*
1338
1339 %files zoneinfo_right
1340 %defattr(644,root,root,755)
1341 %{_datadir}/zoneinfo/right
1342
1343 %files -n nss_compat
1344 %defattr(644,root,root,755)
1345 %attr(755,root,root) /%{_lib}/libnss_compat*.so*
1346
1347 %files -n nss_hesiod
1348 %defattr(644,root,root,755)
1349 %attr(755,root,root) /%{_lib}/libnss_hesiod*.so*
1350
1351 %files -n nss_nis
1352 %defattr(644,root,root,755)
1353 %attr(755,root,root) /%{_lib}/libnss_nis.so.*
1354 %attr(755,root,root) /%{_lib}/libnss_nis-*.so
1355
1356 %files -n nss_nisplus
1357 %defattr(644,root,root,755)
1358 %attr(755,root,root) /%{_lib}/libnss_nisplus*.so*
1359
1360 %if %{with memusage}
1361 %files memusage
1362 %defattr(644,root,root,755)
1363 %attr(755,root,root) %{_bindir}/memusage*
1364 %attr(755,root,root) %{_libdir}/libmemusage.so
1365 %endif
1366
1367 %files devel
1368 %defattr(644,root,root,755)
1369 %doc documentation/* NOTES PROJECTS
1370 %attr(755,root,root) %{_bindir}/gencat
1371 %attr(755,root,root) %{_bindir}/*prof*
1372 %attr(755,root,root) %{_bindir}/*trace
1373
1374 %attr(755,root,root) %{_libdir}/lib[!cmp]*.so
1375 %attr(755,root,root) %{_libdir}/libcrypt.so
1376 %attr(755,root,root) %{_libdir}/libm.so
1377 %attr(755,root,root) %{_libdir}/libpcprofile.so
1378 %attr(755,root,root) %{_libdir}/*crt*.o
1379 # ld scripts
1380 %{_libdir}/libc.so
1381 %{_libdir}/libpthread.so
1382
1383 %{_libdir}/libbsd-compat.a
1384 %{_libdir}/libbsd.a
1385 %{_libdir}/libc_nonshared.a
1386 %{_libdir}/libg.a
1387 %{_libdir}/libieee.a
1388 %{_libdir}/libpthread_nonshared.a
1389 %{_libdir}/librpcsvc.a
1390
1391 %if %{with dual}
1392 %dir %{_libdir}/nptl
1393 # ld scripts
1394 %{_libdir}/nptl/libc.so
1395 %{_libdir}/nptl/libpthread.so
1396 %{_libdir}/nptl/libpthread_nonshared.a
1397 %{_includedir}/nptl
1398 %endif
1399
1400 %{_includedir}/*.h
1401 %ifarch alpha
1402 %{_includedir}/alpha
1403 %endif
1404 %{_includedir}/arpa
1405 %{_includedir}/bits
1406 %{_includedir}/gnu
1407 %{_includedir}/net
1408 %{_includedir}/netash
1409 %{_includedir}/netatalk
1410 %{_includedir}/netax25
1411 %{_includedir}/neteconet
1412 %{_includedir}/netinet
1413 %{_includedir}/netipx
1414 %{_includedir}/netpacket
1415 %{_includedir}/netrom
1416 %{_includedir}/netrose
1417 %{_includedir}/nfs
1418 %{_includedir}/protocols
1419 %{_includedir}/rpc
1420 %{_includedir}/rpcsvc
1421 %{_includedir}/scsi
1422 %{_includedir}/sys
1423
1424 %{_infodir}/libc.info*
1425
1426 %{_mandir}/man1/sprof.1*
1427 %{_mandir}/man3/*
1428 %lang(cs) %{_mandir}/cs/man3/*
1429 %lang(de) %{_mandir}/de/man3/*
1430 %lang(es) %{_mandir}/es/man3/*
1431 %lang(fr) %{_mandir}/fr/man3/*
1432 %lang(hu) %{_mandir}/hu/man3/*
1433 %lang(it) %{_mandir}/it/man3/*
1434 %lang(ja) %{_mandir}/ja/man3/*
1435 %lang(ko) %{_mandir}/ko/man3/*
1436 %lang(nl) %{_mandir}/nl/man3/*
1437 %lang(pl) %{_mandir}/pl/man3/*
1438 %lang(pt) %{_mandir}/pt/man3/*
1439 %lang(ru) %{_mandir}/ru/man3/*
1440 %lang(uk) %{_mandir}/uk/man3/*
1441 %lang(zh_CN) %{_mandir}/zh_CN/man3/*
1442
1443 %files -n nscd
1444 %defattr(644,root,root,755)
1445 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/nscd
1446 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/nscd.*
1447 %attr(754,root,root) /etc/rc.d/init.d/nscd
1448 %attr(755,root,root) %{_sbindir}/nscd*
1449 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/nscd
1450 %attr(640,root,root) %ghost /var/log/nscd
1451 %dir /var/run/nscd
1452 %dir /var/lib/nscd
1453 %attr(600,root,root) %ghost /var/lib/nscd/passwd
1454 %attr(600,root,root) %ghost /var/lib/nscd/group
1455 %attr(600,root,root) %ghost /var/lib/nscd/hosts
1456 %{_mandir}/man5/nscd.conf.5*
1457 %{_mandir}/man8/nscd.8*
1458 %{_mandir}/man8/nscd_nischeck.8*
1459 %lang(fr) %{_mandir}/fr/man5/nscd.conf.5*
1460 %lang(fr) %{_mandir}/fr/man8/nscd.8*
1461 %lang(ja) %{_mandir}/ja/man5/nscd.conf.5*
1462 %lang(ja) %{_mandir}/ja/man8/nscd.8*
1463 %lang(pt) %{_mandir}/pt/man5/nscd.conf.5*
1464 %lang(pt) %{_mandir}/pt/man8/nscd.8*
1465
1466 %files -n localedb-src
1467 %defattr(644,root,root,755)
1468 %attr(755,root,root) %{_bindir}/localedef
1469 %attr(755,root,root) %{_bindir}/localedb-gen
1470 %{_datadir}/i18n
1471 %{_mandir}/man1/localedef.1*
1472
1473 %if %{with localedb}
1474 %files localedb-all
1475 %defattr(644,root,root,755)
1476 %{_libdir}/locale/locale-archive
1477 %endif
1478
1479 %files -n iconv
1480 %defattr(644,root,root,755)
1481 %attr(755,root,root) %{_sbindir}/iconvconfig
1482 %dir %{_libdir}/gconv
1483 %{_libdir}/gconv/gconv-modules
1484 %attr(755,root,root) %{_libdir}/gconv/*.so
1485
1486 %files static
1487 %defattr(644,root,root,755)
1488 %{_libdir}/libanl.a
1489 %{_libdir}/libBrokenLocale.a
1490 %{_libdir}/libc.a
1491 %{_libdir}/libcrypt.a
1492 %{_libdir}/libdl.a
1493 %{_libdir}/libm.a
1494 %{_libdir}/libmcheck.a
1495 %{_libdir}/libnsl.a
1496 %{_libdir}/libpthread.a
1497 %{_libdir}/libresolv.a
1498 %{_libdir}/librt.a
1499 %{_libdir}/libutil.a
1500 %if %{with dual}
1501 %{_libdir}/nptl/libc.a
1502 %{_libdir}/nptl/libpthread.a
1503 %endif
1504
1505 %files profile
1506 %defattr(644,root,root,755)
1507 #{?with_dual:%{_libdir}/nptl/lib*_p.a}
1508 %{_libdir}/lib*_p.a
1509
1510 %files pic
1511 %defattr(644,root,root,755)
1512 %{_libdir}/lib*_pic.a
1513 %{_libdir}/lib*.map
1514 %{_libdir}/soinit.o
1515 %{_libdir}/sofini.o
This page took 0.23943 seconds and 4 git commands to generate.