]> git.pld-linux.org Git - packages/rpm-build-macros.git/blame - rpm.macros
- unify output and run expectedly
[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
33040789 11# Build system path macros.
12#
bddadece
JB
13%__autoconf autoconf %{?debug:-Wall}
14%__automake automake -a -c -f --foreign
f93109a0 15%__autopoint autopoint --force
16
83094b62 17%__gettextize { \
3241033b 18if ! gettextize --version | grep -q '0\.10\.' ; then \
8a995cff 19 if grep -qs 'AM_GNU_GETTEXT.*external' configure.{ac,in} ; then \
3241033b 20 gettextize --copy --force --no-changelog; \
97589b6e 21 else \
3241033b 22 gettextize --copy --force --no-changelog --intl; \
8a995cff
JB
23 fi; \
24 if [ ! -f po/Makevars ]; then \
3241033b 25 cp -f po/Makevars{.template,}; \
8a995cff 26 fi; \
3241033b 27else \
8a995cff 28 gettextize --copy --force; \
3241033b 29fi; \
8a995cff 30}
f93109a0 31
32%__glib_gettextize glib-gettextize --copy --force
33%__gnome_doc_common gnome-doc-common --copy
fb59e475 34%__gnome_doc_prepare gnome-doc-prepare --copy --force
f93109a0 35%__gtkdocize gtkdocize --copy
36%__intltoolize intltoolize --copy --force
37%__libtoolize libtoolize --copy --force
33040789 38
81e450f7
ER
39# The number of cvs changelog entries kept when building package.
40%_buildchangelogtruncate 20
41
6a5eda77 42%dependencytracking %{nil}
3241033b 43
e5da9169
ER
44# Relations between package names that cause dependency loops
45# with legacy packages that cannot be fixed. Relations are
46# specified as
47# p>q
48# where package p has a Requires: on something that package q Provides:
49#
50# XXX Note: that there cannot be any whitespace within the string "p>q",
51# and that both p and q are package names (i.e. no version/release).
52%_dependency_whiteout %{nil}
53
810fa5c4 54
55#-----------------------------------------------------------------
56#
57# (re)definition of %{rpm*flags} with %filterout_* support
b5e977c5
ER
58# BuildRequires: awk
59# BuildRequires: rpmbuild(macros) >= 1.315
810fa5c4 60#
61# Flags specified in %filterout_* are removed from %rpm*flags, exactly:
09a90176 62# %rpmcflags = %optflags - %filterout - %filterout_c - %filterout_ld
63# %rpmcxxflags = %optflags - %filterout - %filterout_cxx - %filterout_ld
64# %rpmldflags = %optldflags - %filterout_ld
810fa5c4 65#
66# Regular expressions are supported, but to avoid some character be treated
67# as regular expression it must be escaped twice.
68
69%filter_out \
70 for (i in I) { A=0; \
71 for (f in F) { \
72 if (I[i] ~ "^" F[f] "$") A=1; \
73 }; \
74 if (!A) printf(I[i] FS); \
75 }
76
77%rpmcflags %(awk 'BEGIN {
78 split("%{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}",I);
09a90176 79 split("%{?filterout} %{?filterout_c} %{?filterout_ld}",F);
810fa5c4 80 %{filter_out}
81}')
82
83%rpmcxxflags %(awk 'BEGIN {
09a90176 84 split("%{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}",I);
85 split("%{?filterout} %{?filterout_cxx} %{?filterout_ld}",F);
810fa5c4 86 %{filter_out}
87}')
88
89%rpmldflags %(awk 'BEGIN {
c05a0741 90 split("%{?optldflags}",I);
810fa5c4 91 split("%{?filterout_ld}",F)
92 %{filter_out}
93}')
94
25f52d1a 95# rpmldflags with stripped -Wl, -- in the form flags have to be passed to 'ld'
96# but, don't use it, better use gcc as linker
97%ld_rpmldflags %(awk 'BEGIN {
98 split("%{rpmldflags}",F);
99 for (f in F) {
100 s = F[f];
101 if (s ~ /^-Wl,/) {
102 s = substr(s,5);
103 gsub(/,/," ",s);
104 };
105 printf(s FS);
106 };
107}')
108
9c404149 109#-----------------------------------------------------------------
9f4ce098 110%configure2_13 { \
9c404149
AM
111 if [ -n "$LINGUAS" ]; then unset LINGUAS; fi; \
112 LDFLAGS="${LDFLAGS:-%rpmldflags}" ; export LDFLAGS ; \
113 CFLAGS="${CFLAGS:-%rpmcflags}" ; export CFLAGS ; \
f4cc8832 114 CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" ; export CXXFLAGS ; \
9c404149 115 FFLAGS="${FFLAGS:-%rpmcflags}" ; export FFLAGS ; \
8ec1a12b 116 CPPFLAGS="${CPPFLAGS:-}" ; export CPPFLAGS ; \
8983c4c4
AM
117 %{?__cc:CC="%{__cc}" ; export CC ; } \
118 %{?__cxx:CXX="%{__cxx}" ; export CXX ; } \
8f74418b 119 %{?configuredir:%{configuredir}}%{!?configuredir:.}/configure \
2a7cfd3f 120 --host=%{_target_platform} \
9c404149
AM
121 --prefix=%{_prefix} \
122 --exec-prefix=%{_exec_prefix} \
123 --bindir=%{_bindir} \
124 --sbindir=%{_sbindir} \
125 --sysconfdir=%{_sysconfdir} \
126 --datadir=%{_datadir} \
127 --includedir=%{_includedir} \
128 --libdir=%{_libdir} \
129 --libexecdir=%{_libexecdir} \
130 --localstatedir=%{_localstatedir} \
131 --sharedstatedir=%{_sharedstatedir} \
132 --mandir=%{_mandir} \
133 --infodir=%{_infodir} \
b6c5da52 134 --x-libraries=%{?_x_libraries}%{!?_x_libraries:%{_libdir}} \
93059874 135 %{dependencytracking} \
9c404149
AM
136}
137
89f4ca1f
ER
138# override __cmake to add -j4 in your ~/.rpmmacros for parallel make
139%__cmake /usr/bin/cmake
39b9534b
ER
140%cmake { \
141CC="%{__cc}" \
142CXX="%{__cxx}" \
143CFLAGS="%{rpmcflags}" \
144CXXFLAGS="%{rpmcxxflags}" \
89f4ca1f
ER
145%{__cmake} \
146}
147
148# override __scons to add -j4 in your ~/.rpmmacros for parallel make
149%__scons /usr/bin/scons
150%scons { \
151%{__scons} \
39b9534b
ER
152}
153
6339d32d 154# waf. see waf.spec
89f4ca1f 155# override __waf to add -j4 in your ~/.rpmmacros for parallel make
6339d32d
ER
156%__waf /usr/bin/waf
157%waf { \
6339d32d
ER
158CC="%{__cc}" \
159CXX="%{__cxx}" \
9e244007 160CPP="%{__cpp}" \
6339d32d
ER
161CFLAGS="%{rpmcflags}" \
162CXXFLAGS="%{rpmcxxflags}" \
163%{__waf} \
6339d32d
ER
164}
165
4a6b0d54 166#----------------------------------------------------------------
73f832b3 167%global configure_cache 0
fe6c4bdd 168%configure_cache_file %{buildroot}.configure.cache
73f832b3 169
57f4166d 170%configure {./configure \
4a6b0d54
AF
171 LDFLAGS="${LDFLAGS:-%rpmldflags}" \
172 CFLAGS="${CFLAGS:-%rpmcflags}" \
f4cc8832 173 CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" \
4a6b0d54 174 FFLAGS="${FFLAGS:-%rpmcflags}" \
a2bd5992 175 CPPFLAGS="${CPPFLAGS:-}" \
8983c4c4
AM
176 %{?__cc:CC="%{__cc}"} \
177 %{?__cxx:CXX="%{__cxx}"} \
8e4cb85a 178 --host=%{_target_platform} \
4a6b0d54
AF
179 --build=%{_target_platform} \
180 --prefix=%{_prefix} \
181 --exec-prefix=%{_exec_prefix} \
182 --bindir=%{_bindir} \
183 --sbindir=%{_sbindir} \
184 --sysconfdir=%{_sysconfdir} \
185 --datadir=%{_datadir} \
186 --includedir=%{_includedir} \
187 --libdir=%{_libdir} \
188 --libexecdir=%{_libexecdir} \
189 --localstatedir=%{_localstatedir} \
190 --sharedstatedir=%{_sharedstatedir} \
191 --mandir=%{_mandir} \
192 --infodir=%{_infodir} \
b6c5da52 193 --x-libraries=%{?_x_libraries}%{!?_x_libraries:%{_libdir}} \
93059874 194 %{dependencytracking} \
73f832b3 195 %{?configure_cache:--cache-file=%{configure_cache_file:-%{buildroot}.configure.cache}} \
4a6b0d54
AF
196}
197
7dbab518 198# ------------------------------------------------------------------------
c80506a3
AM
199# Overloading of some basic macros
200%prep \
201%%prep\
006d4f14
ER
202export LC_ALL=C\
203export LANG=C\
6db5639d 204unset LINGUAS ||:\
006d4f14
ER
205unset LANGUAGE ||:\
206unset LC_MESSAGES ||:\
207unset DISPLAY ||:\
c80506a3
AM
208%{nil}
209
210%build %%build\
006d4f14
ER
211export LC_ALL=C\
212export LANG=C\
6db5639d 213unset LINGUAS ||:\
006d4f14
ER
214unset LANGUAGE ||:\
215unset LC_MESSAGES ||:\
216unset DISPLAY ||:\
c80506a3
AM
217%{nil}
218
b4e3d367
ER
219%install \
220%if 0%{?_enable_debug_packages}\
221%{?buildsubdir:%{debug_package}}\
222%endif\
c80506a3 223%%install\
006d4f14
ER
224export LC_ALL=C\
225export LANG=C\
6db5639d 226unset LINGUAS ||:\
006d4f14
ER
227unset LANGUAGE ||:\
228unset LC_MESSAGES ||:\
229unset DISPLAY ||:\
c80506a3
AM
230%{nil}
231
9c404149
AM
232# Location of autoconf macros
233%_aclocaldir %(aclocal --print-ac-dir)
234
e2804f99
AM
235# Location of omf files
236%_omf_dest_dir %(scrollkeeper-config --omfdir)
237
e987a186 238# Location of pkgconfig files
9a4e877a 239%_pkgconfigdir /usr/%{_lib}/pkgconfig
e987a186 240
486b0b5f 241# Location of desktop files
242%_desktopdir /usr/share/applications
86dff2d0 243%_applnkdir ERROR:_applnkdir_is_obsolete_use_desktopdir_instead
486b0b5f 244
481463e9 245# Location of pixmaps for applnk/desktop files
e1f0a822 246%_pixmapsdir /usr/share/pixmaps
9c404149 247
481463e9 248# Location of themable icons for applnk/desktop files
b36c8e2a 249%_iconsdir /usr/share/icons
250
e987a186
JB
251# Location of fonts directories
252%_fontsdir /usr/share/fonts
253
b3282f3f 254# Location of Gtk and associated libraries documentation
fe6c4bdd 255%_gtkdocdir %{_defaultdocdir}/gtk-doc/html
b3282f3f 256
fc4d7771 257# Location of KDE documentation
fe6c4bdd 258%_kdedocdir %{_defaultdocdir}/kde/HTML
fc4d7771 259
5869828c 260# unsermake script
261%__unsermake /usr/share/unsermake/unsermake
262
9c404149
AM
263# Current date
264%date %(LC_ALL="C" date +"%a %b %d %Y")
265
03e0316b
ER
266# tmp directory
267%tmpdir %(echo "${TMPDIR:-/tmp}")
268
9c404149
AM
269# Example files, programs, scripts...
270%_examplesdir /usr/src/examples
271
c8f7e820 272# Alternative kernel type/version
261729d9 273%_alt_kernel %{nil}%{?alt_kernel:-%{?alt_kernel}}
c8f7e820 274
8377d27d 275# The directory holding Linux kernel sources
261729d9 276%_kernelsrcdir /usr/src/linux%{_alt_kernel}
8377d27d 277
9c404149 278# If non-empty "debug" macro defined, add "dbg" suffix to release number
8f74418b 279%_rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}%{?debug:dbg}.%%{ARCH}.rpm
9c404149 280
8f74418b 281# Requires name = version-release
ec4e8b11 282%requires_releq() %(echo '%*' | LC_ALL="C" xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}-%%{release}\\n' | sed -e 's/ (none):/ /' | grep -v "is not")
8bf3719d 283
fe6c4bdd
ER
284%releq_kernel_up() %((LC_ALL="C" rpm -qf --qf '%%{name}-up = %%{epoch}:%%{version}-%%{release}\\n' %{_kernelsrcdir}/include/linux/version.h 2>/dev/null || echo ERROR) | sed -e 's/ (none):/ /' | sed -e 's:-headers::' | grep -vE "(is not|no such)")
285%releq_kernel_smp() %((LC_ALL="C" rpm -qf --qf '%%{name}-smp = %%{epoch}:%%{version}-%%{release}\\n' %{_kernelsrcdir}/include/linux/version.h 2>/dev/null || echo ERROR) | sed -e 's/ (none):/ /' | sed -e 's:-headers::' | grep -vE "(is not|no such)")
286%requires_releq_kernel_up(s:) Requires%{-s:(%{-s*})}: %releq_kernel_up
aa8f51eb 287%requires_releq_kernel_smp(s:) Requires%{-s:(%{-s*})}: %releq_kernel_smp
8bf3719d 288
47935449 289%requires_eq() %(echo '%*' | LC_ALL="C" xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}\\n' | sed -e 's/ (none):/ /' -e 's/ 0:/ /' | grep -v "is not")
16cb1d91 290%requires_eq_to() %(LC_ALL="C" rpm -q --qf 'Requires: %1 = %%{epoch}:%%{version}\\n' %2 | sed -e 's/ (none):/ /' | grep -v "is not")
01a9f990 291
c0b2771b 292%apache_modules_api %(awk '/#define MODULE_MAGIC_NUMBER_MAJOR/ {print $3}' /usr/include/apache/ap_mmn.h 2>/dev/null || echo ERROR)
b9d5d440 293
294# kernel version-release handling
d33b74f9 295%__kernel_ver %( VER_H=%{_kernelsrcdir}/include/linux/utsrelease.h; [ -f $VER_H ] || VER_H=%{_kernelsrcdir}/include/linux/version.h; [ -f $VER_H ] && (grep UTS_RELEASE $VER_H 2>/dev/null | head -n 1 | cut -d'"' -f2) || (awk '/^VERSION/ { ver = $0; gsub(/VERSION.*=/, NIL, ver); } /^PATCHLEVEL/ { plev = $0; gsub(/PATCHLEVEL.*=/, NIL, plev); } /^SUBLEVEL/ { slev = $0; gsub(/SUBLEVEL.*=/, NIL, slev); } /^EXTRAVERSION/ { ever = $0; gsub(/EXTRAVERSION.*=/, NIL, ever); gsub(/ /, NIL, ever); } END { printf("%d.%d.%d%s", ver, plev, slev, ever); }' %{_kernelsrcdir}/Makefile 2> /dev/null))
3241033b 296%__kernel_rel %(LC_ALL="C" rpm -qf %{_kernelsrcdir}/include/linux/fs.h 2>/dev/null --qf "%{RELEASE}" | grep -v "is not")
fe6c4bdd 297%__kernel_rpmvr %(LC_ALL="C" rpm -qf %{_kernelsrcdir}/include/linux/fs.h 2>/dev/null --qf "%{VERSION}-%{RELEASE}" | grep -v "is not")
3241033b 298%_kernel_ver %{__kernel_ver}%{?with_dist_kernel:%(echo %{__kernel_ver} | grep -q -e - || echo -%{__kernel_rel})}
f62e856d 299%_kernel_ver_str %(echo %{!?_without_dist_kernel:%{__kernel_rpmvr}}%{?_without_dist_kernel:%{__kernel_ver}} | sed -e 's/-/_/g')
87be1cf0 300
e00dd7f6 301# sgml macros
3241033b
ER
302%xmlcat_add() /usr/bin/xmlcatalog --noout --add nextCatalog \"\" %1 /etc/xml/catalog ;
303%xmlcat_del() /usr/bin/xmlcatalog --noout --del %1 /etc/xml/catalog ;
304%xmlcat_add_rewrite /usr/bin/xmlcatalog --noout --add rewriteSystem
305%xmlcat_create() /usr/bin/xmlcatalog --noout --create %1 ;
306%sgmlcat_add() /usr/bin/install-catalog --add %1 %2 > /dev/null ;
307%sgmlcat_del() /usr/bin/install-catalog --remove %1 %2 > /dev/null ;
e00dd7f6 308%docbook_sgmlcat_fix() { for l in \
309'' \
310' -- default decl --' \
311'DTDDECL "-//OASIS//DTD DocBook XML V%2//EN" "../../xml.dcl"' \
312' -- hacks for opensp --' \
313'SYSTEM "file://%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd" "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
314'SYSTEM "http://www.oasis-open.org/docbook/xml/%2/docbookx.dtd" "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
315'' \
316; do echo $l; done >> %1 \
317}
318
eea64748
ER
319# vim - "
320
4f044018
ER
321# minimum file size needed for compressed documents.
322# just smaller files than this get larger when compressed.
a88ae20f
ER
323# some stats:
324# - 0 byte file compressed was 25 bytes .gz
325# - 39 byte file was compressed as 57
326# - with test/test.spec@man 158 byte file was compressed also 158
327%_min_compress_bytes 159
4f044018 328
9c404149
AM
329#-----------------------------------------------------------------
330# find and gzip all files in %{_mandir} and %{infodir}
331#
332# Requires: xargs, find
333#
334#%no_install_post_compress_docs 1
335%__spec_install_post_compress_docs { \
53d5af13 336%{!?no_install_post_compress_docs:__spec_install_post_compress_docs() { \
9c404149
AM
337 for i in /usr/share/man /usr/X11R6/man /usr/share/info; do \
338 if [ -d "$RPM_BUILD_ROOT$i" ]; then \
4d7e29d0 339 echo "Compress $(basename $i) pages: $i"; \
4f044018
ER
340 find "$RPM_BUILD_ROOT$i" -name '*.bz2' -print | xargs -r %{__bzip2} -df; \
341 find "$RPM_BUILD_ROOT$i" -name '*.gz' -print | xargs -r %{__gzip} -dnf; \
342 find "$RPM_BUILD_ROOT$i" -type f -size +%{_min_compress_bytes}c -print | xargs -r %{__gzip} -9nf; \
9c404149
AM
343 fi; \
344 done; \
53d5af13 345}; __spec_install_post_compress_docs } }
9c404149
AM
346
347#-----------------------------------------------------------------
348# Strip executable binaries and shared object files
349#
350# Requires: find, awk, strip, cut, xargs
351#
352#%no_install_post_strip 1
353%__spec_install_post_strip {%{!?debug: \
53d5af13 354%{!?no_install_post_strip:__spec_install_post_strip() { \
98a06bad 355if [ -d "$RPM_BUILD_ROOT" ]; then \
eea64748
ER
356 if [ -d $RPM_BUILD_ROOT/lib/modules ]; then \
357 modulelist=$(find $RPM_BUILD_ROOT/lib/modules -name '*o' -type f -print); \
358 printf "Stripping %d kernel modules..." $(echo "$modulelist" | wc -l); \
359 echo "$modulelist" | xargs -l512 chmod u+w; \
360 echo "$modulelist" | xargs -l512 %{__strip} --strip-unneeded --remove-section=.comment --remove-section=.note.GNU-stack; \
361 echo "DONE"; \
362 fi; \
74dbaec4 363 filelist=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*" ! -regex ".*/usr/lib[0-9]*/debug/.*\.debug" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*" %{?_noautostrip:! -regex "%{_noautostrip}"}`; \
eea64748 364 # vim - " \
98a06bad
ER
365 if [ -z "$filelist" ]; then \
366 return; \
367 fi; \
d5517264
ER
368 filetypes=`echo "$filelist" | xargs -r -d'\\n' file`; \
369 elfexelist=`echo "$filetypes" | awk -F: '/ELF.*executable/ {print $1}'`; \
370 elfsharedlist=`echo "$filetypes" | awk -F: '/LF.*shared object/ {print $1}'`; \
371 archiveslist=`echo "$filetypes" | awk -F '/current ar archive/ {print $1}'`; \
9c404149 372 if [ -n "$elfexelist" ]; then \
322f84b9 373 printf "Stripping %d ELF executables..." $(echo "$elfexelist" | wc -l); \
147ef2ea 374 chmod u+w $elfexelist; \
fe6c4bdd 375 %{__strip} --remove-section=.note --remove-section=.comment $elfexelist; \
322f84b9 376 echo "DONE"; \
9c404149
AM
377 fi; \
378 if [ -n "$elfsharedlist" ]; then \
322f84b9 379 printf "Stripping %d ELF shared libraries..." $(echo "$elfsharedlist" | wc -l); \
147ef2ea 380 chmod u+w $elfsharedlist; \
fe6c4bdd 381 %{__strip} --strip-unneeded --remove-section=.note --remove-section=.comment $elfsharedlist; \
322f84b9 382 echo "DONE"; \
8f74418b 383 fi; \
322f84b9
ER
384 if [ -n "$archiveslist" ]; then \
385 printf "Stripping %d ar archives..." $(echo "$elfsharedlist" | wc -l); \
386 chmod u+w $archiveslist; \
387 %{__strip} --strip-debug --remove-section=.note --remove-section=.comment $archiveslist; \
388 echo "DONE"; \
9f0d4f36 389 fi; \
53d5af13 390fi; }; __spec_install_post_strip } } }
3241033b 391
fc5d7e20 392#-----------------------------------------------------------------
393# remove all RPATH from executable binaries and shared object files
394#
395# Requires: find, awk, cut, xargs, chrpath, uname
396#
397#%no_install_post_chrpath 1
398%__spec_install_post_chrpath {%{!?debug: \
53d5af13 399%{!?no_install_post_chrpath: __spec_install_post_chrpath() { \
9f0d4f36 400if [ -d "$RPM_BUILD_ROOT" ]; then \
74dbaec4 401 files=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*" ! -regex ".*/usr/lib[0-9]*/debug/.*" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*" %{?_noautochrpath:! -regex "%{_noautochrpath}"}`; \
98a06bad 402 if [ -n "$files" ]; then \
d5517264 403 objs=`echo "$files" | xargs -r -d'\\n' file | awk -F: '/ELF.*(executable.*dynamically linked|shared object)/ {print $1}'`; \
98a06bad
ER
404 fi
405 #"
406 if [ -n "$objs" ]; then \
407 printf "Remove RPATH from %d executable binaries and shared object files.\n" $(echo "$objs" | wc -l); \
408 echo "$objs" | \
409 while read file; do \
410 rpath= ; \
411 chmod u+w "$file"; \
412 for dir in `chrpath -l "$file" | \
413 awk '/RPATH=/ { gsub(/.*RPATH=/,""); gsub(/:/," "); print $0 }'` ; do \
414 case $dir in \
415 /home/* | /tmp/* | /usr/lib | /usr/lib64 | /lib | /lib64 | /usr/local/lib | /usr/local/lib64 | /usr/X11R6/lib | /usr/X11R6/lib64 ) \
416 echo "remove-rpath: $dir in $file"; \
417 ;; \
418 * ) \
419 if [ "$rpath" = "" ] ; then rpath="$dir" ; \
420 else rpath="$rpath:$dir" ; fi ; \
421 ;; \
422 esac ; \
423 done ; \
424 if [ "$rpath" = "" ] ; then chrpath -d "$file" > /dev/null ; \
425 else chrpath -r "$rpath" "$file" > /dev/null ; fi ; \
426 done; \
427 fi; \
53d5af13 428fi; }; __spec_install_post_chrpath } } }
3241033b 429
d72c185f 430#-----------------------------------------------------------------
ccb8ae8d 431# Find and gzip all kernel modules
432#
433# Requires: find
434#
fe6c4bdd 435#%no_install_post_compress_modules 1
ccb8ae8d 436%__spec_install_post_compress_modules { \
53d5af13 437%{!?no_install_post_compress_modules: __spec_install_post_compress_modules() { \
f3bfe4ac
ER
438 if [ -d $RPM_BUILD_ROOT/lib/modules ]; then \
439 echo "Compress kernel modules"; \
440 q=$(find $RPM_BUILD_ROOT/lib/modules -name '*o' -type f -print); \
441 echo "$q" | xargs -r %{__gzip} -9nf; \
442 printf "%d modules compressed\n" $(echo "$q" | wc -l); \
443 find $RPM_BUILD_ROOT/lib/modules -name '*o' -type l -printf "%p %l\n" | \
444 while read a b; do ln -sf $b.gz $a.gz; rm -f $a; done; \
3241033b 445 fi; \
53d5af13 446}; __spec_install_post_compress_modules } }
9c404149 447
ef64802f
ER
448# Remove common Perl files we don't package
449%__spec_install_post_perl_clean {\
450%{!?no_install_post_perl_clean: \
451%{?pdir:rm -f $RPM_BUILD_ROOT{%{perl_archlib}/perllocal.pod,%{perl_vendorarch}/auto/%{pdir}%{?pnam:/%(echo %{pnam} | tr - /)}/.packlist}} \
452} }
453
83094b62 454#-----------------------------------------------------------------
0e4cb4dd 455# Update GConf2 schemas
83094b62 456#
457# Requires: GConf2
458#
46885239 459%gconf_schema_install() \
3241033b
ER
460 umask 022; \
461 GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" /usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/%{?1}%{!?1:*.schemas} > /dev/null \
462 %{nil}
46885239 463
464%gconf_schema_uninstall() \
f93109a0 465if [ $1 = 0 ]; then \
3241033b
ER
466 umask 022; \
467 GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" /usr/bin/gconftool-2 --makefile-uninstall-rule /etc/gconf/schemas/%{?1} > /dev/null \
f93109a0 468fi \
469%{nil}
470
471#-----------------------------------------------------------------
472# Update desktop MIME database
c0a4caa0 473# requires: desktop-file-utils
f93109a0 474#
820792a9 475%update_desktop_database_post() {{ \
f93109a0 476 umask 022; \
fb59e475 477 /usr/bin/update-desktop-database -q; \
4565b525 478}}
f93109a0 479
09e3522b 480%update_desktop_database_postun() {{ \
f93109a0 481if [ $1 = 0 ]; then \
482 umask 022; \
fb59e475 483 /usr/bin/update-desktop-database -q; \
f93109a0 484fi \
4565b525 485}}
f93109a0 486
fb59e475 487#-----------------------------------------------------------------
488# Update shared MIME info database
489# requires: shared-mime-info
490#
491%update_mime_database() {{ \
492 umask 022; \
493 /usr/bin/update-mime-database %{_datadir}/mime; \
494}}
495
496#-----------------------------------------------------------------
497# Update icon cache
498# requires: gtk+
499#
500%update_icon_cache() {{ \
501 umask 022; \
072f4b80 502 /usr/bin/gtk-update-icon-cache -qf %{_datadir}/icons/%1; \
fb59e475 503}}
504
f93109a0 505#-----------------------------------------------------------------
506# Update scrollkeeper database
507# requires: scrollkeeper
508#
509%scrollkeeper_update_post() \
f93109a0 510 /usr/bin/scrollkeeper-update -q; \
511 %{nil}
512
513%scrollkeeper_update_postun() \
514if [ $1 = 0 ]; then \
f93109a0 515 /usr/bin/scrollkeeper-update -q; \
516fi \
517%{nil}
518
9c404149
AM
519#-----------------------------------------------------------------
520# post %install sequence:
521# - autodeps exceptions
522# - compress all man and info pages,
523# - strip all ELF executables and ELF shared objects if not %debug.
8f74418b 524# - compress kernel modules if any
9c404149
AM
525
526###################################################################
527# Requires/Provides automation
528# exceptions system by Jacek Konieczny <jajcus@pld.org.pl>
338726a6 529#
2892b5df
JB
530%__noautoreqfiles %(sed -e s'/#.*//' /etc/rpm/noautoreqfiles)%{?_noautoreqfiles: %{_noautoreqfiles}}
531%__noautoprovfiles %(sed -e s'/#.*//' /etc/rpm/noautoprovfiles)%{?_noautoprovfiles: %{_noautoprovfiles}}
532%__noautoreq %(sed -e s'/#.*//' /etc/rpm/noautoreq)%{?_noautoreq: %{_noautoreq}}
533%__noautoreqdep %(sed -e s'/#.*//' /etc/rpm/noautoreqdep)%{?_noautoreqdep: %{_noautoreqdep}}
534%__noautoprov %(sed -e s'/#.*//' /etc/rpm/noautoprov)%{?_noautoprov: %{_noautoprov}}
338726a6
JB
535#%_noautocompressdoc %{nil}
536#
8f74418b
MM
537%_missing_doc_files_terminate_build 1%{nil}
538%_unpackaged_files_terminate_build %{nil}
8781dc74 539# (X)emacs support
d77dcb61 540%___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;}'
8781dc74
AF
541%_emacs_lispdir %(emacs %___emacs_lispdir_helper)
542%_xemacs_lispdir %(xemacs %___emacs_lispdir_helper)
25043cd4 543
02b58f60
JK
544%__php_provides %{nil}
545%__php_requires %{nil}
546%__perl_provides %{nil}
547%__perl_requires %{nil}
fa3497cd 548%__mono_provides %{nil}
549%__mono_requires %{nil}
25043cd4
AF
550
551# Perl specific macro definitions.
34f59add
ER
552%perl_privlib %(eval "`%{__perl} -V:installprivlib`"; echo $installprivlib)
553%perl_archlib %(eval "`%{__perl} -V:installarchlib`"; echo $installarchlib)
554%perl_vendorlib %(eval "`%{__perl} -V:installvendorlib`"; echo $installvendorlib)
c853f847 555%perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)
34f59add
ER
556%perl_sitelib %(eval "`%{__perl} -V:installsitelib`"; echo $installsitelib)
557%perl_sitearch %(eval "`%{__perl} -V:installsitearch`"; echo $installsitearch)
25043cd4 558
45c00b39 559# Ruby
c5472d67 560%ruby_archdir %(ruby -r rbconfig -e 'print Config::CONFIG["archdir"]' 2>/dev/null || echo ERROR)
7ccf7643 561%ruby_ridir %(ruby -r rbconfig -e 'include Config; print File.join(CONFIG["datadir"], "ri", CONFIG["ruby_version"], "system")' 2>/dev/null || echo ERROR)
c5472d67
ER
562%ruby_rubylibdir %(ruby -r rbconfig -e 'print Config::CONFIG["rubylibdir"]' 2>/dev/null || echo ERROR)
563%ruby_sitearchdir %(ruby -r rbconfig -e 'print Config::CONFIG["sitearchdir"]' 2>/dev/null || echo ERROR)
564%ruby_sitelibdir %(ruby -r rbconfig -e 'print Config::CONFIG["sitelibdir"]' 2>/dev/null || echo ERROR)
565%ruby_version %(ruby -r rbconfig -e 'print Config::CONFIG["ruby_version"]' 2>/dev/null || echo ERROR)
669604db
ER
566%ruby_ver_requires_eq Requires: ruby(ver) = %ruby_version
567%ruby_mod_ver_requires_eq Requires: ruby-modules(ver) = %ruby_version
45c00b39 568
7ccf7643 569%php_pear_dir /usr/share/pear
89f5bf64 570%php_extensiondir %(php-config --extension-dir 2>/dev/null || echo ERROR)
92fd8408 571%php_sysconfdir %(php-config --sysconfdir 2>/dev/null || echo ERROR)
25043cd4 572
c1b2705c
ER
573# directory where php includes are installed on system.
574%__php_includedir /usr/include/php
0c5d1b9b 575# extract php/zend api versions
e9b6395a 576%php_major_version %(awk '/#define PHP_MAJOR_VERSION/{print $3}' %{__php_includedir}/main/php_version.h 2>/dev/null || echo ERROR)
c1b2705c 577%php_api_version %(awk '/#define PHP_API_VERSION/{print $3}' %{__php_includedir}/main/php.h 2>/dev/null || echo ERROR)
934c685f 578%php_pdo_api_version %(awk '/#define PDO_DRIVER_API/{print $3}' %{__php_includedir}/ext/pdo/php_pdo_driver.h 2>/dev/null || echo ERROR)
68b68193 579%php_debug %(awk '/#define ZEND_DEBUG/{print $3}' %{__php_includedir}/main/php_config.h 2>/dev/null || echo ERROR)
c1b2705c
ER
580%zend_module_api %(awk '/#define ZEND_MODULE_API_NO/{print $3}' %{__php_includedir}/Zend/zend_modules.h 2>/dev/null || echo ERROR)
581%zend_extension_api %(awk '/#define ZEND_EXTENSION_API_NO/{print $3}' %{__php_includedir}/Zend/zend_extensions.h 2>/dev/null || echo ERROR)
c0ac7203 582%zend_zts %(Z=$(grep -sc '^#define ZTS 1' %{__php_includedir}/main/php_config.h); echo ${Z:-ERROR})
c1b2705c
ER
583
584# helper macro
f952c0f3 585%__php_api_requires(v:) Requires: php%{-v*}(%{expand:%1}) = %{expand:%{%{!?2:%{1}}%{?2}}}
c1b2705c
ER
586
587# macros for public use
588# for php extensions (php-pecl)
68b68193 589%requires_php_extension %{__php_api_requires modules_api php_api_version} \
415f4a1a 590%{__php_api_requires zend_module_api} \
f952c0f3
ER
591%{__php_api_requires -v %php_major_version debug php_debug} \
592%{__php_api_requires -v %php_major_version thread-safety zend_zts}
68b68193 593
c1b2705c
ER
594# for zend extensions
595%requires_zend_extension %{__php_api_requires zend_module_api} \
68b68193 596%{__php_api_requires zend_extension_api} \
f952c0f3
ER
597%{__php_api_requires -v %php_major_version debug php_debug} \
598%{__php_api_requires -v %php_major_version thread-safety zend_zts}
c1b2705c 599
934c685f
ER
600# for php pdo modules (php-pecl-PDO_*)
601%requires_php_pdo_module %{__php_api_requires PDO_API php_pdo_api_version}
602
6c3b8203
ER
603# for using PHP post scripts. for PHP >= 5.0
604%php_webserver_restart \
605[ ! -f /etc/apache/conf.d/??_mod_php.conf ] || %service -q apache restart \
578e7794 606[ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart \
ba1800dc
ER
607if [ -f /etc/rc.d/init.d/php-fcgi ]; then \
608 PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \
609 if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php.fcgi* ]]; then \
610 %service -q php-fcgi restart \
611 fi \
612fi \
6c3b8203
ER
613%{nil}
614
615# for using php post scripts. for PHP >= 4.0 && PHP < 5.0
616%php4_webserver_restart \
617[ ! -f /etc/apache/conf.d/??_mod_php4.conf ] || %service -q apache restart \
578e7794 618[ ! -f /etc/httpd/conf.d/??_mod_php4.conf ] || %service -q httpd restart \
ba1800dc
ER
619if [ -f /etc/rc.d/init.d/php-fcgi ]; then \
620 PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \
621 if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php4.fcgi* ]]; then \
622 %service -q php-fcgi restart \
623 fi \
624fi \
6c3b8203
ER
625%{nil}
626
25043cd4
AF
627# Python specific macro definitions.
628# python main version
7ccf7643 629%py_ver %(python -c "import sys; print sys.version[:3]")
25043cd4
AF
630
631# directories
3241033b
ER
632%py_prefix %(python -c "import sys; print sys.prefix")
633%py_libdir %{py_prefix}/%{_lib}/python%{py_ver}
ef7ec0a8 634%py_scriptdir %{py_prefix}/share/python%{py_ver}
3241033b 635%py_incdir /usr/include/python%{py_ver}
7ccf7643 636%py_sitedir %{py_libdir}/site-packages
ef7ec0a8 637%py_sitescriptdir %{py_scriptdir}/site-packages
3241033b 638%py_dyndir %{py_libdir}/lib-dynload
25043cd4
AF
639
640# pure python modules compilation
3241033b 641%py_comp python -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
25043cd4 642
3241033b 643%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
644
645# Software written in Python language require Python with main version
e63cd81d 646%pyrequires_eq() Requires: %1
25043cd4 647
f12c2314
AF
648# Hardlink binary identical .pyc and .pyo files
649# (idea by glen <at> pld-linux <dot> org)
650%__spec_install_post_py_hardlink {\
53d5af13 651%{!?no_install_post_py_hardlink: __spec_install_post_py_hardlink() { \
f12c2314
AF
652[ ! -d "$RPM_BUILD_ROOT" ] || find "$RPM_BUILD_ROOT" -name '*.pyc' | while read a; do \
653 b="$(echo $a|sed -e 's/.pyc$/.pyo/')"; \
654 if cmp -s "$a" "$b"; then \
655 ln -f "$a" "$b"; \
656 fi; \
657done \
53d5af13 658}; __spec_install_post_py_hardlink } }
f12c2314 659
9227b3f9 660# remove python sources, so that check-files won't complain
f12c2314
AF
661# (idea by glen <at> pld-linux <dot> org)
662%py_postclean() \
0f82e280 663for d in %{py_sitescriptdir} %{py_sitedir} %*; do \
820792a9 664 [ ! -d "$RPM_BUILD_ROOT$d" ] || find "$RPM_BUILD_ROOT$d" -name '*.py' -print0 | xargs -0r -l512 rm;\
f12c2314
AF
665done \
666%{nil}
667
0fc5cff8 668# depmod macro
669%depmod() { \
f6148427 670umask 022; \
0fc5cff8 671if [ -e /boot/System.map-%1 ]; then \
3241033b 672 /sbin/depmod -a -F /boot/System.map-%1 %1; \
0fc5cff8 673else \
3241033b
ER
674 if [ -e /boot/System.map ]; then \
675 /sbin/depmod -a -F /boot/System.map %1; \
676 else \
677 /sbin/depmod -a %1; \
678 fi \
0fc5cff8 679fi; \
680}
681
2afc6e64 682# XMMS specific macros
3241033b
ER
683%xmms_prefix %(xmms-config --prefix 2>/dev/null)
684%xmms_exec_prefix %(xmms-config --exec-prefix 2>/dev/null)
685%xmms_version %(xmms-config --version 2>/dev/null)
686%xmms_datadir %(xmms-config --data-dir 2>/dev/null)
687%xmms_plugindir %(xmms-config --plugin-dir 2>/dev/null)
688%xmms_visualization_plugindir %(xmms-config --visualization-plugin-dir 2>/dev/null)
689%xmms_input_plugindir %(xmms-config --input-plugin-dir 2>/dev/null)
690%xmms_output_plugindir %(xmms-config --output-plugin-dir 2>/dev/null)
691%xmms_effect_plugindir %(xmms-config --effect-plugin-dir 2>/dev/null)
692%xmms_general_plugindir %(xmms-config --general-plugin-dir 2>/dev/null)
2afc6e64 693
d1537778
PS
694%_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/')
695
848c0d68 696# user/group checking macros
697#
698# Usage:
699# %userremove myuser
700#
701%userremove /usr/lib/rpm/user_group.sh user del
702%groupremove /usr/lib/rpm/user_group.sh group del
703#
704# Usage:
705# if %usertestrm myuser; then
706# /usr/sbin/userdel -r myuser
707# Note:
708# use these macros only if you need to call userdel/groupdel with
709# a non-standard option or take an extra action; otherwise use the
710# %userremove/%groupremove macros
711#
712%usertestrm /usr/lib/rpm/user_group.sh user testrm
713%grouptestrm /usr/lib/rpm/user_group.sh group testrm
08d9b1f6
JK
714# user group membership management macros
715#
716# Usage:
717# %addusertogroup myuser agroup
718#
719%addusertogroup /usr/lib/rpm/user_group.sh user addtogroup
72fcfcb3 720
721# banner support (useful in {pre,post}{,un} and triggers)
722#
723# Usage:
aa41c920 724# %banner name [-a] [-e] [-n] [-tn] <<EOF
72fcfcb3 725# the banner text, the banner text
aa41c920
ER
726# the banner text, and following line
727#EOF
728# You can use any form of here-document, <<'EOF' <<-EOT will do.
729# NOTE: if your use "<<-EOF", then You can actually indent inside here-document.
730#
72fcfcb3 731# -a - append to the banner
a8b9562a 732# -e - send to stderr instead of stdout
628754cb 733# -n - no show banner (overrides -t)
734# -t - show only, if RPM_SCRIPTVERBOSITY >= n; default n=5
aa41c920 735%banner(aent:) \
1b334fe4 736RPM_SCRIPTVERBOSITY=5 \
737[ -r /etc/sysconfig/rpm ] && . /etc/sysconfig/rpm \
738if [ -x /usr/bin/banner.sh ]; then \
aa41c920 739 CMD="/usr/bin/banner.sh %{-e:--stderr} %{!-n:$([ $RPM_SCRIPTVERBOSITY -ge %{-t:%{-t*}}%{!-t:5} ] && echo -s)} %{!-a:-m}%{-a:-M} %1" \
1b334fe4 740else \
a8b9562a 741 CMD="cat%{-e: >&2}" \
1b334fe4 742fi \
c2e886e1 743eval $CMD %2%{?3: %3} \
72fcfcb3 744%nil
628754cb 745
990bd03f
ER
746# useradd/groupadd macros
747