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