]> git.pld-linux.org Git - packages/rpm-build-macros.git/blame - rpm.macros
- rpm_macros_rev 1.225
[packages/rpm-build-macros.git] / rpm.macros
CommitLineData
d54662bf
AF
1# PLD rpm macros
2
f633038a 3# other macros
e05017c1 4%epoch 0
f633038a
AM
5%_enable_debug_packages 1
6
8f74418b
MM
7%__id @__ID@
8%__id_u %{__id} -u
9%__chown_Rhf @__CHOWN_RHF@
10%__chgrp_Rhf @__CHGRP_RHF@
11
07163ba3 12%_fixowner [ `%{__id_u}` = '0' ] && %{__chown_Rhf} root:@ROOT_GROUP@
d54662bf 13%_fixgroup true
16cb1d91 14%_fixperms %{__chmod} -Rf @FIXPERMS@
d54662bf 15%_topdir %(echo $HOME)/rpm
9c404149
AM
16#-----------------------------------------------------------------
17# CFLAGS and LDFLAGS used to build
18
7bec8f51 19%debuginfocflags %{expand:%%define __dic_%{?_enable_debug_packages} 1}%{?__dic_1: -ggdb}%{expand:%%undefine __dic_%{?_enable_debug_packages}}
f633038a 20
8f74418b 21%debugcflags -O0 -g -Wall
82656cfe 22%rpmcflags %{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}
1c69492b 23%rpmcxxflags %{rpmcflags} -fvisibility-inlines-hidden
8a9c8197 24%rpmldflags %{nil}
d23d3883 25# %rpmldflags -Wl,--as-needed
9c404149 26
ba1fdedc 27# kernel compiler
d2e1bc22 28%kgcc gcc
29%kgcc_package gcc
ba1fdedc 30
33040789 31# Build system path macros.
32#
bddadece
JB
33%__autoconf autoconf %{?debug:-Wall}
34%__automake automake -a -c -f --foreign
f93109a0 35%__autopoint autopoint --force
36
83094b62 37%__gettextize { \
afff6d37 38 if ! gettextize --version | grep -q '0\.10\.' ; then \
8a995cff
JB
39 if grep -qs 'AM_GNU_GETTEXT.*external' configure.{ac,in} ; then \
40 gettextize --copy --force --no-changelog; \
97589b6e 41 else \
8a995cff
JB
42 gettextize --copy --force --no-changelog --intl; \
43 fi; \
44 if [ ! -f po/Makevars ]; then \
45 cp -f po/Makevars{.template,}; \
46 fi; \
47 else \
48 gettextize --copy --force; \
83094b62 49 fi; \
8a995cff 50}
f93109a0 51
52%__glib_gettextize glib-gettextize --copy --force
53%__gnome_doc_common gnome-doc-common --copy
54%__gtkdocize gtkdocize --copy
55%__intltoolize intltoolize --copy --force
56%__libtoolize libtoolize --copy --force
33040789 57
6a5eda77 58%dependencytracking %{nil}
9c404149 59#-----------------------------------------------------------------
9f4ce098 60%configure2_13 { \
9c404149
AM
61 if [ -n "$LINGUAS" ]; then unset LINGUAS; fi; \
62 LDFLAGS="${LDFLAGS:-%rpmldflags}" ; export LDFLAGS ; \
63 CFLAGS="${CFLAGS:-%rpmcflags}" ; export CFLAGS ; \
f4cc8832 64 CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" ; export CXXFLAGS ; \
9c404149 65 FFLAGS="${FFLAGS:-%rpmcflags}" ; export FFLAGS ; \
8ec1a12b 66 CPPFLAGS="${CPPFLAGS:-}" ; export CPPFLAGS ; \
8983c4c4
AM
67 %{?__cc:CC="%{__cc}" ; export CC ; } \
68 %{?__cxx:CXX="%{__cxx}" ; export CXX ; } \
8f74418b 69 %{?configuredir:%{configuredir}}%{!?configuredir:.}/configure \
2a7cfd3f 70 --host=%{_target_platform} \
9c404149
AM
71 --prefix=%{_prefix} \
72 --exec-prefix=%{_exec_prefix} \
73 --bindir=%{_bindir} \
74 --sbindir=%{_sbindir} \
75 --sysconfdir=%{_sysconfdir} \
76 --datadir=%{_datadir} \
77 --includedir=%{_includedir} \
78 --libdir=%{_libdir} \
79 --libexecdir=%{_libexecdir} \
80 --localstatedir=%{_localstatedir} \
81 --sharedstatedir=%{_sharedstatedir} \
82 --mandir=%{_mandir} \
83 --infodir=%{_infodir} \
c0d1b3ad 84 --x-libraries=/usr/X11R6/%{_lib} \
93059874 85 %{dependencytracking} \
9c404149
AM
86}
87
4a6b0d54 88#----------------------------------------------------------------
73f832b3 89%global configure_cache 0
90%configure_cache_file %{buildroot}.configure.cache
91
57f4166d 92%configure {./configure \
4a6b0d54
AF
93 LDFLAGS="${LDFLAGS:-%rpmldflags}" \
94 CFLAGS="${CFLAGS:-%rpmcflags}" \
f4cc8832 95 CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" \
4a6b0d54 96 FFLAGS="${FFLAGS:-%rpmcflags}" \
a2bd5992 97 CPPFLAGS="${CPPFLAGS:-}" \
8983c4c4
AM
98 %{?__cc:CC="%{__cc}"} \
99 %{?__cxx:CXX="%{__cxx}"} \
4a6b0d54
AF
100 --build=%{_target_platform} \
101 --prefix=%{_prefix} \
102 --exec-prefix=%{_exec_prefix} \
103 --bindir=%{_bindir} \
104 --sbindir=%{_sbindir} \
105 --sysconfdir=%{_sysconfdir} \
106 --datadir=%{_datadir} \
107 --includedir=%{_includedir} \
108 --libdir=%{_libdir} \
109 --libexecdir=%{_libexecdir} \
110 --localstatedir=%{_localstatedir} \
111 --sharedstatedir=%{_sharedstatedir} \
112 --mandir=%{_mandir} \
113 --infodir=%{_infodir} \
c0d1b3ad 114 --x-libraries=/usr/X11R6/%{_lib} \
93059874 115 %{dependencytracking} \
73f832b3 116 %{?configure_cache:--cache-file=%{configure_cache_file:-%{buildroot}.configure.cache}} \
4a6b0d54
AF
117}
118
7dbab518 119# ------------------------------------------------------------------------
c80506a3
AM
120# Overloading of some basic macros
121%prep \
122%%prep\
123LANG=C\
124export LANG\
14e77e64 125unset DISPLAY ||:\
6db5639d 126unset LINGUAS ||:\
c80506a3
AM
127%{nil}
128
129%build %%build\
130LANG=C\
131export LANG\
14e77e64 132unset DISPLAY ||:\
6db5639d 133unset LINGUAS ||:\
c80506a3
AM
134%{nil}
135
136%install %{?_enable_debug_packages:%{?buildsubdir:%{debug_package}}}\
137%%install\
138LANG=C\
139export LANG\
14e77e64 140unset DISPLAY ||:\
6db5639d 141unset LINGUAS ||:\
c80506a3
AM
142%{nil}
143
144# ------------------------------------------------------------------------
7dbab518
MM
145# Conditional build stuff.
146
147# Check if symbol is defined.
148# Example usage: %if %{defined with_foo} && %{undefined with_bar} ...
149%defined() %{expand:%%{?%{1}:1}%%{!?%{1}:0}}
150%undefined() %{expand:%%{?%{1}:0}%%{!?%{1}:1}}
151
566fa098
MM
152# Shorthand for %{defined with_...}
153%with() %{expand:%%{?with_%{1}:1}%%{!?with_%{1}:0}}
154%without() %{expand:%%{?with_%{1}:0}%%{!?with_%{1}:1}}
155
7dbab518
MM
156# Handle conditional builds. %bcond_with is for case when feature is
157# default off and needs to be activated with --with ... command line
158# switch. %bcond_without is for the dual case.
159#
160# %bcond_with foo defines symbol with_foo if --with foo was specified on
161# command line.
162# %bcond_without foo defines symbol with_foo if --without foo was *not*
163# specified on command line.
164#
165# For example:
166#
167# %bcond_with extra_fonts
168# %bcond_without static
f52f9976 169# %if %{with extra_fonts}
7dbab518
MM
170# ...
171# %endif
f52f9976 172# %ifdef %{with static}
7dbab518
MM
173# ...
174# %endif
175# %{?with_static: ... }
176# %{!?with_static: ... }
177# %{?with_extra_fonts: ... }
178# %{!?with_extra_fonts: ... }
179#
180# The bottom line: never use without_foo, _with_foo nor _without_foo, only
181# with_foo. This way changing default set of bconds for given spec is just
182# a matter of changing single line in it and syntax is more readable.
183%bcond_with() %{expand:%%{?_with_%{1}:%%global with_%{1} 1}}
184%bcond_without() %{expand:%%{!?_without_%{1}:%%global with_%{1} 1}}
185# ------------------------------------------------------------------------
186
9c404149
AM
187# Location of autoconf macros
188%_aclocaldir %(aclocal --print-ac-dir)
189
e2804f99
AM
190# Location of omf files
191%_omf_dest_dir %(scrollkeeper-config --omfdir)
192
e987a186 193# Location of pkgconfig files
9a4e877a 194%_pkgconfigdir /usr/%{_lib}/pkgconfig
e987a186 195
486b0b5f 196# Location of desktop files
197%_desktopdir /usr/share/applications
86dff2d0 198%_applnkdir ERROR:_applnkdir_is_obsolete_use_desktopdir_instead
486b0b5f 199
481463e9 200# Location of pixmaps for applnk/desktop files
e1f0a822 201%_pixmapsdir /usr/share/pixmaps
9c404149 202
481463e9 203# Location of themable icons for applnk/desktop files
b36c8e2a 204%_iconsdir /usr/share/icons
205
e987a186
JB
206# Location of fonts directories
207%_fontsdir /usr/share/fonts
208
b3282f3f 209# Location of Gtk and associated libraries documentation
6eed6d84 210%_gtkdocdir %{_defaultdocdir}/gtk-doc/html
b3282f3f 211
fc4d7771 212# Location of KDE documentation
213%_kdedocdir %{_defaultdocdir}/kde/HTML
214
5869828c 215# unsermake script
216%__unsermake /usr/share/unsermake/unsermake
217
9c404149
AM
218# Current date
219%date %(LC_ALL="C" date +"%a %b %d %Y")
220
221# tmp directory
222%tmpdir %(echo "${TMPDIR:-/tmp}")
223
224# Example files, programs, scripts...
225%_examplesdir /usr/src/examples
226
8377d27d 227# The directory holding Linux kernel sources
228%_kernelsrcdir /usr/src/linux
229
9c404149 230# If non-empty "debug" macro defined, add "dbg" suffix to release number
8f74418b 231%_rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}%{?debug:dbg}.%%{ARCH}.rpm
9c404149 232
8f74418b 233# Requires name = version-release
16cb1d91 234%requires_releq() %(LC_ALL="C" echo '%*' | xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}-%%{release}\\n' | sed -e 's/ (none):/ /' | grep -v "is not")
8bf3719d 235
c12095e9
PS
236%releq_kernel_up() %(LC_ALL="C" rpm -qf --qf '%%{name}-up = %%{epoch}:%%{version}-%%{release}\\n' %{_kernelsrcdir}/include/linux/version.h | sed -e 's/ (none):/ /' | sed -e 's:-headers::' | grep -vE "(is not|no such)")
237%releq_kernel_smp() %(LC_ALL="C" rpm -qf --qf '%%{name}-smp = %%{epoch}:%%{version}-%%{release}\\n' %{_kernelsrcdir}/include/linux/version.h | sed -e 's/ (none):/ /' | sed -e 's:-headers::' | grep -vE "(is not|no such)")
238%requires_releq_kernel_up() %(LC_ALL="C" rpm -qf --qf 'PreReq: %%{name}-up = %%{epoch}:%%{version}-%%{release}\\n' %{_kernelsrcdir}/include/linux/version.h | sed -e 's/ (none):/ /' | sed -e 's:-headers::' | grep -vE "(is not|no such)")
239%requires_releq_kernel_smp() %(LC_ALL="C" rpm -qf --qf 'PreReq: %%{name}-smp = %%{epoch}:%%{version}-%%{release}\\n' %{_kernelsrcdir}/include/linux/version.h | sed -e 's/ (none):/ /' | sed -e 's:-headers::' | grep -vE "(is not|no such)")
8bf3719d 240
16cb1d91 241%requires_eq_to() %(LC_ALL="C" rpm -q --qf 'Requires: %1 = %%{epoch}:%%{version}\\n' %2 | sed -e 's/ (none):/ /' | grep -v "is not")
01a9f990 242
179fcc7f 243%apache_modules_api %(awk '/#define MODULE_MAGIC_NUMBER_MAJOR/ {print $3}' /usr/include/apache/ap_mmn.h 2>/dev/null || echo ERROR)
b9d5d440 244
245# kernel version-release handling
541d11fe 246%__kernel_ver %([ -f %{_kernelsrcdir}/include/linux/version.h ] && (grep UTS_RELEASE %{_kernelsrcdir}/include/linux/version.h 2>/dev/null | head -n 1 | cut -d'"' -f2) || (awk '/^VERSION/ { ver = $0; gsub(/VERSION.*=/, NIL, ver); } /^PATCHLEVEL/ { plev = $0; gsub(/PATCHLEVEL.*=/, NIL, plev); } /^SUBLEVEL/ { slev = $0; gsub(/SUBLEVEL.*=/, NIL, slev); } /^EXTRAVERSION/ { ever = $0; gsub(/EXTRAVERSION.*=/, NIL, ever); gsub(/ /, NIL, ever); } END { printf("%d.%d.%d%s", ver, plev, slev, ever); }' %{_kernelsrcdir}/Makefile 2> /dev/null))
f004e915
PS
247%__kernel_rel %(LC_ALL="C" rpm -qf %{_kernelsrcdir}/include/linux/fs.h 2>/dev/null --qf "%{RELEASE}" | grep -v "is not")
248%__kernel_rpmvr %(LC_ALL="C" rpm -qf %{_kernelsrcdir}/include/linux/fs.h 2>/dev/null --qf "%{VERSION}-%{RELEASE}" | grep -v "is not")
16cb1d91 249%_kernel_ver %{__kernel_ver}%{?with_dist_kernel:%(echo %{__kernel_ver} | grep -q -e - || echo -%{__kernel_rel})}
f62e856d 250%_kernel_ver_str %(echo %{!?_without_dist_kernel:%{__kernel_rpmvr}}%{?_without_dist_kernel:%{__kernel_ver}} | sed -e 's/-/_/g')
87be1cf0 251
e00dd7f6 252# sgml macros
741b471b 253%xmlcat_add() /usr/bin/xmlcatalog --noout --add nextCatalog \"\" %1 /etc/xml/catalog ;
254%xmlcat_del() /usr/bin/xmlcatalog --noout --del %1 /etc/xml/catalog ;
847db862 255%xmlcat_add_rewrite /usr/bin/xmlcatalog --noout --add rewriteSystem
741b471b 256%xmlcat_create() /usr/bin/xmlcatalog --noout --create %1 ;
257%sgmlcat_add() /usr/bin/install-catalog --add %1 %2 > /dev/null ;
258%sgmlcat_del() /usr/bin/install-catalog --remove %1 %2 > /dev/null ;
e00dd7f6 259%docbook_sgmlcat_fix() { for l in \
260'' \
261' -- default decl --' \
262'DTDDECL "-//OASIS//DTD DocBook XML V%2//EN" "../../xml.dcl"' \
263' -- hacks for opensp --' \
264'SYSTEM "file://%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd" "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
265'SYSTEM "http://www.oasis-open.org/docbook/xml/%2/docbookx.dtd" "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
266'' \
267; do echo $l; done >> %1 \
268}
269
9c404149
AM
270#-----------------------------------------------------------------
271# find and gzip all files in %{_mandir} and %{infodir}
272#
273# Requires: xargs, find
274#
275#%no_install_post_compress_docs 1
276%__spec_install_post_compress_docs { \
9c404149 277%{!?no_install_post_compress_docs: \
822d4d81 278 echo "Compress man and info pages."; \
9c404149
AM
279 %{?verbose:set -x;} \
280 for i in /usr/share/man /usr/X11R6/man /usr/share/info; do \
281 if [ -d "$RPM_BUILD_ROOT$i" ]; then \
282 find "$RPM_BUILD_ROOT$i" -name \*.bz2 -print | xargs -r %{__bzip2} -df; \
283 find "$RPM_BUILD_ROOT$i" -name \*.gz -print | xargs -r %{__gzip} -dnf; \
284 find "$RPM_BUILD_ROOT$i" -type f -print | xargs -r %{__gzip} -9nf; \
285 fi; \
286 done; \
287} }
288
289#-----------------------------------------------------------------
290# Strip executable binaries and shared object files
291#
292# Requires: find, awk, strip, cut, xargs
293#
294#%no_install_post_strip 1
295%__spec_install_post_strip {%{!?debug: \
296%{!?no_install_post_strip: \
9f0d4f36
JB
297 %{?verbose:set -x;} \
298 if [ -d "$RPM_BUILD_ROOT" ]; then \
8f74418b 299 echo "Strip executable binaries, archives and shared object files."; \
60ad88f2 300 filelist=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*" %{?_noautostrip:! -regex "%{_noautostrip}"}`; \
9c404149
AM
301 elfexelist=`echo $filelist | xargs -r file | \
302 awk '/ELF.*executable/ {print $1}' | cut -d: -f1`; \
303 elfsharedlist=`echo $filelist | xargs -r file | \
304 awk '/LF.*shared object/ {print $1}' | cut -d: -f1`; \
8f74418b
MM
305 elfarchiveslist=`echo $filelist | xargs -r file | \
306 awk '/current ar archive/ {print $1}' | cut -d: -f1`; \
9c404149 307 if [ -n "$elfexelist" ]; then \
60ad88f2 308 %{__strip} --remove-section=.note --remove-section=.comment $elfexelist; \
9c404149
AM
309 fi; \
310 if [ -n "$elfsharedlist" ]; then \
60ad88f2 311 %{__strip} --strip-unneeded --remove-section=.note --remove-section=.comment $elfsharedlist; \
8f74418b
MM
312 fi; \
313 if [ -n "$elfarchiveslist" ]; then \
60ad88f2 314 %{__strip} --strip-debug --remove-section=.note --remove-section=.comment $elfarchiveslist; \
9f0d4f36
JB
315 fi; \
316 fi; } \
9c404149 317} }
fc5d7e20 318#-----------------------------------------------------------------
319# remove all RPATH from executable binaries and shared object files
320#
321# Requires: find, awk, cut, xargs, chrpath, uname
322#
323#%no_install_post_chrpath 1
324%__spec_install_post_chrpath {%{!?debug: \
325%{!?no_install_post_chrpath: \
326 %{?verbose:set -x;} \
9f0d4f36 327if [ -d "$RPM_BUILD_ROOT" ]; then \
fc5d7e20 328echo "Remove RPATH from executable binaries and shared object files."; \
adb39da4 329find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*" ! -regex ".*/usr/lib[0-9]*/debug/.*" %{?_noautochrpath:! -regex "%{_noautochrpath}"} | xargs -r file | \
5bed2bb7 330 awk '/ELF.*(executable.*dynamically linked|shared object)/ {print $1}' | cut -d: -f1 | \
fc5d7e20 331while read file ; do \
332 rpath= ; \
333 chmod u+w "$file"; \
334 for dir in `chrpath -l "$file" | \
335 awk '/RPATH=/ { gsub(/.*RPATH=/,""); gsub(/:/," "); print $0 }'` ; do \
336 case $dir in \
494e368c 337 /home/* | /tmp/* | /usr/lib | /usr/lib64 | /lib | /lib64 | /usr/local/lib | /usr/local/lib64 | /usr/X11R6/lib | /usr/X11R6/lib64 ) \
fc5d7e20 338 echo "remove-rpath: $dir in $file"; \
339 ;; \
340 * ) \
341 if [ "$rpath" = "" ] ; then rpath="$dir" ; \
342 else rpath="$rpath:$dir" ; fi ; \
343 ;; \
344 esac ; \
345 done ; \
346 if [ "$rpath" = "" ] ; then chrpath -d "$file" > /dev/null ; \
347 else chrpath -r "$rpath" "$file" > /dev/null ; fi ; \
9f0d4f36
JB
348done; \
349fi; } \
fc5d7e20 350} }
d72c185f 351#-----------------------------------------------------------------
ccb8ae8d 352# Find and gzip all kernel modules
353#
354# Requires: find
355#
356#%no_install_post_compress_modules 1
357%__spec_install_post_compress_modules { \
ccb8ae8d 358%{!?no_install_post_compress_modules: \
359 %{?verbose:set -x;} \
9f0d4f36
JB
360 if [ -d "$RPM_BUILD_ROOT" ]; then \
361echo "Compress kernel modules if any."; \
d618340e 362 if test -d $RPM_BUILD_ROOT/lib/modules ; then \
16cb1d91
JB
363 find $RPM_BUILD_ROOT/lib/modules -name \*o -type f -print | \
364 xargs -r %{__gzip} -9nf; \
a33b1418 365 find $RPM_BUILD_ROOT/lib/modules -name \*o -type l -printf "%p %l\n" | \
03b234a5 366 while read a b; do ln -sf $b.gz $a.gz; rm -f $a; done; \
d618340e 367 fi; \
9f0d4f36 368 fi; \
ccb8ae8d 369} }
9c404149
AM
370
371%_source_payload w9.gzdio
372%_binary_payload w9.bzdio
373
83094b62 374#-----------------------------------------------------------------
0e4cb4dd 375# Update GConf2 schemas
83094b62 376#
377# Requires: GConf2
378#
46885239 379%gconf_schema_install() \
380 umask 022; \
f93109a0 381 GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" /usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/%{?1}%{!?1:*.schemas} > /dev/null \
46885239 382 %{nil}
383
384%gconf_schema_uninstall() \
f93109a0 385if [ $1 = 0 ]; then \
46885239 386 umask 022; \
f93109a0 387 GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" /usr/bin/gconftool-2 --makefile-uninstall-rule /etc/gconf/schemas/%{?1} > /dev/null \
388fi \
389%{nil}
390
391#-----------------------------------------------------------------
392# Update desktop MIME database
393# requries: desktop-file-utils
394#
820792a9 395%update_desktop_database_post() {{ \
f93109a0 396 umask 022; \
397 /usr/bin/update-desktop-database; \
4565b525 398}}
f93109a0 399
09e3522b 400%update_desktop_database_postun() {{ \
f93109a0 401if [ $1 = 0 ]; then \
402 umask 022; \
403 /usr/bin/update-desktop-database; \
404fi \
4565b525 405}}
f93109a0 406
407#-----------------------------------------------------------------
408# Update scrollkeeper database
409# requires: scrollkeeper
410#
411%scrollkeeper_update_post() \
f93109a0 412 /usr/bin/scrollkeeper-update -q; \
413 %{nil}
414
415%scrollkeeper_update_postun() \
416if [ $1 = 0 ]; then \
f93109a0 417 /usr/bin/scrollkeeper-update -q; \
418fi \
419%{nil}
420
421#-----------------------------------------------------------------
422# Run ldconfig after installing/deinstalling libraries
423#
424%ldconfig_post() \
425 /sbin/ldconfig; \
426 %{nil}
427
428%ldconfig_postun() \
f93109a0 429 /sbin/ldconfig; \
b430f866 430 %{nil}
83094b62 431
9c404149
AM
432#-----------------------------------------------------------------
433# post %install sequence:
434# - autodeps exceptions
435# - compress all man and info pages,
436# - strip all ELF executables and ELF shared objects if not %debug.
8f74418b 437# - compress kernel modules if any
9c404149
AM
438
439###################################################################
440# Requires/Provides automation
441# exceptions system by Jacek Konieczny <jajcus@pld.org.pl>
338726a6 442#
2892b5df
JB
443%__noautoreqfiles %(sed -e s'/#.*//' /etc/rpm/noautoreqfiles)%{?_noautoreqfiles: %{_noautoreqfiles}}
444%__noautoprovfiles %(sed -e s'/#.*//' /etc/rpm/noautoprovfiles)%{?_noautoprovfiles: %{_noautoprovfiles}}
445%__noautoreq %(sed -e s'/#.*//' /etc/rpm/noautoreq)%{?_noautoreq: %{_noautoreq}}
446%__noautoreqdep %(sed -e s'/#.*//' /etc/rpm/noautoreqdep)%{?_noautoreqdep: %{_noautoreqdep}}
447%__noautoprov %(sed -e s'/#.*//' /etc/rpm/noautoprov)%{?_noautoprov: %{_noautoprov}}
338726a6
JB
448#%_noautocompressdoc %{nil}
449#
8f74418b
MM
450%_missing_doc_files_terminate_build 1%{nil}
451%_unpackaged_files_terminate_build %{nil}
8781dc74 452# (X)emacs support
d77dcb61 453%___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;}'
8781dc74
AF
454%_emacs_lispdir %(emacs %___emacs_lispdir_helper)
455%_xemacs_lispdir %(xemacs %___emacs_lispdir_helper)
25043cd4 456
02b58f60
JK
457%__php_provides %{nil}
458%__php_requires %{nil}
459%__perl_provides %{nil}
460%__perl_requires %{nil}
25043cd4
AF
461
462# Perl specific macro definitions.
c853f847
AF
463%perl_privlib %(eval "`%{__perl} -V:installprivlib`"; echo $installprivlib)
464%perl_archlib %(eval "`%{__perl} -V:installarchlib`"; echo $installarchlib)
465%perl_vendorlib %(eval "`%{__perl} -V:installvendorlib`"; echo $installvendorlib)
466%perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)
467%perl_sitelib %(eval "`%{__perl} -V:installsitelib`"; echo $installsitelib)
468%perl_sitearch %(eval "`%{__perl} -V:installsitearch`"; echo $installsitearch)
25043cd4 469
c853f847 470%php_pear_dir %{_datadir}/pear
25043cd4
AF
471
472# Python specific macro definitions.
473# python main version
c853f847 474%py_ver %(echo `python -c "import sys; print sys.version[:3]"`)
25043cd4
AF
475
476# directories
c853f847 477%py_prefix %(echo `python -c "import sys; print sys.prefix"`)
aadb0079 478%py_libdir %{py_prefix}/%{_lib}/python%{py_ver}
ef7ec0a8 479%py_scriptdir %{py_prefix}/share/python%{py_ver}
c853f847 480%py_incdir /usr/include/python%{py_ver}
ef7ec0a8
JK
481%py_sitedir %{py_libdir}/site-packages
482%py_sitescriptdir %{py_scriptdir}/site-packages
c853f847 483%py_dyndir %{py_libdir}/lib-dynload
25043cd4
AF
484
485# pure python modules compilation
c853f847 486%py_comp python -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
25043cd4 487
c853f847 488%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
489
490# Software written in Python language require Python with main version
e63cd81d 491%pyrequires_eq() Requires: %1
25043cd4 492
f12c2314
AF
493
494# Hardlink binary identical .pyc and .pyo files
495# (idea by glen <at> pld-linux <dot> org)
496%__spec_install_post_py_hardlink {\
d56b7e24 497%{!?no_install_post_py_hardlink: \
f12c2314
AF
498[ ! -d "$RPM_BUILD_ROOT" ] || find "$RPM_BUILD_ROOT" -name '*.pyc' | while read a; do \
499 b="$(echo $a|sed -e 's/.pyc$/.pyo/')"; \
500 if cmp -s "$a" "$b"; then \
501 ln -f "$a" "$b"; \
502 fi; \
503done \
504} }
505
9227b3f9 506# remove python sources, so that check-files won't complain
f12c2314
AF
507# (idea by glen <at> pld-linux <dot> org)
508%py_postclean() \
509for d in %{py_sitescriptdir} %{py_sitedir}; do \
820792a9 510 [ ! -d "$RPM_BUILD_ROOT$d" ] || find "$RPM_BUILD_ROOT$d" -name '*.py' -print0 | xargs -0r -l512 rm;\
f12c2314
AF
511done \
512%{nil}
513
0fc5cff8 514# depmod macro
515%depmod() { \
f6148427 516umask 022; \
0fc5cff8 517if [ -e /boot/System.map-%1 ]; then \
518 /sbin/depmod -a -F /boot/System.map-%1 %1; \
519else \
520 if [ -e /boot/System.map ]; then \
521 /sbin/depmod -a -F /boot/System.map %1; \
522 else \
523 /sbin/depmod -a %1; \
524 fi \
525fi; \
526}
527
2afc6e64 528# XMMS specific macros
2d372986
JB
529%xmms_prefix %(xmms-config --prefix)
530%xmms_exec_prefix %(xmms-config --exec-prefix)
531%xmms_version %(xmms-config --version)
532%xmms_datadir %(xmms-config --data-dir)
533%xmms_plugindir %(xmms-config --plugin-dir)
534%xmms_visualization_plugindir %(xmms-config --visualization-plugin-dir)
535%xmms_input_plugindir %(xmms-config --input-plugin-dir)
536%xmms_output_plugindir %(xmms-config --output-plugin-dir)
537%xmms_effect_plugindir %(xmms-config --effect-plugin-dir)
538%xmms_general_plugindir %(xmms-config --general-plugin-dir)
2afc6e64 539
d1537778
PS
540%_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/')
541
f031b1b0 542%x8664 x86_64 amd64 ia32e
848c0d68 543
544# user/group checking macros
545#
546# Usage:
547# %userremove myuser
548#
549%userremove /usr/lib/rpm/user_group.sh user del
550%groupremove /usr/lib/rpm/user_group.sh group del
551#
552# Usage:
553# if %usertestrm myuser; then
554# /usr/sbin/userdel -r myuser
555# Note:
556# use these macros only if you need to call userdel/groupdel with
557# a non-standard option or take an extra action; otherwise use the
558# %userremove/%groupremove macros
559#
560%usertestrm /usr/lib/rpm/user_group.sh user testrm
561%grouptestrm /usr/lib/rpm/user_group.sh group testrm
08d9b1f6
JK
562# user group membership management macros
563#
564# Usage:
565# %addusertogroup myuser agroup
566#
567%addusertogroup /usr/lib/rpm/user_group.sh user addtogroup
72fcfcb3 568
569# banner support (useful in {pre,post}{,un} and triggers)
570#
571# Usage:
aa41c920 572# %banner name [-a] [-e] [-n] [-tn] <<EOF
72fcfcb3 573# the banner text, the banner text
aa41c920
ER
574# the banner text, and following line
575#EOF
576# You can use any form of here-document, <<'EOF' <<-EOT will do.
577# NOTE: if your use "<<-EOF", then You can actually indent inside here-document.
578#
72fcfcb3 579# -a - append to the banner
a8b9562a 580# -e - send to stderr instead of stdout
628754cb 581# -n - no show banner (overrides -t)
582# -t - show only, if RPM_SCRIPTVERBOSITY >= n; default n=5
aa41c920 583%banner(aent:) \
1b334fe4 584RPM_SCRIPTVERBOSITY=5 \
585[ -r /etc/sysconfig/rpm ] && . /etc/sysconfig/rpm \
586if [ -x /usr/bin/banner.sh ]; then \
aa41c920 587 CMD="/usr/bin/banner.sh %{-e:--stderr} %{!-n:$([ $RPM_SCRIPTVERBOSITY -ge %{-t:%{-t*}}%{!-t:5} ] && echo -s)} %{!-a:-m}%{-a:-M} %1" \
1b334fe4 588else \
a8b9562a 589 CMD="cat%{-e: >&2}" \
1b334fe4 590fi \
aa41c920 591$CMD %2%{?3: %3} \
72fcfcb3 592%nil
628754cb 593
90627280
ER
594# useradd/groupadd macros written by glen@pld-linux.org.
595# All rights reserved. Permission to copy is hereby granted.. yada, yada, yada
596#
597# Usage:
598# %useradd [-P package] [-u uid] [-d home_dir] [-s shell] [-c comment]
599# [-g initial_group] [-G group[,...]] login
600#
601# -u uid. REQUIRED
602# -g gid/group. REQUIRED
603# -s defaults to /bin/false
604# -d defaults to /usr/share/empty
605# -c No default
606# -r is accepted but ignored (it's always set)
607# rpm specific flags
608# -P package name. defaults to %{name}
609#
90627280 610%useradd(c:d:e:f:g:G:Mmk:op:s:u:rP:) \
9ba02ba9
ER
611%{!-u:%{error:useradd: Required argument -u missing}} \
612%{!-g:%{error:useradd: Required argument -g missing}} \
613%{!?1:%{error:useradd: Required parameter login missing}} \
90627280
ER
614if [ -n "`/bin/id -u %{expand:%{%{#}}} 2>/dev/null`" ]; then \
615 if [ "`/bin/id -u %{expand:%{%{#}}}`" != "%{-u*}" ]; then \
616 echo "Error: user %{expand:%{%{#}}} doesn't have uid=%{-u*}. Correct this before installing %{-P*}%{!?-P:%{name}}." 1>&2 \
617 exit 1 \
618 fi \
619else \
620 echo "Adding user %{expand:%{%{#}}} UID=%{-u*}." \
621 /usr/sbin/useradd \\\
622 -u %{-u*} \\\
623 -r \\\
624 -d %{-d*}%{!-d:/usr/share/empty} \\\
625 -s %{-s*}%{!-s:/bin/false} \\\
840e7b00 626 %{-c:-c "%(set -- %{-c*} %{*}; echo $1)"}\\\
90627280
ER
627 -g %{-g*} \\\
628 %{-M} \\\
629 %{-G:-G %{-G*}} \\\
840e7b00 630 %{expand:%{%{#}}} 1>&2 \
90627280
ER
631fi;
632
90627280
ER
633# Usage:
634# %groupadd [-P package] [-g gid] group
635#
636# -g gid. REQUIRED
637#
638# Sample:
639# %groupadd -P %{name}-base -g %{gid} %{name}
640
641%groupadd(g:P:rfo) \
9ba02ba9
ER
642%{!-g:%{error:groupadd: Required argument -g missing}} \
643%{!?1:%{error:groupadd: Required parameter group missing}} \
90627280
ER
644if [ -n "`/usr/bin/getgid %{1}`" ]; then \
645 if [ "`/usr/bin/getgid %{1}`" != "%{-g*}" ]; then \
646 echo "Error: group %{1} doesn't have gid=%{-g*}. Correct this before installing %{-P*}%{!?-P:%{name}}." 1>&2 \
647 exit 1 \
648 fi \
649else \
650 echo "Adding group %{1} GID=%{-g*}." \
840e7b00 651 /usr/sbin/groupadd -g %{-g*} -r %{1} 1>&2 \
90627280 652fi;
7cb77741
ER
653
654# apache_config_{install/uninstall} macros written by glen@pld-linux.org.
655# All rights reserved. Permission to copy is hereby granted.. yada, yada, yada
656#
657# The config is installed/removed inside trigger, this means that you can any
658# time install apache1 or apache package and the configuration file is updated.
659# if you don't need the config for various reason for specific apache, just
660# remove the symlink from apache config directory. the trigger will not put the
661# config again to that version of apache. In other words the config is linked
662# to apache config directory on first install of PACKAGE or apache.
663#
664# should be called in trigger body:
665# %triggerin -- apache1 >= 1.3.33-2
666# %apache_config_install -v 1
667#
668# Add package's apache config to apache config.
669#
670# Usage:
671# %apache_config_install -v {1|2} -c %{_sysconfdir}/apache-%{name}.conf -n 99
672#
673# -v REQUIRED: specify apache version. can be 1 or 2.
674# -c OPTIONAL: specify full path to PACKAGE's config. Defaults to %{_sysconfdir}/apache-%{name}.conf.
675# -n OPTIONAL: specify config "slot". defaults to 99
676#
677# Internal macros. don't use ;).
678# expands apache config dir by apache version at build time.
679%__apache_confdir() %(if [ %{1} = 1 ]; then echo /etc/apache/conf.d; elif [ %{1} = 2 ]; then echo /etc/httpd/httpd.conf; else echo >&2 Unknown apache version specified; fi)
680# expands apache service name by apache version at build time.
681%__apache_svcname() %(if [ %{1} = 1 ]; then echo apache; elif [ %{1} = 2 ]; then echo httpd; else echo >&2 Unknown apache version specified; fi)
682
683%apache_config_install(v:c:n:) \
684%{!-v:%{error:apache_config_install: Required argument -v missing}} \
685%{?debug:set -x; echo "apache_config_install:%{-v*} %{name}-%{version}-%{release} 1:[$1]; 2:[$2]"} \
686if [ "$1" = "1" ] && [ "$2" = "1" ] && [ -d %{__apache_confdir %{-v*}} ]; then\
687 ln -sf %{-c*}%{!-c:%{_sysconfdir}/apache-%{name}.conf} %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf\
688fi\
689# restart apache if the config symlink is there\
de11f042 690if [ -L %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf ]; then\
7cb77741
ER
691 if [ -f /var/lock/subsys/%{__apache_svcname %{-v*}} ]; then\
692 /etc/rc.d/init.d/%{__apache_svcname %{-v*}} restart 1>&2\
693 fi\
694fi\
695%{nil}
696
697# Remove package's apache config from apache config.
698#
699# Usage:
700# %apache_config_uninstall -v {1|2} -n 99
701#
702# -v REQUIRED: specify apache version. can be 1 or 2.
703# -n OPTIONAL: specify config "slot". defaults to 99
704%apache_config_uninstall(v:n:) \
705%{!-v:%{error:apache_config_uninstall: Required argument -v missing}} \
706%{?debug:set -x; echo "apache_config_uninstall:%{-v*} %{name}-%{version}-%{release}: 1:[$1]; 2:[$2]"} \
feb15ceb 707# remove link if either of the packages are gone \
7cb77741
ER
708if [ "$1" = "0" ] || [ "$2" = "0" ]; then \
709 if [ -L %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf ]; then \
710 rm -f %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf \
711 if [ -f /var/lock/subsys/%{__apache_svcname %{-v*}} ]; then \
712 /etc/rc.d/init.d/%{__apache_svcname %{-v*}} restart 1>&2 \
713 fi \
714 fi \
715fi \
716%{nil}
717
d87a3f0b
ER
718# see browser-plugins.spec / template-browser-plugin.spec
719# written by glen@pld-linux.org.
933139a5 720%nsplugin_install(d:) { \
d87a3f0b
ER
721# create link if it's first install of either of the packages \
722if [ "$1" = "1" ] && [ "$2" = "1" ]; then \
723( \
724%( \
725 for file in %{*}; do \
726 echo echo Installing $file to %{-d*}; \
727 echo "ln -sf %{_libdir}/browser-plugins/$file %{-d*};"; \
728 done ) \
729) | ( %banner -t 5 -e %{name}-in ); fi; \
730}
731
933139a5 732%nsplugin_uninstall(d:) { \
d87a3f0b
ER
733# remove link if either of the packages are gone \
734if [ "$1" = "0" ] || [ "$2" = "0" ]; then \
735( \
736%( \
737 for file in %{*}; do \
738 echo echo Removing $file from %{-d*}; \
739 echo "rm -f %{-d*}/$file;"; \
740 done ) \
741) | ( %banner -t 5 -e %{name}-un ); fi; \
742}
This page took 0.287005 seconds and 4 git commands to generate.