]> git.pld-linux.org Git - packages/rpm.git/blob - rpm.macros
- add %php_includedir
[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 %php_includedir         %(php-config --include-dir 2>/dev/null || echo ERROR)
591
592 # extract php/zend api versions
593 %php_major_version              %(awk '/#define PHP_MAJOR_VERSION/{print $3}' %{php_includedir}/main/php_version.h 2>/dev/null || echo ERROR)
594 %php_api_version                %(awk '/#define PHP_API_VERSION/{print $3}' %{php_includedir}/main/php.h 2>/dev/null || echo ERROR)
595 %php_pdo_api_version    %(awk '/#define PDO_DRIVER_API/{print $3}' %{php_includedir}/ext/pdo/php_pdo_driver.h 2>/dev/null || echo ERROR)
596 %php_debug                              %(awk '/#define ZEND_DEBUG/{print $3}' %{php_includedir}/main/php_config.h 2>/dev/null || echo ERROR)
597 %zend_module_api                %(awk '/#define ZEND_MODULE_API_NO/{print $3}' %{php_includedir}/Zend/zend_modules.h 2>/dev/null || echo ERROR)
598 %zend_extension_api             %(awk '/#define ZEND_EXTENSION_API_NO/{print $3}' %{php_includedir}/Zend/zend_extensions.h 2>/dev/null || echo ERROR)
599 %zend_zts                               %(Z=$(grep -sc '^#define ZTS 1' %{php_includedir}/main/php_config.h); echo ${Z:-ERROR})
600
601 # helper macro
602 %__php_api_requires(v:) Requires: php%{-v*}(%{expand:%1}) = %{expand:%{%{!?2:%{1}}%{?2}}}
603
604 # macros for public use
605 # for php extensions (php-pecl)
606 %requires_php_extension %{__php_api_requires modules_api php_api_version} \
607 %{__php_api_requires zend_module_api} \
608 %{__php_api_requires -v %php_major_version debug php_debug} \
609 %{__php_api_requires -v %php_major_version thread-safety zend_zts}
610
611 # for zend extensions
612 %requires_zend_extension %{__php_api_requires zend_module_api} \
613 %{__php_api_requires zend_extension_api} \
614 %{__php_api_requires -v %php_major_version debug php_debug} \
615 %{__php_api_requires -v %php_major_version thread-safety zend_zts}
616
617 # for php pdo modules (php-pecl-PDO_*)
618 %requires_php_pdo_module %{__php_api_requires PDO_API php_pdo_api_version}
619
620 # for using PHP post scripts. for PHP >= 5.0
621 %php_webserver_restart \
622 [ ! -f /etc/apache/conf.d/??_mod_php.conf ] || %service -q apache restart \
623 [ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart \
624 if [ -f /etc/rc.d/init.d/php-fcgi ]; then \
625         PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \
626         if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php.fcgi* ]]; then \
627                 %service -q php-fcgi restart \
628         fi \
629 fi \
630 %{nil}
631
632 # for using php post scripts. for PHP >= 4.0 && PHP < 5.0
633 %php4_webserver_restart \
634 [ ! -f /etc/apache/conf.d/??_mod_php4.conf ] || %service -q apache restart \
635 [ ! -f /etc/httpd/conf.d/??_mod_php4.conf ] || %service -q httpd restart \
636 if [ -f /etc/rc.d/init.d/php-fcgi ]; then \
637         PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \
638         if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php4.fcgi* ]]; then \
639                 %service -q php-fcgi restart \
640         fi \
641 fi \
642 %{nil}
643
644
645 # X.org helper macros
646 %__xorg_abi_requires() Requires: xorg-xserver-server(%{expand:%1}-abi) = %{expand:%{%{!?2:%{1}}%{?2}}}
647 #
648 %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)
649 %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)
650 %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)
651 %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)
652 %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)
653
654 %requires_xorg_xserver_extension %{__xorg_abi_requires ansic xorg_xserver_ansic_abi} \
655 %{__xorg_abi_requires extension xorg_xserver_extension_abi}
656 %requires_xorg_xserver_xinput %{__xorg_abi_requires ansic xorg_xserver_ansic_abi} \
657 %{__xorg_abi_requires xinput xorg_xserver_xinput_abi}
658 %requires_xorg_xserver_font %{__xorg_abi_requires ansic xorg_xserver_ansic_abi} \
659 %{__xorg_abi_requires font xorg_xserver_font_abi}
660 %requires_xorg_xserver_videodrv %{__xorg_abi_requires ansic xorg_xserver_ansic_abi} \
661 %{__xorg_abi_requires videodrv xorg_xserver_videodrv_abi}
662
663 # Python specific macro definitions.
664 # python main version
665 %py_ver                 %(python -c "import sys; print sys.version[:3]")
666
667 # directories
668 %py_prefix              %(python -c "import sys; print sys.prefix")
669 %py_libdir              %{py_prefix}/%{_lib}/python%{py_ver}
670 %py_scriptdir   %{py_prefix}/share/python%{py_ver}
671 %py_incdir              /usr/include/python%{py_ver}
672 %py_sitedir             %{py_libdir}/site-packages
673 %py_sitescriptdir %{py_scriptdir}/site-packages
674 %py_dyndir              %{py_libdir}/lib-dynload
675
676 # pure python modules compilation
677 %py_comp                python -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
678
679 %py_ocomp               python -O -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
680
681 # Software written in Python language require Python with main version
682 %pyrequires_eq() Requires:      %1
683
684 # Hardlink binary identical .pyc and .pyo files
685 # (idea by glen <at> pld-linux <dot> org)
686 %__spec_install_post_py_hardlink {\
687 %{!?no_install_post_py_hardlink: __spec_install_post_py_hardlink() { \
688 [ ! -d "$RPM_BUILD_ROOT" ] || find "$RPM_BUILD_ROOT" -name '*.pyc' | while read a; do \
689         b="$(echo $a|sed -e 's/.pyc$/.pyo/')"; \
690         if cmp -s "$a" "$b"; then \
691                 ln -f "$a" "$b"; \
692         fi; \
693 done \
694 }; __spec_install_post_py_hardlink } }
695
696 # remove python sources, so that check-files won't complain
697 # (idea by glen <at> pld-linux <dot> org)
698 %py_postclean() \
699 for d in %{py_sitescriptdir} %{py_sitedir} %*; do \
700  [ ! -d "$RPM_BUILD_ROOT$d" ] || find "$RPM_BUILD_ROOT$d" -name '*.py' -print0 | xargs -0r -l512 rm;\
701 done \
702 %{nil}
703
704 # depmod macro
705 %depmod() { \
706 umask 022; \
707 if [ -e /boot/System.map-%1 ]; then \
708         /sbin/depmod -a -F /boot/System.map-%1 %1; \
709 else \
710         if [ -e /boot/System.map ]; then \
711                 /sbin/depmod -a -F /boot/System.map %1; \
712         else \
713                 /sbin/depmod -a %1; \
714         fi \
715 fi; \
716 }
717
718 # XMMS specific macros
719 %xmms_prefix                    %(xmms-config --prefix 2>/dev/null)
720 %xmms_exec_prefix               %(xmms-config --exec-prefix 2>/dev/null)
721 %xmms_version                   %(xmms-config --version 2>/dev/null)
722 %xmms_datadir                   %(xmms-config --data-dir 2>/dev/null)
723 %xmms_plugindir                 %(xmms-config --plugin-dir 2>/dev/null)
724 %xmms_visualization_plugindir   %(xmms-config --visualization-plugin-dir 2>/dev/null)
725 %xmms_input_plugindir           %(xmms-config --input-plugin-dir 2>/dev/null)
726 %xmms_output_plugindir          %(xmms-config --output-plugin-dir 2>/dev/null)
727 %xmms_effect_plugindir          %(xmms-config --effect-plugin-dir 2>/dev/null)
728 %xmms_general_plugindir         %(xmms-config --general-plugin-dir 2>/dev/null)
729
730 %_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/')
731
732 # user/group checking macros
733 #
734 # Usage:
735 #       %userremove myuser
736 #
737 %userremove     /usr/lib/rpm/user_group.sh user del
738 %groupremove    /usr/lib/rpm/user_group.sh group del
739 #
740 # Usage:
741 #       if %usertestrm myuser; then
742 #               /usr/sbin/userdel -r myuser
743 # Note:
744 #       use these macros only if you need to call userdel/groupdel with
745 #       a non-standard option or take an extra action; otherwise use the
746 #       %userremove/%groupremove macros
747 #
748 %usertestrm     /usr/lib/rpm/user_group.sh user testrm
749 %grouptestrm    /usr/lib/rpm/user_group.sh group testrm
750 # user group membership management macros
751 #
752 # Usage:
753 #       %addusertogroup myuser agroup
754 #
755 %addusertogroup /usr/lib/rpm/user_group.sh user addtogroup
756
757 # banner support (useful in {pre,post}{,un} and triggers)
758 #
759 # Usage:
760 #       %banner name [-a] [-e] [-n] [-tn] <<EOF
761 # the banner text, the banner text
762 # the banner text, and following line
763 #EOF
764 # You can use any form of here-document, <<'EOF' <<-EOT will do.
765 # NOTE: if your use "<<-EOF", then You can actually indent inside here-document.
766 #
767 # -a   - append to the banner
768 # -e   - send to stderr instead of stdout
769 # -n   - no show banner (overrides -t)
770 # -t   - show only, if RPM_SCRIPTVERBOSITY >= n; default n=5
771 %banner(aent:)  \
772 RPM_SCRIPTVERBOSITY=5 \
773 [ -r /etc/sysconfig/rpm ] && . /etc/sysconfig/rpm \
774 if [ -x /usr/bin/banner.sh ]; then \
775         CMD="/usr/bin/banner.sh %{-e:--stderr} %{!-n:$([ $RPM_SCRIPTVERBOSITY -ge %{-t:%{-t*}}%{!-t:5} ] && echo -s)} %{!-a:-m}%{-a:-M} %1" \
776 else \
777         CMD="cat%{-e: >&2}" \
778 fi \
779 eval $CMD %2%{?3: %3} \
780 %nil
781
782 # useradd/groupadd macros
783 # Author: Elan Ruusamäe <glen@pld-linux.org>
784 #
785 # Usage:
786 #   %useradd [-P package] [-u uid] [-d home_dir] [-s shell] [-c comment]
787 #   [-g initial_group] [-G group[,...]] login
788 #
789 #  -u uid. REQUIRED
790 #  -g gid/group. REQUIRED
791 #  -s defaults to /bin/false
792 #  -d defaults to /usr/share/empty
793 #  -c No default
794 #  -r is accepted but ignored (it's always set)
795 #  -k skeleton dir. defaults to /usr/share/empty
796 # rpm specific flags
797 #  -P package name. defaults to %{name}
798 #
799 %useradd(c:d:e:f:g:G:Mmk:op:s:u:rP:) \
800 %{!-u:%{error:useradd: Required argument -u missing}} \
801 %{!-g:%{error:useradd: Required argument -g missing}} \
802 %{!?1:%{error:useradd: Required parameter login missing}} \
803 if [ -n "`/bin/id -u %{expand:%{%{#}}} 2>/dev/null`" ]; then \
804         if [ "`/bin/id -u %{expand:%{%{#}}}`" != "%{-u*}" ]; then \
805                 echo "Error: user %{expand:%{%{#}}} doesn't have uid=%{-u*}. Correct this before installing %{-P*}%{!?-P:%{name}}." 1>&2 \
806                 exit 1 \
807         fi \
808 else \
809         echo "Adding user %{expand:%{%{#}}} UID=%{-u*}." \
810         /usr/sbin/useradd \\\
811                 %{-m:-m -k %{-k*}%{!-k:/usr/share/empty}} \\\
812                 -u %{-u*} \\\
813                 -r \\\
814                 -d %{-d*}%{!-d:/usr/share/empty} \\\
815                 -s %{-s*}%{!-s:/bin/false} \\\
816                 %{-c:-c "%(set -- %{-c*} %{*}; echo $1)"}\\\
817                 -g %{-g*} \\\
818                 %{-M} \\\
819                 %{-G:-G %{-G*}} \\\
820                 %{expand:%{%{#}}} 1>&2 || exit $? \
821         [ ! -x /usr/sbin/nscd ] || /usr/sbin/nscd -i passwd || : \
822 fi;
823
824 # Usage:
825 #   %groupadd [-P package] [-g gid] group
826 #
827 # -g gid. REQUIRED
828 #
829 # Sample:
830 #   %groupadd -P %{name}-base -g %{gid} %{name}
831
832 %groupadd(g:P:rfo)      \
833 %{!-g:%{error:groupadd: Required argument -g missing}} \
834 %{!?1:%{error:groupadd: Required parameter group missing}} \
835 if [ -n "`/usr/bin/getgid %{1}`" ]; then \
836         if [ "`/usr/bin/getgid %{1}`" != "%{-g*}" ]; then \
837                 echo "Error: group %{1} doesn't have gid=%{-g*}. Correct this before installing %{-P*}%{!?-P:%{name}}." 1>&2 \
838                 exit 1 \
839         fi \
840 else \
841         echo "Adding group %{1} GID=%{-g*}." \
842         /usr/sbin/groupadd -g %{-g*} -r %{1} 1>&2 || exit $? \
843         [ ! -x /usr/sbin/nscd ] || /usr/sbin/nscd -i group || : \
844 fi;
845
846 # apache_config_{install/uninstall} macros *DEPRECATED*
847 # Author: Elan Ruusamäe <glen@pld-linux.org>
848 #
849 # You should use webapp macros instead. these are here until single piece of
850 # them is gone from specs ;)
851 #
852 # The config is installed/removed inside trigger, this means that you can any
853 # time install apache1 or apache package and the configuration file is updated.
854 # if you don't need the config for various reason for specific apache, just
855 # remove the symlink from apache config directory. the trigger will not put the
856 # config again to that version of apache. In other words the config is linked
857 # to apache config directory on first install of PACKAGE or apache.
858 #
859 # should be called in trigger body:
860 #  %triggerin -- apache1 >= 1.3.33-2
861 #  %apache_config_install -v 1
862 #
863 # Add package's apache config to apache config.
864 #
865 # Usage:
866 #   %apache_config_install -v {1|2} -c %{_sysconfdir}/apache-%{name}.conf -n 99
867 #
868 #  -v REQUIRED: specify apache version. can be 1 or 2.
869 #  -c OPTIONAL: specify full path to PACKAGE's config. Defaults to %{_sysconfdir}/apache-%{name}.conf.
870 #  -n OPTIONAL: specify config "slot". defaults to 99
871 #  -f OPTIONAL: force symlink creation regardless if package was upraded. useful in triggers
872 #
873 # Internal macros. don't use ;).
874 # expands apache config dir by apache version at build time.
875 %__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)
876 # expands apache service name by apache version at build time.
877 %__apache_svcname() %(if [ %{1} = 1 ]; then echo apache; elif [ %{1} = 2 ]; then echo httpd; else echo >&2 Unknown apache version specified; fi)
878
879 %apache_config_install(fv:c:n:) \
880 %{!-v:%{error:apache_config_install: Required argument -v missing}} \
881 %{?debug:set -x; echo "apache_config_install:%{-v*} %{name}-%{version}-%{release} 1:[$1]; 2:[$2]"} \
882 if [ -n "%{-f:1}" ] || ([ "$1" = "1" ] && [ "$2" = "1" ]) && [ -d %{__apache_confdir %{-v*}} ]; then\
883         ln -sf %{-c*}%{!-c:%{_sysconfdir}/apache-%{name}.conf} %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf\
884 fi\
885 # reload apache if the config symlink is there\
886 if [ -L %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf ]; then\
887         # additionally don't reload if target package (the webserver) is upgraded, as webserver is restarted anyway in %post \
888         if [ "$2" != "2" ] && [ -f /var/lock/subsys/%{__apache_svcname %{-v*}} ]; then\
889                 /etc/rc.d/init.d/%{__apache_svcname %{-v*}} reload 1>&2\
890         fi\
891 fi\
892 %{nil}
893
894 # Remove package's apache config from apache config.
895 #
896 # Usage:
897 #   %apache_config_uninstall -v {1|2} -n 99
898 #
899 #  -v REQUIRED: specify apache version. can be 1 or 2.
900 #  -n OPTIONAL: specify config "slot". defaults to 99
901 %apache_config_uninstall(v:n:) \
902 %{!-v:%{error:apache_config_uninstall: Required argument -v missing}} \
903 %{?debug:set -x; echo "apache_config_uninstall:%{-v*} %{name}-%{version}-%{release}: 1:[$1]; 2:[$2]"} \
904 # remove link if either of the packages are gone \
905 if [ "$1" = "0" ] || [ "$2" = "0" ]; then \
906         if [ -L %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf ]; then \
907                 rm -f %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf \
908                 if [ -f /var/lock/subsys/%{__apache_svcname %{-v*}} ]; then \
909                         /etc/rc.d/init.d/%{__apache_svcname %{-v*}} reload 1>&2 \
910                 fi \
911         fi \
912 fi \
913 %{nil}
914
915 # webapp macros
916 # Author: Elan Ruusamäe <glen@pld-linux.org>
917 #
918 # The config is installed/removed inside trigger, this means that you can any
919 # time install apache1/apache/lighttpd package and the configuration file is
920 # updated. if you don't need the config for various reason for specific
921 # webserver, just remove the symlink from config directory using webapp
922 # program. the trigger will not recreate the symlink on upgrades. In other
923 # words the config is linked to webserver config directory on first install of
924 # PACKAGE or WEBSERVER.
925 #
926 # Add package's webserver config to webserver webapps dir.
927 # Usage:
928 #   %webapp_register WEBSERVER WEBAPP
929 #
930 %webapp_register() \
931 %{?debug:set -x; echo "webapp_register: %{name}-%{version}-%{release} 1:[$1]; 2:[$2]"} \
932 if [ "$1" = "1" ] && [ "$2" = "1" ]; then\
933         /usr/sbin/webapp register %1 %2\
934 fi\
935 # reload webserver if the config symlink is there and skip reload if webserver is upgraded\
936 if [ -L /etc/%1/webapps.d/%(echo "%2" | tr '/' '-').conf ] && [ "$2" -lt "2" ]; then\
937         %{expand:%service -q %%1 reload}\
938 fi\
939 %{nil}
940
941 # Remove package's config from webserver webapps dir.
942 # Usage:
943 #   %webapp_register [-f] WEBSERVER WEBAPP
944 %webapp_unregister(f) \
945 %{?debug:set -x; echo "webapp_unregister: %{name}-%{version}-%{release}: 1:[$1]; 2:[$2]"} \
946 # remove link if either of the packages are gone \
947 if [ -n "%{-f:1}" ] || [ "$1" = "0" ] || [ "$2" = "0" ] && [ -L /etc/%1/webapps.d/%(echo "%2" | tr '/' '-').conf ]; then \
948         /usr/sbin/webapp unregister %1 %2\
949         %{expand:%service -q %%1 reload}\
950 fi \
951 %{nil}
952
953 # see browser-plugins.spec / template-browser-plugin.spec
954 # Author: Elan Ruusamäe <glen@pld-linux.org>
955 %nsplugin_install(d:f) { \
956 # create link if it's first install of either of the packages \
957 if [ -n "%{-f:1}" ] || ([ "$1" = "1" ] && [ "$2" = "1" ] && [ -d %{-d*} ]); then \
958 ( \
959 %( \
960         for file in %{*}; do \
961                 echo echo Installing $file to %{-d*}; \
962                 echo "ln -sf %{_libdir}/browser-plugins/$file %{-d*};"; \
963         done ) \
964 ) | ( %banner -t 5 -e %{name}-in ); fi; \
965 }
966
967 %nsplugin_uninstall(d:) { \
968 # remove link if either of the packages are gone \
969 if [ "$1" = "0" ] || [ "$2" = "0" ]; then \
970 ( \
971 %( \
972         for file in %{*}; do \
973                 echo echo Removing $file from %{-d*}; \
974                 echo "rm -f %{-d*}/$file;"; \
975         done ) \
976 ) | ( %banner -t 5 -e %{name}-un ); fi; \
977 }
978
979 # service macro.
980 # Author: Elan Ruusamäe <glen@pld-linux.org>
981 #
982 # calls usual service restart on package %post, but skips the restart if
983 # administrator has disabled automatic service restarts in either global
984 # /etc/sysconfig/rpm or per service /etc/sysconfig/SERVICE file.
985 #
986 # Usage:
987 #   %service [-q] SERVICE ACTION ["SERVICE NICE DESCRIPTION"]
988 #
989 #  -q be silent when service isn't started (for scriplets restaring other package's services)
990 #
991 %service(q) {{%(export quiet=%{-q:1}; /usr/lib/rpm/service_generator.sh %{*}) };}
992
993
994 # Java macros. based on jpackage macros.java
995 #
996 # Root directory where all Java VMs/SDK/JREs are installed.
997 %_jvmdir                %{_libdir}/jvm
998
999 # Root directory where all Java VMs/SDK/JREs expose their jars
1000 %_jvmjardir             %{_libdir}/jvm-exports
1001
1002 # Root directory for all Java VM/SDK/JRE's private things.
1003 %_jvmprivdir    %{_libdir}/jvm-private
1004
1005 # Root directory for all architecture dependent parts of Java VM/SDK/JRE's
1006 %_jvmlibdir             %{_libdir}/jvm
1007
1008 # Root directory for all architecture independent parts of Java VM/SDK/JRE's
1009 %_jvmdatadir    %{_datadir}/jvm
1010
1011 # Root directory for all configurations parts of Java VM/SDK/JRE's
1012 %_jvmsysconfdir %{_sysconfdir}/jvm
1013
1014 # Root directory for all common architecture dependent parts of Java VM/SDK/JRE's
1015 %_jvmcommonlibdir       %{_libdir}/jvm-common
1016
1017 # Root directory for all common architecture independent parts of Java VM/SDK/JRE's
1018 %_jvmcommondatadir      %{_datadir}/jvm-common
1019
1020 # Root directory for all common configurations parts of Java VM/SDK/JRE's
1021 %_jvmcommonsysconfdir   %{_sysconfdir}/jvm-common
1022
1023 # Directory where arch-specific (JNI) version-independent jars are installed.
1024 %_jnidir                %{_libdir}/java
1025
1026
1027 %java_home              %([ -f %{_javadir}-utils/java-functions ] || { echo ERROR; exit 0; }; unset JAVA_HOME; . %{_javadir}-utils/java-functions; set_jvm; echo ${JAVA_HOME:-ERROR})
1028
1029 %ant                    JAVA_HOME=%{java_home} ant
1030 %jar                    %{java_home}/bin/jar
1031 %java                   %([ -f %{_javadir}-utils/java-functions ] || { echo ERROR; exit 0; }; unset JAVACMD; . %{_javadir}-utils/java-functions; set_javacmd; echo $JAVACMD)
1032 %javac                  %{java_home}/bin/javac
1033 %javadoc                %{java_home}/bin/javadoc
1034
1035 %add_jvm_extension      JAVA_LIBDIR=%{buildroot}/%{_javadir}    %{_bindir}/jvmjar -l
1036
1037 %jpackage_script() \
1038 install -d $RPM_BUILD_ROOT%{_bindir}\
1039 cat > $RPM_BUILD_ROOT%{_bindir}/%5 << 'EOF' \
1040 #!/bin/sh\
1041 #\
1042 # %{name} script\
1043 # JPackage Project <http://www.jpackage.org/>\
1044 \
1045 # Source functions library\
1046 . %{_javadir}-utils/java-functions\
1047 \
1048 # Source system prefs\
1049 if [ -f %{_sysconfdir}/java/%{name}.conf ]; then\
1050     . %{_sysconfdir}/java/%{name}.conf\
1051 fi\
1052 \
1053 # Source user prefs\
1054 if [ -f $HOME/.%{name}rc ]; then\
1055     . $HOME/.%{name}rc\
1056 fi\
1057 \
1058 # Configuration\
1059 MAIN_CLASS=%1\
1060 BASE_FLAGS=%2\
1061 BASE_OPTIONS=%3\
1062 BASE_JARS="%(echo %4 | tr ':' ' ')"\
1063 \
1064 # Set parameters\
1065 set_jvm\
1066 set_classpath $BASE_JARS\
1067 set_flags $BASE_FLAGS\
1068 set_options $BASE_OPTIONS\
1069 \
1070 # Let's start\
1071 run "$@"\
1072 EOF
1073
1074 # PEAR install macros
1075 # Author: Elan Ruusamäe <glen@pld-linux.org>
1076 #
1077 # Usage:
1078 #       %%pear_package_setup [-a #] [-n FMT]
1079 #
1080 # -a #   - also unpack SOURCE#. for PEAR bootstrapping
1081 # -n FMT - create builddir with FMT, instead of default %%{_pearname}-%%{version}
1082 # -z     - unpack pear package and let pear use package.xml (not tarball) for install. for PEAR bootstrapping
1083 #
1084 # unpack PEAR package to %%{_builddir}/FMT. package is extracted with already
1085 # destination hierarchy. you should copy the tree to buildroot after
1086 # patching/reorganizing with %%pear_package_install.
1087 #
1088 # additionally BUILDROOT is stripped from files and files are converted to UNIX
1089 # line endings.
1090 #
1091 # the pear install process output is recorded to install.log, you should put it
1092 # to %%doc for later debug or just for information.
1093 #
1094 # additionally additional-packages.txt is produced if it was detected that the
1095 # package has optional dependencies. the file format is suitable of displaying
1096 # in %%post of a package. you should put this file to %%doc. noautocompressdoc is
1097 # automatically added for this file.
1098
1099
1100 # records install.log and transforms PEAR names to PLD Linux rpm package names.
1101 %__pear_install_log \
1102 tee install.log \
1103 # make post message of optional packages \
1104 grep 'can optionally use' install.log | sed -e 's,package "pear/,package "php-pear-,g;s,^pear/,php-pear-,' > optional-packages.txt \
1105 if [ -s optional-packages.txt ]; then \
1106         awk -F'"' '/use package/{print $2}' optional-packages.txt | sed -e "s,_,/,g;s,php-pear-, 'pear(,;s,$,.*)'," | tr -d '\\\n' > _noautoreq \
1107 else \
1108         rm -f optional-packages.txt \
1109 fi \
1110 %{nil}
1111
1112 # command invoking pear cli
1113 %__pear /usr/bin/pear
1114
1115 %pear_install(a:n:zD) \
1116 %__pear \\\
1117         -c pearrc \\\
1118         -d doc_dir=/docs \\\
1119         -d php_dir=%{php_pear_dir} \\\
1120         -d bin_dir=%{_bindir} \\\
1121         -d data_dir=%{php_pear_dir}/data \\\
1122         -d test_dir=%{php_pear_dir}/tests \\\
1123         install \\\
1124         --packagingroot=%{builddir} \\\
1125         --offline \\\
1126         --nodeps \\\
1127         %{-f:--force} \\\
1128         %{!-z:%{S:%{-a*}%{!-a:0}}}%{-z:$_P} > .install.log || { c=$?; cat .install.log; exit $c; }; \
1129 %{nil}
1130
1131 # The main macro.
1132 # using this macro will append optional-packages.txt to the nocompressdoc list
1133 # as it's displayed to user after package install. and adding additional gzip
1134 # dep is just waste ;)
1135 %pear_package_setup(a:n:zD) \
1136 %define srcdir %{-n*}%{!-n:%{_pearname}-%{version}} \
1137 %define builddir %{_builddir}/%{srcdir} \
1138 %setup -q -c -T %{-D:-D} -n %{srcdir} \
1139 %{-z:tar zxf %{S:0}; %{-a:tar zxf %{S:%{-a*}}}} \
1140 %{-z:_P=package2.xml; [ -f $_P ] || _P=package.xml; _N=%{srcdir}; mv $_P $_N; cd $_N} \
1141 %pear_install \
1142 %{-z:cd ..} \
1143 cat %{-z:$_N/}.install.log | %__pear_install_log \
1144 \
1145 # undos sources \
1146 find . -type f -print0 | xargs -0 sed -i -e 's,\\r$,,' \
1147 %{!?_noautocompressdoc:%global _noautocompressdoc %{nil}}%{expand:%%global _noautocompressdoc %{_noautocompressdoc} optional-packages.txt} \
1148 %{!?_noautoprov:%global _noautoprov %{nil}}%{expand:%%global _noautoprov %{_noautoprov} 'pear(tests/.*)'} \
1149 %{nil}
1150
1151 # Copies exctracted PEAR package structure and PEAR registry to buildroot.
1152 # Author: Elan Ruusamäe <glen@pld-linux.org>
1153 %pear_package_install() \
1154 cp -a ./%{php_pear_dir}/{.registry,*} $RPM_BUILD_ROOT%{php_pear_dir} \
1155 find $RPM_BUILD_ROOT%{php_pear_dir} '(' -name '*~' -o -name '*.orig' ')' | xargs -r rm -v \
1156 # help the developer out a little: \
1157 if [ -f _noautoreq ]; then \
1158         echo "AutoReqdep detected:" \
1159         echo "_noautoreq $(cat _noautoreq)" \
1160 fi \
1161 %{nil}
1162
1163
1164 # Register OpenLDAP schema.
1165 # Author: Elan Ruusamäe <glen@pld-linux.org>
1166 #
1167 # Usage:
1168 #   %%openldap_schema_register [-d core,nis] %{schemadir}/horde.schema
1169 #
1170 #  -d specify dependant schemas, separated by comma
1171 #
1172 %openldap_schema_register(d:) \
1173 for schema in %*; do \
1174         if ! grep -q "$schema" /etc/openldap/slapd.conf; then \
1175                 %{__sed} -i -e " \
1176                         /^include.*local.schema/{ \
1177                                 iinclude\\t     $schema\
1178                         } \
1179                 " /etc/openldap/slapd.conf \
1180         fi \
1181 done \
1182 # enable dependant schemas \
1183 if [ "%{-d*}" ]; then \
1184         %{__sed} -i -e ' \
1185         /^#include.*\\(%(echo '%{-d*}' | %{__sed} -e 's/,/\\\\|/g')\\)\\.schema/{ \
1186                 s/^#// \
1187         }' /etc/openldap/slapd.conf \
1188 fi \
1189 %{nil}
1190
1191 # Unregister OpenLDAP schema.
1192 # Author: Elan Ruusamäe <glen@pld-linux.org>
1193 #
1194 # Usage:
1195 #   %%openldap_schema_unregister %{schemadir}/horde.schema
1196 #
1197 %openldap_schema_unregister() \
1198 for schema in %*; do \
1199         if grep -q "$schema" /etc/openldap/slapd.conf; then \
1200                 %{__sed} -i -e " \
1201                 /^include.*$(echo "$schema" | %{__sed} -e 's,/,\\\\/,g')/d \
1202                 # for symmetry it would be nice if we disable enabled schemas in post, \
1203                 # but we really can not do that, it would break something else. \
1204                 " /etc/openldap/slapd.conf \
1205         fi \
1206 done \
1207 %{nil}
1208
1209 %env_update [ ! -x /sbin/env-update ] || /sbin/env-update -u || :
1210
1211
1212 # Build modules for kernels 2.6
1213 # Author: Przemyslaw Iskra <sparky@pld-linux.org>
1214 #
1215 # Usage:
1216 #       %build_kernel_modules -m <modules> -C <directory>
1217 #
1218 #  remember that proper Makefile is still required
1219 # Options:
1220 #  -m <modules> (required) -- comma-separated list of modules to save,
1221 #               without .ko extension, may be placed in subdirectory
1222 #  -C <directory> -- change to <directory> before doing anything
1223 #  -p <arg>, -P <arg> -- arguments passeed to make scripts
1224 #  -c -- do not execute make clean
1225 #  <additional arguments> -- all additional arguments will be passed to
1226 #               make modules
1227 #
1228 # Additional patching supported via here document. Try:
1229 #       %build_kernel_modules -m module <<'EOF'
1230 #       your patch script here
1231 #       EOF
1232 # Don't use it unless patching depends on config options.
1233
1234 # Developer note: don't touch it unless you know how to handle '\'.
1235 # - \ in script expands to nothing
1236 # - \\\ in script expands to \
1237 # - \\\ inside definition expands to nothing
1238 # - \\\\\\\ inside definition expands to \
1239 # - in last line \ has to touch arguments so arguments passing
1240 #   in new lines (using \) will be supported
1241
1242 %build_kernel_modules(p:P:m:C:c)                                                                        \
1243 %{!?-m:%{error:%{0}: Required module name/list missing} exit 1}         \
1244                                                                                                                                         \
1245 %define Opts                                                                                                            \\\\\\\
1246 %if "%{_target_base_arch}" != "%{_arch}"                                                        \\\
1247         %if "%{_arch}" == "x86_64" && "%{_target_base_arch}" == "i386"  \\\
1248         CC="%{__cc}" CPP="%{__cpp}" ARCH=%{_target_base_arch}                   \\\
1249         %else                                                                                                                   \\\
1250         ARCH=%{_target_base_arch} CROSS_COMPILE=%{_target_cpu}-pld-linux- \\\
1251         %endif                                                                                                                  \\\
1252 %else                                                                                                                           \\\
1253         CC="%{__cc}" CPP="%{__cpp}"                                                                             \\\
1254 %endif                                                                                                                          \
1255 %define MakeOpts HOSTCC="%{__cc}" SYSSRC=%{_kernelsrcdir} SYSOUT=$PWD/o \\\\\\\
1256                 O=$PWD/o %{?with_verbose:V=1} %{Opts}                                           \
1257                                                                                                                                         \
1258 %{?-C:cd %{-C*}}                                                                                                        \
1259 compile() {                                                                                                                     \
1260         L="<"; [[ '%{*}' != *$L$L* ]] || PATCH_SH="set -x -e;$(cat)"    \
1261         set -e -x                                                                                                               \
1262                                                                                                                                         \
1263 for cfg in %{?with_dist_kernel:dist}%{!?with_dist_kernel:nondist}; do \
1264         [ -r "%{_kernelsrcdir}/config-$cfg" ] || exit 1                                 \
1265                                                                                                                                         \
1266         rm -rf o                                                                                                                \
1267         install -d o/include/linux                                                                              \
1268         ln -sf %{_kernelsrcdir}/config-$cfg o/.config                                   \
1269         ln -sf %{_kernelsrcdir}/Module.symvers-$cfg o/Module.symvers    \
1270         ln -sf %{_kernelsrcdir}/include/linux/autoconf-$cfg.h o/include/linux/autoconf.h \
1271 %ifarch ppc ppc64                                                                                                       \
1272         install -d o/include/asm                                                                                \
1273         [ ! -d %{_kernelsrcdir}/include/asm-%{_target_base_arch} ] || ln -sf %{_kernelsrcdir}/include/asm-%{_target_base_arch}/* o/include/asm \
1274         [ ! -d %{_kernelsrcdir}/include/asm-powerpc ] || ln -snf %{_kernelsrcdir}/include/asm-powerpc/* o/include/asm   \
1275 %else                                                                                                                           \
1276         ln -sf %{_kernelsrcdir}/include/asm-%{_target_base_arch} o/include/asm \
1277 %endif                                                                                                                          \
1278                                                                                                                                         \
1279         set +x                                                                                                                  \
1280         [ -z "$PATCH_SH" ] || echo "$PATCH_SH" | %__spec_build_shell    \
1281         set -x                                                                                                                  \
1282                                                                                                                                         \
1283         %if %{with dist_kernel}                                                                                 \
1284                 %{__make} -j1 -C %{_kernelsrcdir} prepare scripts                       \\\
1285                         %{-p*} %{-P*}                                                                                   \\\
1286                         %{MakeOpts}                                                                                             \
1287         %else                                                                                                                   \
1288                 install -d o/include/config                                                                     \
1289                 touch o/include/config/MARKER                                                           \
1290                 ln -sf %{_kernelsrcdir}/scripts o/scripts                                       \
1291         %endif                                                                                                                  \
1292                                                                                                                                         \
1293         %{!?-c:%{__make} -C %{_kernelsrcdir} clean                                              \\\
1294                 RCS_FIND_IGNORE="-name '*.ko' -o"                                                       \\\
1295                 M=$PWD %{MakeOpts}}                                                                                     \
1296         %{__make} -C %{_kernelsrcdir} modules                                                   \\\
1297                 ${1+"$@"}                                                                                                       \\\
1298                 M=$PWD %{MakeOpts}                                                                                      \
1299                                                                                                                                         \
1300         for MODULE in {%{-m*},}; do                                                                             \
1301                 [ -z "${MODULE}" ] || mv ${MODULE}{,-$cfg}.ko                           \
1302         done                                                                                                                    \
1303 done                                                                                                                            \
1304 %{?-C:cd -}                                                                                                                     \
1305 }                                                                                                                                       \
1306 compile %{*}\
1307 %{nil}
1308
1309
1310 # Install kernel modules built by %build_kernel_modules
1311 # Author: Przemyslaw Iskra <sparky@pld-linux.org>
1312 #
1313 # Usage:
1314 #       %install_kernel_modules -m <modules> -d <directory>
1315 #
1316 # Options:
1317 #  -m <modules> (required) -- comma-separated list of modules to install,
1318 #               without .ko extension, may be placed in subdirectory
1319 #  -d <directory> (required) -- in what subdirectory modules should be
1320 #               installed (eg. misc, kernel/drivers/net)
1321 #  -s <suffix> -- suffix to use when installing modules, useful when module
1322 #               with same name exists in kernel already
1323 #  -n <file> -- name of modprobe config file to use (without .conf extension)
1324 #               for definig aliases, only useful with -s
1325
1326 %install_kernel_modules(m:d:s:n:)                                                                       \
1327 %{!?-m:%{error:%{0}: Required module name (-m) missing}exit 1}          \
1328 %{!?-d:%{error:%{0}: Required module directory missing}exit 1}          \
1329 %{?-n:%{!?-s:%{error:%{0}: Modprobe .conf file requires module suffix}exit 1}} \
1330                                                                                                                                         \
1331 %define KernelD $RPM_BUILD_ROOT/lib/modules/%{_kernel_ver}                      \
1332 %define ModprobeD $RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d/%{_kernel_ver} \
1333                                                                                                                                         \
1334 install -d %{KernelD}/%{-d*}                                                                    \
1335 %{?-s:install -d %{ModprobeD}}                                                          \
1336                                                                                                                                         \
1337 for MODULE in {%{-m*},}; do                                                                                     \
1338         [ -n "${MODULE}" ] || continue                                                                  \
1339         MNAME=${MODULE##*/}                                                                                             \
1340         %if %{without dist_kernel}                                                                              \
1341                 install ${MODULE}-nondist.ko                                                            \\\
1342                         %{KernelD}/%{-d*}/${MNAME}%{-s:-%{-s*}}.ko                              \
1343                 %{?-s:echo "alias ${MNAME} ${MNAME}-%{-s*}"                                     \\\
1344                         >> %{ModprobeD}/%{-n*}.conf}                                                    \
1345         %else                                                                                                                   \
1346                 install ${MODULE}-dist.ko                                                                               \\\
1347                         %{KernelD}/%{-d*}/${MNAME}%{-s:-%{-s*}}.ko                              \
1348                 %{?-s:echo "alias ${MNAME} ${MNAME}-%{-s*}"                                     \\\
1349                         >> %{ModprobeD}/%{-n*}.conf}                                                    \
1350         %endif                                                                                                                  \
1351 done                                                                                                                            \
1352 %{nil}
1353
1354 # patchset macros
1355 # Author: Elan Ruusamäe <glen@pld-linux.org>
1356 #
1357 # Usage:
1358 #   %patchset_source -f <seq(1) format> <start> [<end>]
1359 #   %patchset_patch <start> [<end>]
1360 #
1361 # If <end> is omited, it is assumed to be <start>.
1362 #
1363 # For example in preamble:
1364 #  %patchset_source -f ftp://ftp.vim.org/pub/editors/vim/patches/7.0/7.0.%03g 33 44
1365 # and in %prep:
1366 #  %patchset_patch 33 44
1367
1368 # generate SourceX urls from range START STOP
1369 # Format can be SINGLE format char of %e, %f, %g, see seq(1)
1370 # The sources start from 10000
1371 %patchset_source(f:b:) %(
1372         base=%{-b*}%{!-b*:10000};
1373         start=$(expr $base + %1);
1374         end=$(expr $base + %{?2}%{!?2:%{1}});
1375         # we need to call seq twice as it doesn't allow two formats
1376         seq -f 'Patch%g:' $start $end > %{tmpdir}/__ps1;
1377         seq -f '%{-f*}' %1 %{?2}%{!?2:%{1}} > %{tmpdir}/__ps2;
1378         paste %{tmpdir}/__ps{1,2};
1379         rm -f %{tmpdir}/__ps{1,2};
1380 ) \
1381 %{nil}
1382
1383 # apply sources from %patchset_source
1384 # -p specify -pX for %patch line
1385 # -b base offset: defaults to 10000
1386 %patchset_patch(f:p:b:) %(
1387         base=%{-b*}%{!-b*:10000};
1388         start=$(expr $base + %1);
1389         end=$(expr $base + %{?2}%{!?2:%{1}});
1390         echo ": patchset_patch %1%{?2: to %2}";
1391         seq -f 'patch%g %{-p*:-p%{-p*}}' $start $end | sed -e s,^,%%,;
1392 ) \
1393 %{nil}
1394
1395 # browser plugins v2
1396 # Author: Elan Ruusamäe <glen@pld-linux.org>
1397 #
1398 # Usage:
1399 #       %browser_plugins_add_browser <name> -p <plugindir>
1400 #
1401 #  <name> (required) -- name of the browser. usually %{name}.
1402 #  -p <plugindir> (required) -- in what directory browser searches for its plugins.
1403 #  -b -- default blacklists
1404 #  -a <arch> override arch
1405 #
1406 # Example:
1407 #   %browser_plugins_add_browser %{name} -p %{_firefoxdir}/plugins
1408
1409 %_browserpluginsconfdir         /etc/browser-plugins
1410 %_browserpluginsdir                     %{_libdir}/browser-plugins
1411 %update_browser_plugins         /usr/sbin/update-browser-plugins || :
1412
1413 %browser_plugins_add_browser(p:b:a:) \
1414         browser=%1.%{!-a:%{_target_base_arch}}%{-a*} \
1415         install -d $RPM_BUILD_ROOT%{_browserpluginsconfdir}/{blacklist,browsers}.d \
1416         ln -s %{-p*} $RPM_BUILD_ROOT%{_browserpluginsconfdir}/browsers.d/$browser \
1417         blacklist_file=$RPM_BUILD_ROOT%{_browserpluginsconfdir}/blacklist.d/$browser.blacklist \
1418         echo '# This file format is shell globs at base dir of plugindir' > $blacklist_file \
1419         %{-b:cat >> $blacklist_file %{-b*}} \
1420 %{nil}
1421
1422 # vim:ts=4 sw=4 noet syn=spec
This page took 0.30198 seconds and 4 git commands to generate.