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