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