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