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