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