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