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