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