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