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