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