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