]> git.pld-linux.org Git - packages/rpm.git/blob - rpm.macros
- add -D to %pear_package_setup to prevent builddir removal
[packages/rpm.git] / rpm.macros
1 # $Revision$, $Date$
2 # PLD Linux rpm macros
3
4 %epoch          0
5 %x8664          x86_64 amd64 ia32e
6
7 # kernel compiler
8 %kgcc           %{__cc}
9 %kgcc_package   gcc
10
11 # Build system path macros.
12 #
13 %__autoconf             autoconf %{?debug:-Wall}
14 %__automake             automake -a -c -f --foreign
15 %__autopoint            autopoint --force
16
17 %__gettextize { \
18 if ! gettextize --version | grep -q '0\.10\.' ; then \
19         if grep -qs 'AM_GNU_GETTEXT.*external' configure.{ac,in} ; then \
20                 gettextize --copy --force --no-changelog; \
21         else \
22                 gettextize --copy --force --no-changelog --intl; \
23         fi; \
24         if [ ! -f po/Makevars ]; then \
25                 cp -f po/Makevars{.template,}; \
26         fi; \
27 else \
28         gettextize --copy --force; \
29 fi; \
30 }
31
32 %__glib_gettextize      glib-gettextize --copy --force
33 %__gnome_doc_common     gnome-doc-common --copy
34 %__gnome_doc_prepare    gnome-doc-prepare --copy --force
35 %__gtkdocize            gtkdocize --copy
36 %__intltoolize          intltoolize --copy --force
37 %__libtoolize           libtoolize --copy --force
38
39 #       The number of cvs changelog entries kept when building package.
40 %_buildchangelogtruncate 20
41
42 %dependencytracking     %{nil}
43
44 #       Relations between package names that cause dependency loops
45 #       with legacy packages that cannot be fixed. Relations are
46 #       specified as
47 #               p>q
48 #       where package p has a Requires: on something that package q Provides:
49 #
50 # XXX   Note: that there cannot be any whitespace within the string "p>q",
51 #       and that both p and q are package names (i.e. no version/release).
52 %_dependency_whiteout   %{nil}
53
54
55 #-----------------------------------------------------------------
56 #
57 # (re)definition of %{rpm*flags} with %filterout_* support
58 # BuildRequires:        awk
59 # BuildRequires:        rpmbuild(macros) >= 1.315
60 #
61 # Flags specified in %filterout_* are removed from %rpm*flags, exactly:
62 # %rpmcflags    = %optflags - %filterout - %filterout_c   - %filterout_ld
63 # %rpmcxxflags  = %optflags - %filterout - %filterout_cxx - %filterout_ld
64 # %rpmldflags   = %optldflags - %filterout_ld
65 #
66 # Regular expressions are supported, but to avoid some character be treated
67 # as regular expression it must be escaped twice.
68
69 %filter_out                                             \
70         for (i in I) {  A=0;                    \
71                 for (f in F) {                          \
72                         if (I[i] ~ "^" F[f] "$") A=1;   \
73                 };                                                      \
74                 if (!A) printf(I[i] FS);        \
75         }
76
77 %rpmcflags %(awk 'BEGIN {
78         split("%{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}",I);
79         split("%{?filterout} %{?filterout_c} %{?filterout_ld}",F);
80         %{filter_out}
81 }')
82
83 %rpmcxxflags %(awk 'BEGIN {
84         split("%{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}",I);
85         split("%{?filterout} %{?filterout_cxx} %{?filterout_ld}",F);
86         %{filter_out}
87 }')
88
89 %rpmldflags %(awk 'BEGIN {
90         split("%{?optldflags}",I);
91         split("%{?filterout_ld}",F)
92         %{filter_out}
93 }')
94
95 # rpmldflags with stripped -Wl, -- in the form flags have to be passed to 'ld'
96 # but, don't use it, better use gcc as linker
97 %ld_rpmldflags %(awk 'BEGIN {
98         split("%{rpmldflags}",F);
99         for (f in F) {
100                 s = F[f];
101                 if (s ~ /^-Wl,/) {
102                         s = substr(s,5);
103                         gsub(/,/," ",s);
104                 };
105                 printf(s FS);
106         };
107 }')
108
109 #-----------------------------------------------------------------
110 %configure2_13 { \
111  if [ -n "$LINGUAS" ]; then unset LINGUAS; fi; \
112  LDFLAGS="${LDFLAGS:-%rpmldflags}" ; export LDFLAGS ; \
113  CFLAGS="${CFLAGS:-%rpmcflags}" ; export CFLAGS ; \
114  CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" ; export CXXFLAGS ; \
115  FFLAGS="${FFLAGS:-%rpmcflags}" ; export FFLAGS ; \
116  CPPFLAGS="${CPPFLAGS:-}" ; export CPPFLAGS ; \
117  %{?__cc:CC="%{__cc}" ; export CC ; } \
118  %{?__cxx:CXX="%{__cxx}" ; export CXX ; } \
119  %{?configuredir:%{configuredir}}%{!?configuredir:.}/configure \
120         --host=%{_target_platform} \
121         --prefix=%{_prefix} \
122         --exec-prefix=%{_exec_prefix} \
123         --bindir=%{_bindir} \
124         --sbindir=%{_sbindir} \
125         --sysconfdir=%{_sysconfdir} \
126         --datadir=%{_datadir} \
127         --includedir=%{_includedir} \
128         --libdir=%{_libdir} \
129         --libexecdir=%{_libexecdir} \
130         --localstatedir=%{_localstatedir} \
131         --sharedstatedir=%{_sharedstatedir} \
132         --mandir=%{_mandir} \
133         --infodir=%{_infodir} \
134         --x-libraries=%{?_x_libraries}%{!?_x_libraries:%{_libdir}} \
135         %{dependencytracking} \
136 }
137
138 # override __cmake to add -j4 in your ~/.rpmmacros for parallel make
139 %__cmake        /usr/bin/cmake
140 %cmake { \
141 CC="%{__cc}" \
142 CXX="%{__cxx}" \
143 CFLAGS="%{rpmcflags}" \
144 CXXFLAGS="%{rpmcxxflags}" \
145 %{__cmake} \
146 }
147
148 # override __scons to add -j4 in your ~/.rpmmacros for parallel make
149 %__scons        /usr/bin/scons
150 %scons { \
151 %{__scons} \
152 }
153
154 # waf. see waf.spec
155 # override __waf to add -j4 in your ~/.rpmmacros for parallel make
156 %__waf  /usr/bin/waf
157 %waf { \
158 CC="%{__cc}" \
159 CXX="%{__cxx}" \
160 CPP="%{__cpp}" \
161 CFLAGS="%{rpmcflags}" \
162 CXXFLAGS="%{rpmcxxflags}" \
163 %{__waf} \
164 }
165
166 #----------------------------------------------------------------
167 %global configure_cache 0
168 %configure_cache_file   %{buildroot}.configure.cache
169
170 %configure {./configure \
171         LDFLAGS="${LDFLAGS:-%rpmldflags}" \
172         CFLAGS="${CFLAGS:-%rpmcflags}" \
173         CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" \
174         FFLAGS="${FFLAGS:-%rpmcflags}" \
175         CPPFLAGS="${CPPFLAGS:-}" \
176         %{?__cc:CC="%{__cc}"} \
177         %{?__cxx:CXX="%{__cxx}"} \
178         --host=%{_target_platform} \
179         --build=%{_target_platform} \
180         --prefix=%{_prefix} \
181         --exec-prefix=%{_exec_prefix} \
182         --bindir=%{_bindir} \
183         --sbindir=%{_sbindir} \
184         --sysconfdir=%{_sysconfdir} \
185         --datadir=%{_datadir} \
186         --includedir=%{_includedir} \
187         --libdir=%{_libdir} \
188         --libexecdir=%{_libexecdir} \
189         --localstatedir=%{_localstatedir} \
190         --sharedstatedir=%{_sharedstatedir} \
191         --mandir=%{_mandir} \
192         --infodir=%{_infodir} \
193         --x-libraries=%{?_x_libraries}%{!?_x_libraries:%{_libdir}} \
194         %{dependencytracking} \
195         %{?configure_cache:--cache-file=%{configure_cache_file:-%{buildroot}.configure.cache}} \
196 }
197
198 # ------------------------------------------------------------------------
199 # Overloading of some basic macros
200 %prep \
201 %%prep\
202 export LC_ALL=C\
203 export LANG=C\
204 unset LINGUAS ||:\
205 unset LANGUAGE ||:\
206 unset LC_MESSAGES ||:\
207 unset DISPLAY ||:\
208 %{nil}
209
210 %build %%build\
211 export LC_ALL=C\
212 export LANG=C\
213 unset LINGUAS ||:\
214 unset LANGUAGE ||:\
215 unset LC_MESSAGES ||:\
216 unset DISPLAY ||:\
217 %{nil}
218
219 %install \
220 %if 0%{?_enable_debug_packages}\
221 %{?buildsubdir:%{debug_package}}\
222 %endif\
223 %%install\
224 export LC_ALL=C\
225 export LANG=C\
226 unset LINGUAS ||:\
227 unset LANGUAGE ||:\
228 unset LC_MESSAGES ||:\
229 unset DISPLAY ||:\
230 %{nil}
231
232 # Location of autoconf macros
233 %_aclocaldir    %(aclocal --print-ac-dir)
234
235 # Location of omf files
236 %_omf_dest_dir  %(scrollkeeper-config --omfdir)
237
238 # Location of pkgconfig files
239 %_pkgconfigdir  /usr/%{_lib}/pkgconfig
240
241 # Location of desktop files
242 %_desktopdir    /usr/share/applications
243 %_applnkdir     ERROR:_applnkdir_is_obsolete_use_desktopdir_instead
244
245 # Location of pixmaps for applnk/desktop files
246 %_pixmapsdir    /usr/share/pixmaps
247
248 # Location of themable icons for applnk/desktop files
249 %_iconsdir      /usr/share/icons
250
251 # Location of fonts directories
252 %_fontsdir      /usr/share/fonts
253
254 # Location of Gtk and associated libraries documentation
255 %_gtkdocdir     %{_defaultdocdir}/gtk-doc/html
256
257 # Location of KDE documentation
258 %_kdedocdir     %{_defaultdocdir}/kde/HTML
259
260 # unsermake script
261 %__unsermake /usr/share/unsermake/unsermake
262
263 # Current date
264 %date           %(LC_ALL="C" date +"%a %b %d %Y")
265
266 # tmp directory
267 %tmpdir         %(echo "${TMPDIR:-/tmp}")
268
269 # Example files, programs, scripts...
270 %_examplesdir   /usr/src/examples
271
272 # Alternative kernel type/version
273 %_alt_kernel    %{nil}%{?alt_kernel:-%{?alt_kernel}}
274
275 # The directory holding Linux kernel sources
276 %_kernelsrcdir  /usr/src/linux%{_alt_kernel}
277
278 # If non-empty "debug" macro defined, add "dbg" suffix to release number
279 %_rpmfilename           %%{NAME}-%%{VERSION}-%%{RELEASE}%{?debug:dbg}.%%{ARCH}.rpm
280
281 # Requires name = version-release
282 %requires_releq()               %(echo '%*' | LC_ALL="C" xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}-%%{release}\\n' | sed -e 's/ (none):/ /' | grep -v "is not")
283
284 %releq_kernel_up()              %((LC_ALL="C" rpm -qf --qf '%%{name}-up = %%{epoch}:%%{version}-%%{release}\\n' %{_kernelsrcdir}/include/linux/version.h 2>/dev/null || echo ERROR) | sed -e 's/ (none):/ /' | sed -e 's:-headers::' | grep -vE "(is not|no such)")
285 %releq_kernel_smp()             %((LC_ALL="C" rpm -qf --qf '%%{name}-smp = %%{epoch}:%%{version}-%%{release}\\n' %{_kernelsrcdir}/include/linux/version.h 2>/dev/null || echo ERROR) | sed -e 's/ (none):/ /' | sed -e 's:-headers::' | grep -vE "(is not|no such)")
286 %requires_releq_kernel_up(s:)   Requires%{-s:(%{-s*})}: %releq_kernel_up
287 %requires_releq_kernel_smp(s:)  Requires%{-s:(%{-s*})}: %releq_kernel_smp
288
289 %requires_eq()          %(echo '%*' | LC_ALL="C" xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}\\n' | sed -e 's/ (none):/ /' -e 's/ 0:/ /' | grep -v "is not")
290 %requires_eq_to() %(LC_ALL="C" rpm -q --qf 'Requires: %1 = %%{epoch}:%%{version}\\n' %2 | sed -e 's/ (none):/ /' | grep -v "is not")
291
292 %apache_modules_api %(awk '/#define MODULE_MAGIC_NUMBER_MAJOR/ {print $3}' /usr/include/apache/ap_mmn.h 2>/dev/null || echo ERROR)
293
294 # kernel version-release handling
295 %__kernel_ver   %( VER_H=%{_kernelsrcdir}/include/linux/utsrelease.h; [ -f $VER_H ] || VER_H=%{_kernelsrcdir}/include/linux/version.h; [ -f $VER_H ] && (grep UTS_RELEASE $VER_H 2>/dev/null | head -n 1 | cut -d'"' -f2) || (awk '/^VERSION/ { ver = $0; gsub(/VERSION.*=/, NIL, ver); } /^PATCHLEVEL/ { plev = $0; gsub(/PATCHLEVEL.*=/, NIL, plev); } /^SUBLEVEL/ { slev = $0; gsub(/SUBLEVEL.*=/, NIL, slev); } /^EXTRAVERSION/ { ever = $0; gsub(/EXTRAVERSION.*=/, NIL, ever); gsub(/ /, NIL, ever); } END { printf("%d.%d.%d%s", ver, plev, slev, ever); }' %{_kernelsrcdir}/Makefile 2> /dev/null))
296 %__kernel_rel   %(LC_ALL="C" rpm -qf %{_kernelsrcdir}/include/linux/fs.h 2>/dev/null --qf "%{RELEASE}" | grep -v "is not")
297 %__kernel_rpmvr %(LC_ALL="C" rpm -qf %{_kernelsrcdir}/include/linux/fs.h 2>/dev/null --qf "%{VERSION}-%{RELEASE}" | grep -v "is not")
298 %_kernel_ver    %{__kernel_ver}%{?with_dist_kernel:%(echo %{__kernel_ver} | grep -q -e - || echo -%{__kernel_rel})}
299 %_kernel_ver_str %(echo %{!?_without_dist_kernel:%{__kernel_rpmvr}}%{?_without_dist_kernel:%{__kernel_ver}} | sed -e 's/-/_/g')
300
301 # sgml macros
302 %xmlcat_add()           /usr/bin/xmlcatalog --noout --add nextCatalog \"\" %1 /etc/xml/catalog ;
303 %xmlcat_del()           /usr/bin/xmlcatalog --noout --del %1 /etc/xml/catalog ;
304 %xmlcat_add_rewrite     /usr/bin/xmlcatalog --noout --add rewriteSystem
305 %xmlcat_create()        /usr/bin/xmlcatalog --noout --create %1 ;
306 %sgmlcat_add()          /usr/bin/install-catalog --add %1 %2 > /dev/null ;
307 %sgmlcat_del()          /usr/bin/install-catalog --remove %1 %2 > /dev/null ;
308 %docbook_sgmlcat_fix() { for l in \
309 '' \
310 '  -- default decl --' \
311 'DTDDECL "-//OASIS//DTD DocBook XML V%2//EN" "../../xml.dcl"' \
312 '  -- hacks for opensp --' \
313 'SYSTEM "file://%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd" "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
314 'SYSTEM "http://www.oasis-open.org/docbook/xml/%2/docbookx.dtd"                  "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
315 '' \
316 ; do echo $l; done >> %1 \
317 }
318
319 # minimum file size needed for compressed documents.
320 # just smaller files than this get larger when compressed.
321 # some stats:
322 # - 0 byte file compressed was 25 bytes .gz
323 # - 39 byte file was compressed as 57
324 # - with test/test.spec@man 158 byte file was compressed also 158
325 %_min_compress_bytes    159
326
327 #-----------------------------------------------------------------
328 # find and gzip all files in %{_mandir} and %{infodir}
329 #
330 # Requires: xargs, find
331 #
332 #%no_install_post_compress_docs 1
333 %__spec_install_post_compress_docs { \
334 %{!?no_install_post_compress_docs:__spec_install_post_compress_docs() { \
335         for i in /usr/share/man /usr/X11R6/man /usr/share/info; do \
336                 if [ -d "$RPM_BUILD_ROOT$i" ]; then \
337                         echo "Compress $(basename $i) pages: $i"; \
338                         find "$RPM_BUILD_ROOT$i" -name '*.bz2' -print | xargs -r %{__bzip2} -df; \
339                         find "$RPM_BUILD_ROOT$i" -name '*.gz' -print | xargs -r %{__gzip} -dnf; \
340                         find "$RPM_BUILD_ROOT$i" -type f -size +%{_min_compress_bytes}c -print | xargs -r %{__gzip} -9nf; \
341                 fi; \
342         done; \
343 }; __spec_install_post_compress_docs } }
344
345 #-----------------------------------------------------------------
346 # Strip executable binaries and shared object files
347 #
348 # Requires: find, awk, strip, cut, xargs
349 #
350 #%no_install_post_strip 1
351 %__spec_install_post_strip {%{!?debug: \
352 %{!?no_install_post_strip:__spec_install_post_strip() { \
353 if [ -d "$RPM_BUILD_ROOT" ]; then \
354         filelist=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*" ! -regex ".*/usr/lib[0-9]*/debug/.*\.debug" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*" %{?_noautostrip:! -regex "%{_noautostrip}"}`; \
355         if [ -z "$filelist" ]; then \
356                 return; \
357         fi; \
358         filetypes=`echo "$filelist" | xargs -r -d'\\n' file`; \
359         elfexelist=`echo "$filetypes" | awk -F: '/ELF.*executable/ {print $1}'`; \
360         elfsharedlist=`echo "$filetypes" | awk -F: '/LF.*shared object/ {print $1}'`; \
361         archiveslist=`echo "$filetypes" | awk -F '/current ar archive/ {print $1}'`; \
362         if [ -n "$elfexelist" ]; then \
363                 printf "Stripping %d ELF executables..." $(echo "$elfexelist" | wc -l); \
364                 chmod u+w $elfexelist; \
365                 %{__strip} --remove-section=.note --remove-section=.comment $elfexelist; \
366                 echo "DONE"; \
367         fi; \
368         if [ -n "$elfsharedlist" ]; then \
369                 printf "Stripping %d ELF shared libraries..." $(echo "$elfsharedlist" | wc -l); \
370                 chmod u+w $elfsharedlist; \
371                 %{__strip} --strip-unneeded --remove-section=.note --remove-section=.comment $elfsharedlist; \
372                 echo "DONE"; \
373         fi; \
374         if [ -n "$archiveslist" ]; then \
375                 printf "Stripping %d ar archives..." $(echo "$elfsharedlist" | wc -l); \
376                 chmod u+w $archiveslist; \
377                 %{__strip} --strip-debug --remove-section=.note --remove-section=.comment $archiveslist; \
378                 echo "DONE"; \
379         fi; \
380 fi; }; __spec_install_post_strip } } }
381
382 #-----------------------------------------------------------------
383 # remove all RPATH from executable binaries and shared object files
384 #
385 # Requires: find, awk, cut, xargs, chrpath, uname
386 #
387 #%no_install_post_chrpath       1
388 %__spec_install_post_chrpath {%{!?debug: \
389 %{!?no_install_post_chrpath: __spec_install_post_chrpath() { \
390 if [ -d "$RPM_BUILD_ROOT" ]; then \
391         files=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*" ! -regex ".*/usr/lib[0-9]*/debug/.*" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*"  %{?_noautochrpath:! -regex "%{_noautochrpath}"}`; \
392         if [ -n "$files" ]; then \
393                 objs=`echo "$files" | xargs -r -d'\\n' file | awk -F: '/ELF.*(executable.*dynamically linked|shared object)/ {print $1}'`; \
394         fi
395         #"
396         if [ -n "$objs" ]; then \
397                 printf "Remove RPATH from %d executable binaries and shared object files.\n" $(echo "$objs" | wc -l); \
398                 echo "$objs" | \
399                 while read file; do \
400                         rpath= ; \
401                         chmod u+w "$file"; \
402                         for dir in `chrpath -l "$file" | \
403                                         awk '/RPATH=/ { gsub(/.*RPATH=/,""); gsub(/:/," "); print $0 }'` ; do \
404                                         case $dir in \
405                                         /home/* | /tmp/* | /usr/lib | /usr/lib64 | /lib | /lib64 | /usr/local/lib | /usr/local/lib64 | /usr/X11R6/lib | /usr/X11R6/lib64 ) \
406                                                 echo "remove-rpath: $dir in $file"; \
407                                                 ;; \
408                                         * ) \
409                                                 if [ "$rpath" = "" ] ; then rpath="$dir" ; \
410                                                 else rpath="$rpath:$dir" ; fi ; \
411                                                 ;; \
412                                         esac ; \
413                         done ; \
414                         if [ "$rpath" = "" ] ; then chrpath -d "$file" > /dev/null ; \
415                         else chrpath -r "$rpath" "$file" > /dev/null ; fi ; \
416                 done; \
417         fi; \
418 fi; }; __spec_install_post_chrpath } } }
419
420 #-----------------------------------------------------------------
421 # Find and gzip all kernel modules
422 #
423 # Requires: find
424 #
425 #%no_install_post_compress_modules      1
426 %__spec_install_post_compress_modules { \
427 %{!?no_install_post_compress_modules: __spec_install_post_compress_modules() { \
428         if [ -d $RPM_BUILD_ROOT/lib/modules ]; then \
429                 echo "Compress kernel modules"; \
430                 q=$(find $RPM_BUILD_ROOT/lib/modules -name '*o' -type f -print); \
431                 echo "$q" | xargs -r %{__gzip} -9nf; \
432                 printf "%d modules compressed\n" $(echo "$q" | wc -l); \
433                 find $RPM_BUILD_ROOT/lib/modules -name '*o' -type l -printf "%p %l\n" | \
434                 while read a b; do ln -sf $b.gz $a.gz; rm -f $a; done; \
435         fi; \
436 }; __spec_install_post_compress_modules } }
437
438 # Remove common Perl files we don't package
439 %__spec_install_post_perl_clean {\
440 %{!?no_install_post_perl_clean: \
441 %{?pdir:rm -f $RPM_BUILD_ROOT{%{perl_archlib}/perllocal.pod,%{perl_vendorarch}/auto/%{pdir}%{?pnam:/%(echo %{pnam} | tr - /)}/.packlist}} \
442 } }
443
444 #-----------------------------------------------------------------
445 # Update GConf2 schemas
446 #
447 # Requires: GConf2
448 #
449 %gconf_schema_install() \
450         umask 022; \
451         GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" /usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/%{?1}%{!?1:*.schemas} > /dev/null \
452         %{nil}
453
454 %gconf_schema_uninstall() \
455 if [ $1 = 0 ]; then \
456         umask 022; \
457         GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" /usr/bin/gconftool-2 --makefile-uninstall-rule /etc/gconf/schemas/%{?1} > /dev/null \
458 fi \
459 %{nil}
460
461 #-----------------------------------------------------------------
462 # Update desktop MIME database
463 # requires: desktop-file-utils
464 #
465 %update_desktop_database_post() {{ \
466         umask 022; \
467         /usr/bin/update-desktop-database -q; \
468 }}
469
470 %update_desktop_database_postun() {{ \
471 if [ $1 = 0 ]; then \
472         umask 022; \
473         /usr/bin/update-desktop-database -q; \
474 fi \
475 }}
476
477 #-----------------------------------------------------------------
478 # Update shared MIME info database
479 # requires: shared-mime-info
480 #
481 %update_mime_database() {{ \
482         umask 022; \
483         /usr/bin/update-mime-database %{_datadir}/mime; \
484 }}
485
486 #-----------------------------------------------------------------
487 # Update icon cache
488 # requires: gtk+
489 #
490 %update_icon_cache() {{ \
491         umask 022; \
492         /usr/bin/gtk-update-icon-cache -qf %{_datadir}/icons/%1; \
493 }}
494
495 #-----------------------------------------------------------------
496 # Update scrollkeeper database
497 # requires: scrollkeeper
498 #
499 %scrollkeeper_update_post() \
500         /usr/bin/scrollkeeper-update -q; \
501         %{nil}
502
503 %scrollkeeper_update_postun() \
504 if [ $1 = 0 ]; then \
505         /usr/bin/scrollkeeper-update -q; \
506 fi \
507 %{nil}
508
509 #-----------------------------------------------------------------
510 # post %install sequence:
511 # - autodeps exceptions
512 # - compress all man and info pages,
513 # - strip all ELF executables and ELF shared objects if not %debug.
514 # - compress kernel modules if any
515
516 ###################################################################
517 # Requires/Provides automation
518 # exceptions system by Jacek Konieczny <jajcus@pld.org.pl>
519 #
520 %__noautoreqfiles       %(sed -e s'/#.*//' /etc/rpm/noautoreqfiles)%{?_noautoreqfiles: %{_noautoreqfiles}}
521 %__noautoprovfiles      %(sed -e s'/#.*//' /etc/rpm/noautoprovfiles)%{?_noautoprovfiles: %{_noautoprovfiles}}
522 %__noautoreq            %(sed -e s'/#.*//' /etc/rpm/noautoreq)%{?_noautoreq: %{_noautoreq}}
523 %__noautoreqdep         %(sed -e s'/#.*//' /etc/rpm/noautoreqdep)%{?_noautoreqdep: %{_noautoreqdep}}
524 %__noautoprov           %(sed -e s'/#.*//' /etc/rpm/noautoprov)%{?_noautoprov: %{_noautoprov}}
525 #%_noautocompressdoc    %{nil}
526 #
527 %_missing_doc_files_terminate_build     1%{nil}
528 %_unpackaged_files_terminate_build      %{nil}
529 # (X)emacs support
530 %___emacs_lispdir_helper  -batch -q -eval '(while load-path (princ (concat (car load-path) "\\n")) (setq load-path (cdr load-path)))' 2> /dev/null|sed -n '/\\(.*\\/x\\?emacs\\/site-lisp\\)\\/\\?$/{s,,\\1,p;q;}'
531 %_emacs_lispdir %(emacs %___emacs_lispdir_helper)
532 %_xemacs_lispdir %(xemacs %___emacs_lispdir_helper)
533
534 %__php_provides %{nil}
535 %__php_requires %{nil}
536 %__perl_provides %{nil}
537 %__perl_requires %{nil}
538 %__mono_provides %{nil}
539 %__mono_requires %{nil}
540
541 # Perl specific macro definitions.
542 %perl_privlib           %(eval "`%{__perl} -V:installprivlib`"; echo $installprivlib)
543 %perl_archlib           %(eval "`%{__perl} -V:installarchlib`"; echo $installarchlib)
544 %perl_vendorlib         %(eval "`%{__perl} -V:installvendorlib`"; echo $installvendorlib)
545 %perl_vendorarch        %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)
546 %perl_sitelib           %(eval "`%{__perl} -V:installsitelib`"; echo $installsitelib)
547 %perl_sitearch          %(eval "`%{__perl} -V:installsitearch`"; echo $installsitearch)
548
549 # Ruby
550 %ruby_archdir           %(ruby -r rbconfig -e 'print Config::CONFIG["archdir"]' 2>/dev/null || echo ERROR)
551 %ruby_ridir                     %(ruby -r rbconfig -e 'include Config; print File.join(CONFIG["datadir"], "ri", CONFIG["ruby_version"], "system")' 2>/dev/null || echo ERROR)
552 %ruby_rubylibdir        %(ruby -r rbconfig -e 'print Config::CONFIG["rubylibdir"]' 2>/dev/null || echo ERROR)
553 %ruby_sitearchdir       %(ruby -r rbconfig -e 'print Config::CONFIG["sitearchdir"]' 2>/dev/null || echo ERROR)
554 %ruby_sitelibdir        %(ruby -r rbconfig -e 'print Config::CONFIG["sitelibdir"]' 2>/dev/null || echo ERROR)
555 %ruby_version           %(ruby -r rbconfig -e 'print Config::CONFIG["ruby_version"]' 2>/dev/null || echo ERROR)
556 %ruby_ver_requires_eq   Requires:       ruby(ver) = %ruby_version
557 %ruby_mod_ver_requires_eq       Requires:       ruby-modules(ver) = %ruby_version
558
559 %php_pear_dir           /usr/share/pear
560 %php_extensiondir       %(php-config --extension-dir 2>/dev/null || echo ERROR)
561 %php_sysconfdir         %(php-config --sysconfdir 2>/dev/null || echo ERROR)
562
563 # directory where php includes are installed on system.
564 %__php_includedir               /usr/include/php
565 # extract php/zend api versions
566 %php_major_version              %(awk '/#define PHP_MAJOR_VERSION/{print $3}' %{__php_includedir}/main/php_version.h 2>/dev/null || echo ERROR)
567 %php_api_version                %(awk '/#define PHP_API_VERSION/{print $3}' %{__php_includedir}/main/php.h 2>/dev/null || echo ERROR)
568 %php_pdo_api_version    %(awk '/#define PDO_DRIVER_API/{print $3}' %{__php_includedir}/ext/pdo/php_pdo_driver.h 2>/dev/null || echo ERROR)
569 %php_debug                              %(awk '/#define ZEND_DEBUG/{print $3}' %{__php_includedir}/main/php_config.h 2>/dev/null || echo ERROR)
570 %zend_module_api                %(awk '/#define ZEND_MODULE_API_NO/{print $3}' %{__php_includedir}/Zend/zend_modules.h 2>/dev/null || echo ERROR)
571 %zend_extension_api             %(awk '/#define ZEND_EXTENSION_API_NO/{print $3}' %{__php_includedir}/Zend/zend_extensions.h 2>/dev/null || echo ERROR)
572 %zend_zts                               %(Z=$(grep -sc '^#define ZTS 1' %{__php_includedir}/main/php_config.h); echo ${Z:-ERROR})
573
574 # helper macro
575 %__php_api_requires(v:) Requires: php%{-v*}(%{expand:%1}) = %{expand:%{%{!?2:%{1}}%{?2}}}
576
577 # macros for public use
578 # for php extensions (php-pecl)
579 %requires_php_extension %{__php_api_requires modules_api php_api_version} \
580 %{__php_api_requires zend_module_api} \
581 %{__php_api_requires -v %php_major_version debug php_debug} \
582 %{__php_api_requires -v %php_major_version thread-safety zend_zts}
583
584 # for zend extensions
585 %requires_zend_extension %{__php_api_requires zend_module_api} \
586 %{__php_api_requires zend_extension_api} \
587 %{__php_api_requires -v %php_major_version debug php_debug} \
588 %{__php_api_requires -v %php_major_version thread-safety zend_zts}
589
590 # for php pdo modules (php-pecl-PDO_*)
591 %requires_php_pdo_module %{__php_api_requires PDO_API php_pdo_api_version}
592
593 # for using PHP post scripts. for PHP >= 5.0
594 %php_webserver_restart \
595 [ ! -f /etc/apache/conf.d/??_mod_php.conf ] || %service -q apache restart \
596 [ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart \
597 if [ -f /etc/rc.d/init.d/php-fcgi ]; then \
598         PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \
599         if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php.fcgi* ]]; then \
600                 %service -q php-fcgi restart \
601         fi \
602 fi \
603 %{nil}
604
605 # for using php post scripts. for PHP >= 4.0 && PHP < 5.0
606 %php4_webserver_restart \
607 [ ! -f /etc/apache/conf.d/??_mod_php4.conf ] || %service -q apache restart \
608 [ ! -f /etc/httpd/conf.d/??_mod_php4.conf ] || %service -q httpd restart \
609 if [ -f /etc/rc.d/init.d/php-fcgi ]; then \
610         PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \
611         if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php4.fcgi* ]]; then \
612                 %service -q php-fcgi restart \
613         fi \
614 fi \
615 %{nil}
616
617 # Python specific macro definitions.
618 # python main version
619 %py_ver                 %(python -c "import sys; print sys.version[:3]")
620
621 # directories
622 %py_prefix              %(python -c "import sys; print sys.prefix")
623 %py_libdir              %{py_prefix}/%{_lib}/python%{py_ver}
624 %py_scriptdir   %{py_prefix}/share/python%{py_ver}
625 %py_incdir              /usr/include/python%{py_ver}
626 %py_sitedir             %{py_libdir}/site-packages
627 %py_sitescriptdir %{py_scriptdir}/site-packages
628 %py_dyndir              %{py_libdir}/lib-dynload
629
630 # pure python modules compilation
631 %py_comp                python -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
632
633 %py_ocomp               python -O -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
634
635 # Software written in Python language require Python with main version
636 %pyrequires_eq() Requires:      %1
637
638 # Hardlink binary identical .pyc and .pyo files
639 # (idea by glen <at> pld-linux <dot> org)
640 %__spec_install_post_py_hardlink {\
641 %{!?no_install_post_py_hardlink: __spec_install_post_py_hardlink() { \
642 [ ! -d "$RPM_BUILD_ROOT" ] || find "$RPM_BUILD_ROOT" -name '*.pyc' | while read a; do \
643         b="$(echo $a|sed -e 's/.pyc$/.pyo/')"; \
644         if cmp -s "$a" "$b"; then \
645                 ln -f "$a" "$b"; \
646         fi; \
647 done \
648 }; __spec_install_post_py_hardlink } }
649
650 # remove python sources, so that check-files won't complain
651 # (idea by glen <at> pld-linux <dot> org)
652 %py_postclean() \
653 for d in %{py_sitescriptdir} %{py_sitedir} %*; do \
654  [ ! -d "$RPM_BUILD_ROOT$d" ] || find "$RPM_BUILD_ROOT$d" -name '*.py' -print0 | xargs -0r -l512 rm;\
655 done \
656 %{nil}
657
658 # depmod macro
659 %depmod() { \
660 umask 022; \
661 if [ -e /boot/System.map-%1 ]; then \
662         /sbin/depmod -a -F /boot/System.map-%1 %1; \
663 else \
664         if [ -e /boot/System.map ]; then \
665                 /sbin/depmod -a -F /boot/System.map %1; \
666         else \
667                 /sbin/depmod -a %1; \
668         fi \
669 fi; \
670 }
671
672 # XMMS specific macros
673 %xmms_prefix                    %(xmms-config --prefix 2>/dev/null)
674 %xmms_exec_prefix               %(xmms-config --exec-prefix 2>/dev/null)
675 %xmms_version                   %(xmms-config --version 2>/dev/null)
676 %xmms_datadir                   %(xmms-config --data-dir 2>/dev/null)
677 %xmms_plugindir                 %(xmms-config --plugin-dir 2>/dev/null)
678 %xmms_visualization_plugindir   %(xmms-config --visualization-plugin-dir 2>/dev/null)
679 %xmms_input_plugindir           %(xmms-config --input-plugin-dir 2>/dev/null)
680 %xmms_output_plugindir          %(xmms-config --output-plugin-dir 2>/dev/null)
681 %xmms_effect_plugindir          %(xmms-config --effect-plugin-dir 2>/dev/null)
682 %xmms_general_plugindir         %(xmms-config --general-plugin-dir 2>/dev/null)
683
684 %_target_base_arch      %(echo %{_target_cpu} | sed 's/i.86/i386/;s/athlon/i386/;s/pentium./i386/;s/amd64/x86_64/;s/ia32e/x86_64/')
685
686 # user/group checking macros
687 #
688 # Usage:
689 #       %userremove myuser
690 #
691 %userremove     /usr/lib/rpm/user_group.sh user del
692 %groupremove    /usr/lib/rpm/user_group.sh group del
693 #
694 # Usage:
695 #       if %usertestrm myuser; then
696 #               /usr/sbin/userdel -r myuser
697 # Note:
698 #       use these macros only if you need to call userdel/groupdel with
699 #       a non-standard option or take an extra action; otherwise use the
700 #       %userremove/%groupremove macros
701 #
702 %usertestrm     /usr/lib/rpm/user_group.sh user testrm
703 %grouptestrm    /usr/lib/rpm/user_group.sh group testrm
704 # user group membership management macros
705 #
706 # Usage:
707 #       %addusertogroup myuser agroup
708 #
709 %addusertogroup /usr/lib/rpm/user_group.sh user addtogroup
710
711 # banner support (useful in {pre,post}{,un} and triggers)
712 #
713 # Usage:
714 #       %banner name [-a] [-e] [-n] [-tn] <<EOF
715 # the banner text, the banner text
716 # the banner text, and following line
717 #EOF
718 # You can use any form of here-document, <<'EOF' <<-EOT will do.
719 # NOTE: if your use "<<-EOF", then You can actually indent inside here-document.
720 #
721 # -a   - append to the banner
722 # -e   - send to stderr instead of stdout
723 # -n   - no show banner (overrides -t)
724 # -t   - show only, if RPM_SCRIPTVERBOSITY >= n; default n=5
725 %banner(aent:)  \
726 RPM_SCRIPTVERBOSITY=5 \
727 [ -r /etc/sysconfig/rpm ] && . /etc/sysconfig/rpm \
728 if [ -x /usr/bin/banner.sh ]; then \
729         CMD="/usr/bin/banner.sh %{-e:--stderr} %{!-n:$([ $RPM_SCRIPTVERBOSITY -ge %{-t:%{-t*}}%{!-t:5} ] && echo -s)} %{!-a:-m}%{-a:-M} %1" \
730 else \
731         CMD="cat%{-e: >&2}" \
732 fi \
733 eval $CMD %2%{?3: %3} \
734 %nil
735
736 # useradd/groupadd macros
737 # Author: Elan Ruusamäe <glen@pld-linux.org>
738 #
739 # Usage:
740 #   %useradd [-P package] [-u uid] [-d home_dir] [-s shell] [-c comment]
741 #   [-g initial_group] [-G group[,...]] login
742 #
743 #  -u uid. REQUIRED
744 #  -g gid/group. REQUIRED
745 #  -s defaults to /bin/false
746 #  -d defaults to /usr/share/empty
747 #  -c No default
748 #  -r is accepted but ignored (it's always set)
749 #  -k skeleton dir. defaults to /usr/share/empty
750 # rpm specific flags
751 #  -P package name. defaults to %{name}
752 #
753 %useradd(c:d:e:f:g:G:Mmk:op:s:u:rP:) \
754 %{!-u:%{error:useradd: Required argument -u missing}} \
755 %{!-g:%{error:useradd: Required argument -g missing}} \
756 %{!?1:%{error:useradd: Required parameter login missing}} \
757 if [ -n "`/bin/id -u %{expand:%{%{#}}} 2>/dev/null`" ]; then \
758         if [ "`/bin/id -u %{expand:%{%{#}}}`" != "%{-u*}" ]; then \
759                 echo "Error: user %{expand:%{%{#}}} doesn't have uid=%{-u*}. Correct this before installing %{-P*}%{!?-P:%{name}}." 1>&2 \
760                 exit 1 \
761         fi \
762 else \
763         echo "Adding user %{expand:%{%{#}}} UID=%{-u*}." \
764         /usr/sbin/useradd \\\
765                 %{-m:-m -k %{-k*}%{!-k:/usr/share/empty}} \\\
766                 -u %{-u*} \\\
767                 -r \\\
768                 -d %{-d*}%{!-d:/usr/share/empty} \\\
769                 -s %{-s*}%{!-s:/bin/false} \\\
770                 %{-c:-c "%(set -- %{-c*} %{*}; echo $1)"}\\\
771                 -g %{-g*} \\\
772                 %{-M} \\\
773                 %{-G:-G %{-G*}} \\\
774                 %{expand:%{%{#}}} 1>&2 || exit $? \
775         [ ! -x /usr/sbin/nscd ] || /usr/sbin/nscd -i passwd || : \
776 fi;
777
778 # Usage:
779 #   %groupadd [-P package] [-g gid] group
780 #
781 # -g gid. REQUIRED
782 #
783 # Sample:
784 #   %groupadd -P %{name}-base -g %{gid} %{name}
785
786 %groupadd(g:P:rfo)      \
787 %{!-g:%{error:groupadd: Required argument -g missing}} \
788 %{!?1:%{error:groupadd: Required parameter group missing}} \
789 if [ -n "`/usr/bin/getgid %{1}`" ]; then \
790         if [ "`/usr/bin/getgid %{1}`" != "%{-g*}" ]; then \
791                 echo "Error: group %{1} doesn't have gid=%{-g*}. Correct this before installing %{-P*}%{!?-P:%{name}}." 1>&2 \
792                 exit 1 \
793         fi \
794 else \
795         echo "Adding group %{1} GID=%{-g*}." \
796         /usr/sbin/groupadd -g %{-g*} -r %{1} 1>&2 || exit $? \
797         [ ! -x /usr/sbin/nscd ] || /usr/sbin/nscd -i group || : \
798 fi;
799
800 # apache_config_{install/uninstall} macros *DEPRECATED*
801 # Author: Elan Ruusamäe <glen@pld-linux.org>
802 #
803 # You should use webapp macros instead. these are here until single piece of
804 # them is gone from specs ;)
805 #
806 # The config is installed/removed inside trigger, this means that you can any
807 # time install apache1 or apache package and the configuration file is updated.
808 # if you don't need the config for various reason for specific apache, just
809 # remove the symlink from apache config directory. the trigger will not put the
810 # config again to that version of apache. In other words the config is linked
811 # to apache config directory on first install of PACKAGE or apache.
812 #
813 # should be called in trigger body:
814 #  %triggerin -- apache1 >= 1.3.33-2
815 #  %apache_config_install -v 1
816 #
817 # Add package's apache config to apache config.
818 #
819 # Usage:
820 #   %apache_config_install -v {1|2} -c %{_sysconfdir}/apache-%{name}.conf -n 99
821 #
822 #  -v REQUIRED: specify apache version. can be 1 or 2.
823 #  -c OPTIONAL: specify full path to PACKAGE's config. Defaults to %{_sysconfdir}/apache-%{name}.conf.
824 #  -n OPTIONAL: specify config "slot". defaults to 99
825 #  -f OPTIONAL: force symlink creation regardless if package was upraded. useful in triggers
826 #
827 # Internal macros. don't use ;).
828 # expands apache config dir by apache version at build time.
829 %__apache_confdir() %(if [ %{1} = 1 ]; then echo /etc/apache/conf.d; elif [ %{1} = 2 ]; then echo /etc/httpd/httpd.conf; else echo >&2 Unknown apache version specified; fi)
830 # expands apache service name by apache version at build time.
831 %__apache_svcname() %(if [ %{1} = 1 ]; then echo apache; elif [ %{1} = 2 ]; then echo httpd; else echo >&2 Unknown apache version specified; fi)
832
833 %apache_config_install(fv:c:n:) \
834 %{!-v:%{error:apache_config_install: Required argument -v missing}} \
835 %{?debug:set -x; echo "apache_config_install:%{-v*} %{name}-%{version}-%{release} 1:[$1]; 2:[$2]"} \
836 if [ -n "%{-f:1}" ] || ([ "$1" = "1" ] && [ "$2" = "1" ]) && [ -d %{__apache_confdir %{-v*}} ]; then\
837         ln -sf %{-c*}%{!-c:%{_sysconfdir}/apache-%{name}.conf} %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf\
838 fi\
839 # reload apache if the config symlink is there\
840 if [ -L %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf ]; then\
841         # additionally don't reload if target package (the webserver) is upgraded, as webserver is restarted anyway in %post \
842         if [ "$2" != "2" ] && [ -f /var/lock/subsys/%{__apache_svcname %{-v*}} ]; then\
843                 /etc/rc.d/init.d/%{__apache_svcname %{-v*}} reload 1>&2\
844         fi\
845 fi\
846 %{nil}
847
848 # Remove package's apache config from apache config.
849 #
850 # Usage:
851 #   %apache_config_uninstall -v {1|2} -n 99
852 #
853 #  -v REQUIRED: specify apache version. can be 1 or 2.
854 #  -n OPTIONAL: specify config "slot". defaults to 99
855 %apache_config_uninstall(v:n:) \
856 %{!-v:%{error:apache_config_uninstall: Required argument -v missing}} \
857 %{?debug:set -x; echo "apache_config_uninstall:%{-v*} %{name}-%{version}-%{release}: 1:[$1]; 2:[$2]"} \
858 # remove link if either of the packages are gone \
859 if [ "$1" = "0" ] || [ "$2" = "0" ]; then \
860         if [ -L %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf ]; then \
861                 rm -f %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf \
862                 if [ -f /var/lock/subsys/%{__apache_svcname %{-v*}} ]; then \
863                         /etc/rc.d/init.d/%{__apache_svcname %{-v*}} reload 1>&2 \
864                 fi \
865         fi \
866 fi \
867 %{nil}
868
869 # webapp macros
870 # Author: Elan Ruusamäe <glen@pld-linux.org>
871 #
872 # The config is installed/removed inside trigger, this means that you can any
873 # time install apache1/apache/lighttpd package and the configuration file is
874 # updated. if you don't need the config for various reason for specific
875 # webserver, just remove the symlink from config directory using webapp
876 # program. the trigger will not recreate the symlink on upgrades. In other
877 # words the config is linked to webserver config directory on first install of
878 # PACKAGE or WEBSERVER.
879 #
880 # Add package's webserver config to webserver webapps dir.
881 # Usage:
882 #   %webapp_register WEBSERVER WEBAPP
883 #
884 %webapp_register() \
885 %{?debug:set -x; echo "webapp_register: %{name}-%{version}-%{release} 1:[$1]; 2:[$2]"} \
886 if [ "$1" = "1" ] && [ "$2" = "1" ]; then\
887         /usr/sbin/webapp register %1 %2\
888 fi\
889 # reload webserver if the config symlink is there and skip reload if webserver is upgraded\
890 if [ -L /etc/%1/webapps.d/%(echo "%2" | tr '/' '-').conf ] && [ "$2" -lt "2" ]; then\
891         %{expand:%service -q %%1 reload}\
892 fi\
893 %{nil}
894
895 # Remove package's config from webserver webapps dir.
896 # Usage:
897 #   %webapp_register [-f] WEBSERVER WEBAPP
898 %webapp_unregister(f) \
899 %{?debug:set -x; echo "webapp_unregister: %{name}-%{version}-%{release}: 1:[$1]; 2:[$2]"} \
900 # remove link if either of the packages are gone \
901 if [ -n "%{-f:1}" ] || [ "$1" = "0" ] || [ "$2" = "0" ] && [ -L /etc/%1/webapps.d/%(echo "%2" | tr '/' '-').conf ]; then \
902         /usr/sbin/webapp unregister %1 %2\
903         %{expand:%service -q %%1 reload}\
904 fi \
905 %{nil}
906
907 # see browser-plugins.spec / template-browser-plugin.spec
908 # Author: Elan Ruusamäe <glen@pld-linux.org>
909 %nsplugin_install(d:f) { \
910 # create link if it's first install of either of the packages \
911 if [ -n "%{-f:1}" ] || ([ "$1" = "1" ] && [ "$2" = "1" ] && [ -d %{-d*} ]); then \
912 ( \
913 %( \
914         for file in %{*}; do \
915                 echo echo Installing $file to %{-d*}; \
916                 echo "ln -sf %{_libdir}/browser-plugins/$file %{-d*};"; \
917         done ) \
918 ) | ( %banner -t 5 -e %{name}-in ); fi; \
919 }
920
921 %nsplugin_uninstall(d:) { \
922 # remove link if either of the packages are gone \
923 if [ "$1" = "0" ] || [ "$2" = "0" ]; then \
924 ( \
925 %( \
926         for file in %{*}; do \
927                 echo echo Removing $file from %{-d*}; \
928                 echo "rm -f %{-d*}/$file;"; \
929         done ) \
930 ) | ( %banner -t 5 -e %{name}-un ); fi; \
931 }
932
933 # service macro.
934 # Author: Elan Ruusamäe <glen@pld-linux.org>
935 #
936 # calls usual service restart on package %post, but skips the restart if
937 # administrator has disabled automatic service restarts in either global
938 # /etc/sysconfig/rpm or per service /etc/sysconfig/SERVICE file.
939 #
940 # Usage:
941 #   %service [-q] SERVICE ACTION ["SERVICE NICE DESCRIPTION"]
942 #
943 #  -q be silent when service isn't started (for scriplets restaring other package's services)
944 #
945 %service(q) {{%(export quiet=%{-q:1}; /usr/lib/rpm/service_generator.sh %{*}) };}
946
947
948 # Java macros. based on jpackage macros.java
949 #
950 # Root directory where all Java VMs/SDK/JREs are installed.
951 %_jvmdir                %{_libdir}/jvm
952
953 # Root directory where all Java VMs/SDK/JREs expose their jars
954 %_jvmjardir             %{_libdir}/jvm-exports
955
956 # Root directory for all Java VM/SDK/JRE's private things.
957 %_jvmprivdir    %{_libdir}/jvm-private
958
959 # Root directory for all architecture dependent parts of Java VM/SDK/JRE's
960 %_jvmlibdir             %{_libdir}/jvm
961
962 # Root directory for all architecture independent parts of Java VM/SDK/JRE's
963 %_jvmdatadir    %{_datadir}/jvm
964
965 # Root directory for all configurations parts of Java VM/SDK/JRE's
966 %_jvmsysconfdir %{_sysconfdir}/jvm
967
968 # Root directory for all common architecture dependent parts of Java VM/SDK/JRE's
969 %_jvmcommonlibdir       %{_libdir}/jvm-common
970
971 # Root directory for all common architecture independent parts of Java VM/SDK/JRE's
972 %_jvmcommondatadir      %{_datadir}/jvm-common
973
974 # Root directory for all common configurations parts of Java VM/SDK/JRE's
975 %_jvmcommonsysconfdir   %{_sysconfdir}/jvm-common
976
977 # Directory where arch-specific (JNI) version-independent jars are installed.
978 %_jnidir                %{_libdir}/java
979
980
981 %java_home              %([ -f %{_javadir}-utils/java-functions ] || { echo ERROR; exit 0; }; unset JAVA_HOME; . %{_javadir}-utils/java-functions; set_jvm; echo ${JAVA_HOME:-ERROR})
982
983 %ant                    JAVA_HOME=%{java_home} ant
984 %jar                    %{java_home}/bin/jar
985 %java                   %([ -f %{_javadir}-utils/java-functions ] || { echo ERROR; exit 0; }; unset JAVACMD; . %{_javadir}-utils/java-functions; set_javacmd; echo $JAVACMD)
986 %javac                  %{java_home}/bin/javac
987 %javadoc                %{java_home}/bin/javadoc
988
989 %add_jvm_extension      JAVA_LIBDIR=%{buildroot}/%{_javadir}    %{_bindir}/jvmjar -l
990
991 %jpackage_script() \
992 install -d $RPM_BUILD_ROOT%{_bindir}\
993 cat > $RPM_BUILD_ROOT%{_bindir}/%5 << 'EOF' \
994 #!/bin/sh\
995 #\
996 # %{name} script\
997 # JPackage Project <http://www.jpackage.org/>\
998 \
999 # Source functions library\
1000 . %{_javadir}-utils/java-functions\
1001 \
1002 # Source system prefs\
1003 if [ -f %{_sysconfdir}/java/%{name}.conf ]; then\
1004     . %{_sysconfdir}/java/%{name}.conf\
1005 fi\
1006 \
1007 # Source user prefs\
1008 if [ -f $HOME/.%{name}rc ]; then\
1009     . $HOME/.%{name}rc\
1010 fi\
1011 \
1012 # Configuration\
1013 MAIN_CLASS=%1\
1014 BASE_FLAGS=%2\
1015 BASE_OPTIONS=%3\
1016 BASE_JARS="%(echo %4 | tr ':' ' ')"\
1017 \
1018 # Set parameters\
1019 set_jvm\
1020 set_classpath $BASE_JARS\
1021 set_flags $BASE_FLAGS\
1022 set_options $BASE_OPTIONS\
1023 \
1024 # Let's start\
1025 run "$@"\
1026 EOF
1027
1028 # PEAR install macros
1029 # Author: Elan Ruusamäe <glen@pld-linux.org>
1030 #
1031 # Usage:
1032 #       %%pear_package_setup [-a #] [-n FMT]
1033 #
1034 # -a #   - also unpack SOURCE#. for PEAR bootstrapping
1035 # -n FMT - create builddir with FMT, instead of default %%{_pearname}-%%{version}
1036 # -z     - unpack pear package and let pear use package.xml (not tarball) for install. for PEAR bootstrapping
1037 #
1038 # unpack PEAR package to %%{_builddir}/FMT. package is extracted with already
1039 # destination hierarchy. you should copy the tree to buildroot after
1040 # patching/reorganizing with %%pear_package_install.
1041 #
1042 # additionally BUILDROOT is stripped from files and files are converted to UNIX
1043 # line endings.
1044 #
1045 # the pear install process output is recorded to install.log, you should put it
1046 # to %%doc for later debug or just for information.
1047 #
1048 # additionally additional-packages.txt is produced if it was detected that the
1049 # package has optional dependencies. the file format is suitable of displaying
1050 # in %%post of a package. you should put this file to %%doc. noautocompressdoc is
1051 # automatically added for this file.
1052
1053
1054 # records install.log and transforms PEAR names to PLD Linux rpm package names.
1055 %__pear_install_log \
1056 tee install.log \
1057 # make post message of optional packages \
1058 grep 'can optionally use' install.log | sed -e 's,package "pear/,package "php-pear-,g;s,^pear/,php-pear-,' > optional-packages.txt \
1059 if [ -s optional-packages.txt ]; then \
1060         awk -F'"' '/use package/{print $2}' optional-packages.txt | sed -e "s,_,/,g;s,php-pear-, 'pear(,;s,$,.*)'," | tr -d '\\\n' > _noautoreq \
1061 else \
1062         rm -f optional-packages.txt \
1063 fi \
1064 %{nil}
1065
1066 # command invoking pear cli
1067 %__pear /usr/bin/pear
1068
1069 # The main macro.
1070 # using this macro will append optional-packages.txt to the nocompressdoc list
1071 # as it's displayed to user after package install. and adding additional gzip
1072 # dep is just waste ;)
1073 %pear_package_setup(a:n:zD) \
1074 %define srcdir %{-n*}%{!-n:%{_pearname}-%{version}} \
1075 %define builddir %{_builddir}/%{srcdir} \
1076 %setup -q -c -T %{-D:-D} -n %{srcdir} \
1077 %{-z:tar zxf %{S:0}; %{-a:tar zxf %{S:%{-a*}}}} \
1078 %{-z:_P=package2.xml; [ -f $_P ] || _P=package.xml; _N=%{srcdir}; mv $_P $_N; cd $_N} \
1079 %__pear \\\
1080         -c pearrc \\\
1081         -d doc_dir=/docs \\\
1082         -d php_dir=%{php_pear_dir} \\\
1083         -d bin_dir=%{_bindir} \\\
1084         -d data_dir=%{php_pear_dir}/data \\\
1085         -d test_dir=%{php_pear_dir}/tests \\\
1086         install \\\
1087         --packagingroot=%{builddir} \\\
1088         --offline \\\
1089         --nodeps \\\
1090         %{-f:--force} \\\
1091         %{!-z:%{S:%{-a*}%{!-a:0}}}%{-z:$_P} > .install.log || { c=$?; cat .install.log; exit $c; } \
1092 %{-z:cd ..} \
1093 cat %{-z:$_N/}.install.log | %__pear_install_log \
1094 \
1095 # undos sources \
1096 find . -type f -print0 | xargs -0 sed -i -e 's,\\r$,,' \
1097 %{!?_noautocompressdoc:%global _noautocompressdoc %{nil}}%{expand:%%global _noautocompressdoc %{_noautocompressdoc} optional-packages.txt} \
1098 %{!?_noautoprov:%global _noautoprov %{nil}}%{expand:%%global _noautoprov %{_noautoprov} 'pear(tests/.*)'} \
1099 %{nil}
1100
1101 # Copies exctracted PEAR package structure and PEAR registry to buildroot.
1102 # Author: Elan Ruusamäe <glen@pld-linux.org>
1103 %pear_package_install() \
1104 cp -a ./%{php_pear_dir}/{.registry,*} $RPM_BUILD_ROOT%{php_pear_dir} \
1105 find $RPM_BUILD_ROOT%{php_pear_dir} '(' -name '*~' -o -name '*.orig' ')' | xargs -r rm -v \
1106 # help the developer out a little: \
1107 if [ -f _noautoreq ]; then \
1108         echo "AutoReqdep detected:" \
1109         echo "_noautoreq $(cat _noautoreq)" \
1110 fi \
1111 %{nil}
1112
1113
1114 # Register OpenLDAP schema.
1115 # Author: Elan Ruusamäe <glen@pld-linux.org>
1116 #
1117 # Usage:
1118 #   %%openldap_schema_register [-d core,nis] %{schemadir}/horde.schema
1119 #
1120 #  -d specify dependant schemas, separated by comma
1121 #
1122 %openldap_schema_register(d:) \
1123 for schema in %*; do \
1124         if ! grep -q "$schema" /etc/openldap/slapd.conf; then \
1125                 %{__sed} -i -e " \
1126                         /^include.*local.schema/{ \
1127                                 iinclude\\t     $schema\
1128                         } \
1129                 " /etc/openldap/slapd.conf \
1130         fi \
1131 done \
1132 # enable dependant schemas \
1133 if [ "%{-d*}" ]; then \
1134         %{__sed} -i -e ' \
1135         /^#include.*\\(%(echo '%{-d*}' | %{__sed} -e 's/,/\\\\|/g')\\)\\.schema/{ \
1136                 s/^#// \
1137         }' /etc/openldap/slapd.conf \
1138 fi \
1139 %{nil}
1140
1141 # Unregister OpenLDAP schema.
1142 # Author: Elan Ruusamäe <glen@pld-linux.org>
1143 #
1144 # Usage:
1145 #   %%openldap_schema_unregister %{schemadir}/horde.schema
1146 #
1147 %openldap_schema_unregister() \
1148 for schema in %*; do \
1149         if grep -q "$schema" /etc/openldap/slapd.conf; then \
1150                 %{__sed} -i -e " \
1151                 /^include.*$(echo "$schema" | %{__sed} -e 's,/,\\\\/,g')/d \
1152                 # for symmetry it would be nice if we disable enabled schemas in post, \
1153                 # but we really can not do that, it would break something else. \
1154                 " /etc/openldap/slapd.conf \
1155         fi \
1156 done \
1157 %{nil}
1158
1159 %env_update [ ! -x /sbin/env-update ] || /sbin/env-update -u || :
1160
1161
1162 # Build modules for kernels 2.6
1163 # Author: Przemyslaw Iskra <sparky@pld-linux.org>
1164 #
1165 # Usage:
1166 #       %build_kernel_modules -m <modules> -C <directory>
1167 #
1168 #  remember that proper Makefile is still required
1169 # Options:
1170 #  -m <modules> (required) -- comma-separated list of modules to save,
1171 #               without .ko extension, may be placed in subdirectory
1172 #  -C <directory> -- change to <directory> before doing anything
1173 #  -p <arg>, -P <arg> -- arguments passeed to make scripts
1174 #  -c -- do not execute make clean
1175 #  <additional arguments> -- all additional arguments will be passed to
1176 #               make modules
1177 #
1178 # Additional patching supported via here document. Try:
1179 #       %build_kernel_modules -m module <<'EOF'
1180 #       your patch script here
1181 #       EOF
1182 # Don't use it unless patching depends on config options.
1183
1184 # Developer note: don't touch it unless you know how to handle '\'.
1185 # - \ in script expands to nothing
1186 # - \\\ in script expands to \
1187 # - \\\ inside definition expands to nothing
1188 # - \\\\\\\ inside definition expands to \
1189 # - in last line \ has to touch arguments so arguments passing
1190 #   in new lines (using \) will be supported
1191
1192 %build_kernel_modules(p:P:m:C:c)                                                                        \
1193 %{!?-m:%{error:%{0}: Required module name/list missing} exit 1}         \
1194                                                                                                                                         \
1195 %define Opts                                                                                                            \\\\\\\
1196 %if "%{_target_base_arch}" != "%{_arch}"                                                        \\\
1197         %if "%{_arch}" == "x86_64" && "%{_target_base_arch}" == "i386"  \\\
1198         CC="%{__cc}" CPP="%{__cpp}" ARCH=%{_target_base_arch}                   \\\
1199         %else                                                                                                                   \\\
1200         ARCH=%{_target_base_arch} CROSS_COMPILE=%{_target_cpu}-pld-linux- \\\
1201         %endif                                                                                                                  \\\
1202 %else                                                                                                                           \\\
1203         CC="%{__cc}" CPP="%{__cpp}"                                                                             \\\
1204 %endif                                                                                                                          \
1205 %define MakeOpts HOSTCC="%{__cc}" SYSSRC=%{_kernelsrcdir} SYSOUT=$PWD/o \\\\\\\
1206                 O=$PWD/o %{?with_verbose:V=1} %{Opts}                                           \
1207                                                                                                                                         \
1208 %{?-C:cd %{-C*}}                                                                                                        \
1209 compile() {                                                                                                                     \
1210         L="<"; [[ '%{*}' != *$L$L* ]] || PATCH_SH="set -x -e;$(cat)"    \
1211         set -e -x                                                                                                               \
1212                                                                                                                                         \
1213 for cfg in %{?with_dist_kernel:%{?with_smp:smp} %{?with_up:up}}%{!?with_dist_kernel:nondist}; do \
1214         [ -r "%{_kernelsrcdir}/config-$cfg" ] || exit 1                                 \
1215                                                                                                                                         \
1216         rm -rf o                                                                                                                \
1217         install -d o/include/linux                                                                              \
1218         ln -sf %{_kernelsrcdir}/config-$cfg o/.config                                   \
1219         ln -sf %{_kernelsrcdir}/Module.symvers-$cfg o/Module.symvers    \
1220         ln -sf %{_kernelsrcdir}/include/linux/autoconf-$cfg.h o/include/linux/autoconf.h \
1221 %ifarch ppc ppc64                                                                                                       \
1222         install -d o/include/asm                                                                                \
1223         [ ! -d %{_kernelsrcdir}/include/asm-powerpc ] || ln -sf %{_kernelsrcdir}/include/asm-powerpc/* o/include/asm    \
1224         [ ! -d %{_kernelsrcdir}/include/asm-%{_target_base_arch} ] || ln -snf %{_kernelsrcdir}/include/asm-%{_target_base_arch}/* o/include/asm \
1225 %else                                                                                                                           \
1226         ln -sf %{_kernelsrcdir}/include/asm-%{_target_base_arch} o/include/asm \
1227 %endif                                                                                                                          \
1228                                                                                                                                         \
1229         set +x                                                                                                                  \
1230         [ -z "$PATCH_SH" ] || echo "$PATCH_SH" | %__spec_build_shell    \
1231         set -x                                                                                                                  \
1232                                                                                                                                         \
1233         %if %{with dist_kernel}                                                                                 \
1234                 %{__make} -j1 -C %{_kernelsrcdir} prepare scripts                       \\\
1235                         %{-p*} %{-P*}                                                                                   \\\
1236                         %{MakeOpts}                                                                                             \
1237         %else                                                                                                                   \
1238                 install -d o/include/config                                                                     \
1239                 touch o/include/config/MARKER                                                           \
1240                 ln -sf %{_kernelsrcdir}/scripts o/scripts                                       \
1241         %endif                                                                                                                  \
1242                                                                                                                                         \
1243         %{!?-c:%{__make} -C %{_kernelsrcdir} clean                                              \\\
1244                 RCS_FIND_IGNORE="-name '*.ko' -o"                                                       \\\
1245                 M=$PWD %{MakeOpts}}                                                                                     \
1246         %{__make} -C %{_kernelsrcdir} modules                                                   \\\
1247                 ${1+"$@"}                                                                                                       \\\
1248                 M=$PWD %{MakeOpts}                                                                                      \
1249                                                                                                                                         \
1250         for MODULE in {%{-m*},}; do                                                                             \
1251                 [ -z "${MODULE}" ] || mv ${MODULE}{,-$cfg}.ko                           \
1252         done                                                                                                                    \
1253 done                                                                                                                            \
1254 %{?-C:cd -}                                                                                                                     \
1255 }                                                                                                                                       \
1256 compile %{*}\
1257 %{nil}
1258
1259
1260 # Install kernel modules built by %build_kernel_modules
1261 # Author: Przemyslaw Iskra <sparky@pld-linux.org>
1262 #
1263 # Usage:
1264 #       %install_kernel_modules -m <modules> -d <directory>
1265 #
1266 # Options:
1267 #  -m <modules> (required) -- comma-separated list of modules to install,
1268 #               without .ko extension, may be placed in subdirectory
1269 #  -d <directory> (required) -- in what subdirectory modules should be
1270 #               installed (eg. misc, kernel/drivers/net)
1271 #  -s <suffix> -- suffix to use when installing modules, useful when module
1272 #               with same name exists in kernel already
1273 #  -n <file> -- name of modprobe config file to use (without .conf extension)
1274 #               for definig aliases, only useful with -s
1275
1276 %install_kernel_modules(m:d:s:n:)                                                                       \
1277 %{!?-m:%{error:%{0}: Required module name (-m) missing}exit 1}          \
1278 %{!?-d:%{error:%{0}: Required module directory missing}exit 1}          \
1279 %{?-n:%{!?-s:%{error:%{0}: Modprobe .conf file requires module suffix}exit 1}} \
1280                                                                                                                                         \
1281 %define KernelD $RPM_BUILD_ROOT/lib/modules/%{_kernel_ver}                      \
1282 %define ModprobeD $RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d/%{_kernel_ver} \
1283                                                                                                                                         \
1284 install -d %{KernelD}{,smp}/%{-d*}                                                                      \
1285 %{?-s:install -d %{ModprobeD}{,smp}}                                                            \
1286                                                                                                                                         \
1287 for MODULE in {%{-m*},}; do                                                                                     \
1288         [ -n "${MODULE}" ] || continue                                                                  \
1289         MNAME=${MODULE##*/}                                                                                             \
1290         %if %{without dist_kernel}                                                                              \
1291                 install ${MODULE}-nondist.ko                                                            \\\
1292                         %{KernelD}/%{-d*}/${MNAME}%{-s:-%{-s*}}.ko                              \
1293                 %{?-s:echo "alias ${MNAME} ${MNAME}-%{-s*}"                                     \\\
1294                         >> %{ModprobeD}/%{-n*}.conf}                                                    \
1295         %else                                                                                                                   \
1296         %if %{with up}                                                                                                  \
1297                 install ${MODULE}-up.ko                                                                         \\\
1298                         %{KernelD}/%{-d*}/${MNAME}%{-s:-%{-s*}}.ko                              \
1299                 %{?-s:echo "alias ${MNAME} ${MNAME}-%{-s*}"                                     \\\
1300                         >> %{ModprobeD}/%{-n*}.conf}                                                    \
1301         %endif                                                                                                                  \
1302         %if %{with smp}                                                                                                 \
1303                 install ${MODULE}-smp.ko                                                                        \\\
1304                         %{KernelD}smp/%{-d*}/${MNAME}%{-s:-%{-s*}}.ko                   \
1305                 %{?-s:echo "alias ${MNAME} ${MNAME}-%{-s*}"                                     \\\
1306                         >> %{ModprobeD}smp/%{-n*}.conf}                                                 \
1307         %endif                                                                                                                  \
1308         %endif                                                                                                                  \
1309 done                                                                                                                            \
1310 %{nil}
1311
1312 # patchset macros
1313 # Author: Elan Ruusamäe <glen@pld-linux.org>
1314 #
1315 # Usage:
1316 #   %patchset_source -f <seq(1) format> <start> [<end>]
1317 #   %patchset_patch <start> [<end>]
1318 #
1319 # If <end> is omited, it is assumed to be <start>.
1320 #
1321 # For example in preamble:
1322 #  %patchset_source -f ftp://ftp.vim.org/pub/editors/vim/patches/7.0/7.0.%03g 33 44
1323 # and in %prep:
1324 #  %patchset_patch 33 44
1325
1326 # generate SourceX urls from range START STOP
1327 # Format can be SINGLE format char of %e, %f, %g, see seq(1)
1328 # The sources start from 10000
1329 %patchset_source(f:b:) %(
1330         base=%{-b*}%{!-b*:10000};
1331         start=$(expr $base + %1);
1332         end=$(expr $base + %{?2}%{!?2:%{1}});
1333         # we need to call seq twice as it doesn't allow two formats
1334         seq -f 'Patch%g:' $start $end > %{tmpdir}/__ps1;
1335         seq -f '%{-f*}' %1 %{?2}%{!?2:%{1}} > %{tmpdir}/__ps2;
1336         paste %{tmpdir}/__ps{1,2};
1337         rm -f %{tmpdir}/__ps{1,2};
1338 ) \
1339 %{nil}
1340
1341 # apply sources from %patchset_source
1342 # -p specify -pX for %patch line
1343 # -b base offset: defaults to 10000
1344 %patchset_patch(f:p:b:) %(
1345         base=%{-b*}%{!-b*:10000};
1346         start=$(expr $base + %1);
1347         end=$(expr $base + %{?2}%{!?2:%{1}});
1348         echo ": patchset_patch %1%{?2: to %2}";
1349         seq -f 'patch%g %{-p*:-p%{-p*}}' $start $end | sed -e s,^,%%,;
1350 ) \
1351 %{nil}
1352
1353 # browser plugins v2
1354 # Author: Elan Ruusamäe <glen@pld-linux.org>
1355 #
1356 # Usage:
1357 #       %browser_plugins_add_browser <name> -p <plugindir>
1358 #
1359 #  <name> (required) -- name of the browser. usually %{name}.
1360 #  -p <plugindir> (required) -- in what directory browser searches for its plugins.
1361 #  -b -- default blacklists
1362 #  -a <arch> override arch
1363 #
1364 # Example:
1365 #   %browser_plugins_add_browser %{name} -p %{_firefoxdir}/plugins
1366
1367 %_browserpluginsconfdir         /etc/browser-plugins
1368 %_browserpluginsdir                     %{_libdir}/browser-plugins
1369 %update_browser_plugins         /usr/sbin/update-browser-plugins || :
1370
1371 %browser_plugins_add_browser(p:b:a:) \
1372         browser=%1.%{!-a:%{_target_base_arch}}%{-a*} \
1373         install -d $RPM_BUILD_ROOT%{_browserpluginsconfdir}/{blacklist,browsers}.d \
1374         ln -s %{-p*} $RPM_BUILD_ROOT%{_browserpluginsconfdir}/browsers.d/$browser \
1375         blacklist_file=$RPM_BUILD_ROOT%{_browserpluginsconfdir}/blacklist.d/$browser.blacklist \
1376         echo '# This file format is shell globs at base dir of plugindir' > $blacklist_file \
1377         %{-b:cat >> $blacklist_file %{-b*}} \
1378 %{nil}
1379
1380 # vim:ts=4 sw=4 noet syn=spec
This page took 0.173682 seconds and 4 git commands to generate.