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