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