]> git.pld-linux.org Git - packages/rpm.git/blame - rpm.macros
- from AC-branch: rpm_macros_rev 1.197, rel. 0.8:
[packages/rpm.git] / rpm.macros
CommitLineData
a8bf9720
AF
1# PLD rpm macros
2
b5b20129 3# other macros
90c0eaed 4%epoch 0
b5b20129
AM
5%_enable_debug_packages 1
6
5b0f0ac9
MM
7%__id @__ID@
8%__id_u %{__id} -u
9%__chown_Rhf @__CHOWN_RHF@
10%__chgrp_Rhf @__CHGRP_RHF@
11
9fc84bee 12%_fixowner [ `%{__id_u}` = '0' ] && %{__chown_Rhf} root:@ROOT_GROUP@
a8bf9720 13%_fixgroup true
d0bdd45a 14%_fixperms %{__chmod} -Rf @FIXPERMS@
a8bf9720 15%_topdir %(echo $HOME)/rpm
cd33aab7
AM
16#-----------------------------------------------------------------
17# CFLAGS and LDFLAGS used to build
18
d3e82dd7 19%debuginfocflags %{expand:%%define __dic_%{?_enable_debug_packages} 1}%{?__dic_1: -ggdb}%{expand:%%undefine __dic_%{?_enable_debug_packages}}
b5b20129 20
5b0f0ac9 21%debugcflags -O0 -g -Wall
29e6df30 22%rpmcflags %{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}
af18d245 23%rpmcxxflags %{rpmcflags} -fvisibility-inlines-hidden
7c2eac51 24%rpmldflags %{nil}
cd33aab7 25
a544555d 26# kernel compiler
cabacfeb 27%kgcc gcc
28%kgcc_package gcc
a544555d 29
5f9f9bd7 30# Build system path macros.
31#
429d047e 32%__autoconf autoconf %{?debug:-Wall}
33%__automake automake -a -c -f --foreign
34%__autopoint autopoint --force
35
aad1c8e4 36%__gettextize { \
4da2b97a 37 if ! gettextize --version | grep -q '0\.10\.' ; then \
4cd84746
JB
38 if grep -qs 'AM_GNU_GETTEXT.*external' configure.{ac,in} ; then \
39 gettextize --copy --force --no-changelog; \
93bce43f 40 else \
4cd84746
JB
41 gettextize --copy --force --no-changelog --intl; \
42 fi; \
43 if [ ! -f po/Makevars ]; then \
44 cp -f po/Makevars{.template,}; \
45 fi; \
46 else \
47 gettextize --copy --force; \
aad1c8e4 48 fi; \
4cd84746 49}
429d047e 50
51%__glib_gettextize glib-gettextize --copy --force
52%__gnome_doc_common gnome-doc-common --copy
53%__gtkdocize gtkdocize --copy
54%__intltoolize intltoolize --copy --force
55%__libtoolize libtoolize --copy --force
5f9f9bd7 56
bd1cd543 57%dependencytracking %{nil}
cd33aab7 58#-----------------------------------------------------------------
9f0287b5 59%configure2_13 { \
cd33aab7
AM
60 if [ -n "$LINGUAS" ]; then unset LINGUAS; fi; \
61 LDFLAGS="${LDFLAGS:-%rpmldflags}" ; export LDFLAGS ; \
62 CFLAGS="${CFLAGS:-%rpmcflags}" ; export CFLAGS ; \
af18d245 63 CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" ; export CXXFLAGS ; \
cd33aab7 64 FFLAGS="${FFLAGS:-%rpmcflags}" ; export FFLAGS ; \
c55f2219 65 CPPFLAGS="${CPPFLAGS:-}" ; export CPPFLAGS ; \
4eac2e49
AM
66 %{?__cc:CC="%{__cc}" ; export CC ; } \
67 %{?__cxx:CXX="%{__cxx}" ; export CXX ; } \
5b0f0ac9 68 %{?configuredir:%{configuredir}}%{!?configuredir:.}/configure \
fa74a11c 69 --host=%{_target_platform} \
cd33aab7
AM
70 --prefix=%{_prefix} \
71 --exec-prefix=%{_exec_prefix} \
72 --bindir=%{_bindir} \
73 --sbindir=%{_sbindir} \
74 --sysconfdir=%{_sysconfdir} \
75 --datadir=%{_datadir} \
76 --includedir=%{_includedir} \
77 --libdir=%{_libdir} \
78 --libexecdir=%{_libexecdir} \
79 --localstatedir=%{_localstatedir} \
80 --sharedstatedir=%{_sharedstatedir} \
81 --mandir=%{_mandir} \
82 --infodir=%{_infodir} \
72d080a8 83 --x-libraries=/usr/X11R6/%{_lib} \
8b4be1e1 84 %{dependencytracking} \
cd33aab7
AM
85}
86
85f82bec 87#----------------------------------------------------------------
b8cf6778 88%configure {./configure \
85f82bec
AF
89 LDFLAGS="${LDFLAGS:-%rpmldflags}" \
90 CFLAGS="${CFLAGS:-%rpmcflags}" \
af18d245 91 CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" \
85f82bec 92 FFLAGS="${FFLAGS:-%rpmcflags}" \
418d9760 93 CPPFLAGS="${CPPFLAGS:-}" \
4eac2e49
AM
94 %{?__cc:CC="%{__cc}"} \
95 %{?__cxx:CXX="%{__cxx}"} \
85f82bec
AF
96 --build=%{_target_platform} \
97 --prefix=%{_prefix} \
98 --exec-prefix=%{_exec_prefix} \
99 --bindir=%{_bindir} \
100 --sbindir=%{_sbindir} \
101 --sysconfdir=%{_sysconfdir} \
102 --datadir=%{_datadir} \
103 --includedir=%{_includedir} \
104 --libdir=%{_libdir} \
105 --libexecdir=%{_libexecdir} \
106 --localstatedir=%{_localstatedir} \
107 --sharedstatedir=%{_sharedstatedir} \
108 --mandir=%{_mandir} \
109 --infodir=%{_infodir} \
72d080a8 110 --x-libraries=/usr/X11R6/%{_lib} \
8b4be1e1 111 %{dependencytracking} \
85f82bec
AF
112}
113
617b7266 114# ------------------------------------------------------------------------
a0bade1c
AM
115# Overloading of some basic macros
116%prep \
117%%prep\
118LANG=C\
119export LANG\
7febf367 120unset DISPLAY ||:\
7507b4fa 121unset LINGUAS ||:\
a0bade1c
AM
122%{nil}
123
124%build %%build\
125LANG=C\
126export LANG\
7febf367 127unset DISPLAY ||:\
7507b4fa 128unset LINGUAS ||:\
a0bade1c
AM
129%{nil}
130
131%install %{?_enable_debug_packages:%{?buildsubdir:%{debug_package}}}\
132%%install\
133LANG=C\
134export LANG\
7febf367 135unset DISPLAY ||:\
7507b4fa 136unset LINGUAS ||:\
a0bade1c
AM
137%{nil}
138
139# ------------------------------------------------------------------------
617b7266
MM
140# Conditional build stuff.
141
142# Check if symbol is defined.
143# Example usage: %if %{defined with_foo} && %{undefined with_bar} ...
144%defined() %{expand:%%{?%{1}:1}%%{!?%{1}:0}}
145%undefined() %{expand:%%{?%{1}:0}%%{!?%{1}:1}}
146
ed4f631a
MM
147# Shorthand for %{defined with_...}
148%with() %{expand:%%{?with_%{1}:1}%%{!?with_%{1}:0}}
149%without() %{expand:%%{?with_%{1}:0}%%{!?with_%{1}:1}}
150
617b7266
MM
151# Handle conditional builds. %bcond_with is for case when feature is
152# default off and needs to be activated with --with ... command line
153# switch. %bcond_without is for the dual case.
154#
155# %bcond_with foo defines symbol with_foo if --with foo was specified on
156# command line.
157# %bcond_without foo defines symbol with_foo if --without foo was *not*
158# specified on command line.
159#
160# For example:
161#
162# %bcond_with extra_fonts
163# %bcond_without static
d823b3fb 164# %if %{with extra_fonts}
617b7266
MM
165# ...
166# %endif
d823b3fb 167# %ifdef %{with static}
617b7266
MM
168# ...
169# %endif
170# %{?with_static: ... }
171# %{!?with_static: ... }
172# %{?with_extra_fonts: ... }
173# %{!?with_extra_fonts: ... }
174#
175# The bottom line: never use without_foo, _with_foo nor _without_foo, only
176# with_foo. This way changing default set of bconds for given spec is just
177# a matter of changing single line in it and syntax is more readable.
178%bcond_with() %{expand:%%{?_with_%{1}:%%global with_%{1} 1}}
179%bcond_without() %{expand:%%{!?_without_%{1}:%%global with_%{1} 1}}
180# ------------------------------------------------------------------------
181
cd33aab7
AM
182# Location of autoconf macros
183%_aclocaldir %(aclocal --print-ac-dir)
184
32720a50
AM
185# Location of omf files
186%_omf_dest_dir %(scrollkeeper-config --omfdir)
187
c5eece2c 188# Location of pkgconfig files
a46897a7 189%_pkgconfigdir /usr/%{_lib}/pkgconfig
c5eece2c 190
c917274d 191# Location of desktop files
192%_desktopdir /usr/share/applications
510f694c 193%_applnkdir ERROR:_applnkdir_is_obsolete_use_desktopdir_instead
c917274d 194
fb08fb4a 195# Location of pixmaps for applnk/desktop files
3a9bb008 196%_pixmapsdir /usr/share/pixmaps
cd33aab7 197
fb08fb4a 198# Location of themable icons for applnk/desktop files
986c3bcd 199%_iconsdir /usr/share/icons
200
c5eece2c
JB
201# Location of fonts directories
202%_fontsdir /usr/share/fonts
203
5cfcbc9e 204# Location of Gtk and associated libraries documentation
e9f33a26 205%_gtkdocdir %{_defaultdocdir}/gtk-doc/html
5cfcbc9e 206
eee08b2d 207# Location of KDE documentation
208%_kdedocdir %{_defaultdocdir}/kde/HTML
209
a7cad6ae 210# unsermake script
211%__unsermake /usr/share/unsermake/unsermake
212
cd33aab7
AM
213# Current date
214%date %(LC_ALL="C" date +"%a %b %d %Y")
215
216# tmp directory
217%tmpdir %(echo "${TMPDIR:-/tmp}")
218
219# Example files, programs, scripts...
220%_examplesdir /usr/src/examples
221
bd63739a 222# The directory holding Linux kernel sources
223%_kernelsrcdir /usr/src/linux
224
cd33aab7 225# If non-empty "debug" macro defined, add "dbg" suffix to release number
5b0f0ac9 226%_rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}%{?debug:dbg}.%%{ARCH}.rpm
cd33aab7 227
5b0f0ac9 228# Requires name = version-release
d0bdd45a 229%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")
511ee4c6 230
d0bdd45a
JB
231%releq_kernel_up() %(LC_ALL="C" rpm -qf --qf 'kernel-up = %%{epoch}:%%{version}-%%{release}\\n' %{_kernelsrcdir}/include/linux/version.h | sed -e 's/ (none):/ /' | grep -vE "(is not|no such)")
232%releq_kernel_smp() %(LC_ALL="C" rpm -qf --qf 'kernel-smp = %%{epoch}:%%{version}-%%{release}\\n' %{_kernelsrcdir}/include/linux/version.h | sed -e 's/ (none):/ /' | grep -vE "(is not|no such)")
233%requires_releq_kernel_up() %(LC_ALL="C" rpm -qf --qf 'PreReq: kernel-up = %%{epoch}:%%{version}-%%{release}\\n' %{_kernelsrcdir}/include/linux/version.h | sed -e 's/ (none):/ /' | grep -vE "(is not|no such)")
234%requires_releq_kernel_smp() %(LC_ALL="C" rpm -qf --qf 'PreReq: kernel-smp = %%{epoch}:%%{version}-%%{release}\\n' %{_kernelsrcdir}/include/linux/version.h | sed -e 's/ (none):/ /' | grep -vE "(is not|no such)")
511ee4c6 235
d0bdd45a 236%requires_eq_to() %(LC_ALL="C" rpm -q --qf 'Requires: %1 = %%{epoch}:%%{version}\\n' %2 | sed -e 's/ (none):/ /' | grep -v "is not")
e478b9e7 237
6f3d2288 238%apache_modules_api %(awk '/#define MODULE_MAGIC_NUMBER_MAJOR/ {print $3}' /usr/include/apache/ap_mmn.h 2>/dev/null || echo ERROR)
8dea1306 239
240# kernel version-release handling
5876e6e3 241%__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))
1d969cf0 242%__kernel_rel %(LC_ALL="C" rpm -qf %{_kernelsrcdir}/include/linux/fs.h --queryformat "%{RELEASE}" | grep -v "is not")
d0bdd45a
JB
243%__kernel_rpmvr %(LC_ALL="C" rpm -qf %{_kernelsrcdir}/include/linux/fs.h --queryformat "%{VERSION}-%{RELEASE}" | grep -v "is not")
244%_kernel_ver %{__kernel_ver}%{?with_dist_kernel:%(echo %{__kernel_ver} | grep -q -e - || echo -%{__kernel_rel})}
066309eb 245%_kernel_ver_str %(echo %{!?_without_dist_kernel:%{__kernel_rpmvr}}%{?_without_dist_kernel:%{__kernel_ver}} | sed -e 's/-/_/g')
fd4d8ee0 246
c2c27a5a 247# sgml macros
a0850a21 248%xmlcat_add() /usr/bin/xmlcatalog --noout --add nextCatalog \"\" %1 /etc/xml/catalog ;
249%xmlcat_del() /usr/bin/xmlcatalog --noout --del %1 /etc/xml/catalog ;
da745cb1 250%xmlcat_add_rewrite /usr/bin/xmlcatalog --noout --add rewriteSystem
a0850a21 251%xmlcat_create() /usr/bin/xmlcatalog --noout --create %1 ;
252%sgmlcat_add() /usr/bin/install-catalog --add %1 %2 > /dev/null ;
253%sgmlcat_del() /usr/bin/install-catalog --remove %1 %2 > /dev/null ;
c2c27a5a 254%docbook_sgmlcat_fix() { for l in \
255'' \
256' -- default decl --' \
257'DTDDECL "-//OASIS//DTD DocBook XML V%2//EN" "../../xml.dcl"' \
258' -- hacks for opensp --' \
259'SYSTEM "file://%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd" "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
260'SYSTEM "http://www.oasis-open.org/docbook/xml/%2/docbookx.dtd" "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
261'' \
262; do echo $l; done >> %1 \
263}
264
cd33aab7
AM
265#-----------------------------------------------------------------
266# find and gzip all files in %{_mandir} and %{infodir}
267#
268# Requires: xargs, find
269#
270#%no_install_post_compress_docs 1
271%__spec_install_post_compress_docs { \
cd33aab7 272%{!?no_install_post_compress_docs: \
89f18684 273 echo "Compress man and info pages."; \
cd33aab7
AM
274 %{?verbose:set -x;} \
275 for i in /usr/share/man /usr/X11R6/man /usr/share/info; do \
276 if [ -d "$RPM_BUILD_ROOT$i" ]; then \
277 find "$RPM_BUILD_ROOT$i" -name \*.bz2 -print | xargs -r %{__bzip2} -df; \
278 find "$RPM_BUILD_ROOT$i" -name \*.gz -print | xargs -r %{__gzip} -dnf; \
279 find "$RPM_BUILD_ROOT$i" -type f -print | xargs -r %{__gzip} -9nf; \
280 fi; \
281 done; \
282} }
283
284#-----------------------------------------------------------------
285# Strip executable binaries and shared object files
286#
287# Requires: find, awk, strip, cut, xargs
288#
289#%no_install_post_strip 1
290%__spec_install_post_strip {%{!?debug: \
291%{!?no_install_post_strip: \
f80cefa3
JB
292 %{?verbose:set -x;} \
293 if [ -d "$RPM_BUILD_ROOT" ]; then \
5b0f0ac9 294 echo "Strip executable binaries, archives and shared object files."; \
aaa1486f 295 filelist=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*" %{?_noautostrip:! -regex "%{_noautostrip}"}`; \
cd33aab7
AM
296 elfexelist=`echo $filelist | xargs -r file | \
297 awk '/ELF.*executable/ {print $1}' | cut -d: -f1`; \
298 elfsharedlist=`echo $filelist | xargs -r file | \
299 awk '/LF.*shared object/ {print $1}' | cut -d: -f1`; \
5b0f0ac9
MM
300 elfarchiveslist=`echo $filelist | xargs -r file | \
301 awk '/current ar archive/ {print $1}' | cut -d: -f1`; \
cd33aab7 302 if [ -n "$elfexelist" ]; then \
aaa1486f 303 %{__strip} --remove-section=.note --remove-section=.comment $elfexelist; \
cd33aab7
AM
304 fi; \
305 if [ -n "$elfsharedlist" ]; then \
aaa1486f 306 %{__strip} --strip-unneeded --remove-section=.note --remove-section=.comment $elfsharedlist; \
5b0f0ac9
MM
307 fi; \
308 if [ -n "$elfarchiveslist" ]; then \
aaa1486f 309 %{__strip} --strip-debug --remove-section=.note --remove-section=.comment $elfarchiveslist; \
f80cefa3
JB
310 fi; \
311 fi; } \
cd33aab7 312} }
cc545e1a 313#-----------------------------------------------------------------
314# remove all RPATH from executable binaries and shared object files
315#
316# Requires: find, awk, cut, xargs, chrpath, uname
317#
318#%no_install_post_chrpath 1
319%__spec_install_post_chrpath {%{!?debug: \
320%{!?no_install_post_chrpath: \
321 %{?verbose:set -x;} \
f80cefa3 322if [ -d "$RPM_BUILD_ROOT" ]; then \
cc545e1a 323echo "Remove RPATH from executable binaries and shared object files."; \
d274a19d 324find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*" ! -regex ".*/usr/lib[0-9]*/debug/.*" %{?_noautochrpath:! -regex "%{_noautochrpath}"} | xargs -r file | \
3d66db15 325 awk '/ELF.*(executable.*dynamically linked|shared object)/ {print $1}' | cut -d: -f1 | \
cc545e1a 326while read file ; do \
327 rpath= ; \
328 chmod u+w "$file"; \
329 for dir in `chrpath -l "$file" | \
330 awk '/RPATH=/ { gsub(/.*RPATH=/,""); gsub(/:/," "); print $0 }'` ; do \
331 case $dir in \
570a0c29 332 /home/* | /tmp/* | /usr/lib | /usr/lib64 | /lib | /lib64 | /usr/local/lib | /usr/local/lib64 | /usr/X11R6/lib | /usr/X11R6/lib64 ) \
cc545e1a 333 echo "remove-rpath: $dir in $file"; \
334 ;; \
335 * ) \
336 if [ "$rpath" = "" ] ; then rpath="$dir" ; \
337 else rpath="$rpath:$dir" ; fi ; \
338 ;; \
339 esac ; \
340 done ; \
341 if [ "$rpath" = "" ] ; then chrpath -d "$file" > /dev/null ; \
342 else chrpath -r "$rpath" "$file" > /dev/null ; fi ; \
f80cefa3
JB
343done; \
344fi; } \
cc545e1a 345} }
22a54b3e 346#-----------------------------------------------------------------
93b46c00 347# Find and gzip all kernel modules
348#
349# Requires: find
350#
351#%no_install_post_compress_modules 1
352%__spec_install_post_compress_modules { \
93b46c00 353%{!?no_install_post_compress_modules: \
354 %{?verbose:set -x;} \
f80cefa3
JB
355 if [ -d "$RPM_BUILD_ROOT" ]; then \
356echo "Compress kernel modules if any."; \
390bdd1d 357 if test -d $RPM_BUILD_ROOT/lib/modules ; then \
d0bdd45a
JB
358 find $RPM_BUILD_ROOT/lib/modules -name \*o -type f -print | \
359 xargs -r %{__gzip} -9nf; \
fe70546d 360 find $RPM_BUILD_ROOT/lib/modules -name \*o -type l -printf "%p %l\n" | \
92ebeb8d 361 while read a b; do ln -sf $b.gz $a.gz; rm -f $a; done; \
390bdd1d 362 fi; \
f80cefa3 363 fi; \
93b46c00 364} }
cd33aab7
AM
365
366%_source_payload w9.gzdio
367%_binary_payload w9.bzdio
368
aad1c8e4 369#-----------------------------------------------------------------
cc6c554c 370# Update GConf2 schemas
aad1c8e4 371#
372# Requires: GConf2
373#
5b8ed3c0 374%gconf_schema_install() \
375 umask 022; \
429d047e 376 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 \
5b8ed3c0 377 %{nil}
378
379%gconf_schema_uninstall() \
429d047e 380if [ $1 = 0 ]; then \
5b8ed3c0 381 umask 022; \
429d047e 382 GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" /usr/bin/gconftool-2 --makefile-uninstall-rule /etc/gconf/schemas/%{?1} > /dev/null \
383fi \
384%{nil}
385
386#-----------------------------------------------------------------
387# Update desktop MIME database
388# requries: desktop-file-utils
389#
390%update_desktop_database_post() \
391 umask 022; \
392 /usr/bin/update-desktop-database; \
393 %{nil}
394
395%update_desktop_database_postun() \
396if [ $1 = 0 ]; then \
397 umask 022; \
398 /usr/bin/update-desktop-database; \
399fi \
400%{nil}
401
402#-----------------------------------------------------------------
403# Update scrollkeeper database
404# requires: scrollkeeper
405#
406%scrollkeeper_update_post() \
429d047e 407 /usr/bin/scrollkeeper-update -q; \
408 %{nil}
409
410%scrollkeeper_update_postun() \
411if [ $1 = 0 ]; then \
429d047e 412 /usr/bin/scrollkeeper-update -q; \
413fi \
414%{nil}
415
416#-----------------------------------------------------------------
417# Run ldconfig after installing/deinstalling libraries
418#
419%ldconfig_post() \
420 /sbin/ldconfig; \
421 %{nil}
422
423%ldconfig_postun() \
424if [ $1 = 0 ]; then \
425 /sbin/ldconfig; \
426fi \
427%{nil}
aad1c8e4 428
cd33aab7
AM
429#-----------------------------------------------------------------
430# post %install sequence:
431# - autodeps exceptions
432# - compress all man and info pages,
433# - strip all ELF executables and ELF shared objects if not %debug.
5b0f0ac9 434# - compress kernel modules if any
cd33aab7
AM
435
436###################################################################
437# Requires/Provides automation
438# exceptions system by Jacek Konieczny <jajcus@pld.org.pl>
a4852742 439#
fbbdca08
JB
440%__noautoreqfiles %(sed -e s'/#.*//' /etc/rpm/noautoreqfiles)%{?_noautoreqfiles: %{_noautoreqfiles}}
441%__noautoprovfiles %(sed -e s'/#.*//' /etc/rpm/noautoprovfiles)%{?_noautoprovfiles: %{_noautoprovfiles}}
442%__noautoreq %(sed -e s'/#.*//' /etc/rpm/noautoreq)%{?_noautoreq: %{_noautoreq}}
443%__noautoreqdep %(sed -e s'/#.*//' /etc/rpm/noautoreqdep)%{?_noautoreqdep: %{_noautoreqdep}}
444%__noautoprov %(sed -e s'/#.*//' /etc/rpm/noautoprov)%{?_noautoprov: %{_noautoprov}}
a4852742
JB
445#%_noautocompressdoc %{nil}
446#
5b0f0ac9
MM
447%_missing_doc_files_terminate_build 1%{nil}
448%_unpackaged_files_terminate_build %{nil}
4c7d3ba4 449# (X)emacs support
42b7e5ac 450%___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;}'
4c7d3ba4
AF
451%_emacs_lispdir %(emacs %___emacs_lispdir_helper)
452%_xemacs_lispdir %(xemacs %___emacs_lispdir_helper)
41a62699 453
984f6de6
JK
454%__php_provides %{nil}
455%__php_requires %{nil}
456%__perl_provides %{nil}
457%__perl_requires %{nil}
41a62699
AF
458
459# Perl specific macro definitions.
942c693c
AF
460%perl_privlib %(eval "`%{__perl} -V:installprivlib`"; echo $installprivlib)
461%perl_archlib %(eval "`%{__perl} -V:installarchlib`"; echo $installarchlib)
462%perl_vendorlib %(eval "`%{__perl} -V:installvendorlib`"; echo $installvendorlib)
463%perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)
464%perl_sitelib %(eval "`%{__perl} -V:installsitelib`"; echo $installsitelib)
465%perl_sitearch %(eval "`%{__perl} -V:installsitearch`"; echo $installsitearch)
41a62699 466
942c693c 467%php_pear_dir %{_datadir}/pear
41a62699
AF
468
469# Python specific macro definitions.
470# python main version
942c693c 471%py_ver %(echo `python -c "import sys; print sys.version[:3]"`)
41a62699
AF
472
473# directories
942c693c 474%py_prefix %(echo `python -c "import sys; print sys.prefix"`)
4ef692e4 475%py_libdir %{py_prefix}/%{_lib}/python%{py_ver}
a4f0b5e0 476%py_scriptdir %{py_prefix}/share/python%{py_ver}
942c693c 477%py_incdir /usr/include/python%{py_ver}
a4f0b5e0
JK
478%py_sitedir %{py_libdir}/site-packages
479%py_sitescriptdir %{py_scriptdir}/site-packages
942c693c 480%py_dyndir %{py_libdir}/lib-dynload
41a62699
AF
481
482# pure python modules compilation
942c693c 483%py_comp python -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
41a62699 484
942c693c 485%py_ocomp python -O -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
41a62699
AF
486
487# Software written in Python language require Python with main version
5177c7b1 488%pyrequires_eq() Requires: %1
41a62699 489
ea4b2900
AF
490
491# Hardlink binary identical .pyc and .pyo files
492# (idea by glen <at> pld-linux <dot> org)
493%__spec_install_post_py_hardlink {\
2b8c0cee 494%{!?no_install_post_py_hardlink: \
ea4b2900
AF
495[ ! -d "$RPM_BUILD_ROOT" ] || find "$RPM_BUILD_ROOT" -name '*.pyc' | while read a; do \
496 b="$(echo $a|sed -e 's/.pyc$/.pyo/')"; \
497 if cmp -s "$a" "$b"; then \
498 ln -f "$a" "$b"; \
499 fi; \
500done \
501} }
502
503# remove python sources, so that check-files won't complain
504# (idea by glen <at> pld-linux <dot> org)
505%py_postclean() \
506for d in %{py_sitescriptdir} %{py_sitedir}; do \
507 [ ! -d "$RPM_BUILD_ROOT$d" ] || find "$RPM_BUILD_ROOT$d" -name '*.py' -exec rm {} \; ;\
508done \
509%{nil}
510
67ed5b97 511# depmod macro
512%depmod() { \
fe30b3ea 513umask 022; \
67ed5b97 514if [ -e /boot/System.map-%1 ]; then \
515 /sbin/depmod -a -F /boot/System.map-%1 %1; \
516else \
517 if [ -e /boot/System.map ]; then \
518 /sbin/depmod -a -F /boot/System.map %1; \
519 else \
520 /sbin/depmod -a %1; \
521 fi \
522fi; \
523}
524
495892af 525# XMMS specific macros
2f163afd
JB
526%xmms_prefix %(xmms-config --prefix)
527%xmms_exec_prefix %(xmms-config --exec-prefix)
528%xmms_version %(xmms-config --version)
529%xmms_datadir %(xmms-config --data-dir)
530%xmms_plugindir %(xmms-config --plugin-dir)
531%xmms_visualization_plugindir %(xmms-config --visualization-plugin-dir)
532%xmms_input_plugindir %(xmms-config --input-plugin-dir)
533%xmms_output_plugindir %(xmms-config --output-plugin-dir)
534%xmms_effect_plugindir %(xmms-config --effect-plugin-dir)
535%xmms_general_plugindir %(xmms-config --general-plugin-dir)
495892af 536
59d9979d 537%_target_base_arch %(echo %{_target_cpu} | sed 's/i.86/i386/;s/athlon/i386/;s/pentium./i386/;s/amd64/x86_64/')
e3618ee9 538
539# user/group checking macros
540#
541# Usage:
542# %userremove myuser
543#
544%userremove /usr/lib/rpm/user_group.sh user del
545%groupremove /usr/lib/rpm/user_group.sh group del
546#
547# Usage:
548# if %usertestrm myuser; then
549# /usr/sbin/userdel -r myuser
550# Note:
551# use these macros only if you need to call userdel/groupdel with
552# a non-standard option or take an extra action; otherwise use the
553# %userremove/%groupremove macros
554#
555%usertestrm /usr/lib/rpm/user_group.sh user testrm
556%grouptestrm /usr/lib/rpm/user_group.sh group testrm
13f70a2c
JK
557# user group membership management macros
558#
559# Usage:
560# %addusertogroup myuser agroup
561#
562%addusertogroup /usr/lib/rpm/user_group.sh user addtogroup
bfd9689c 563
564# banner support (useful in {pre,post}{,un} and triggers)
565#
566# Usage:
a980efc1 567# %banner name [-a] [-e] [-n] [-tn] <<EOF
bfd9689c 568# the banner text, the banner text
a980efc1
ER
569# the banner text, and following line
570#EOF
571# You can use any form of here-document, <<'EOF' <<-EOT will do.
572# NOTE: if your use "<<-EOF", then You can actually indent inside here-document.
573#
bfd9689c 574# -a - append to the banner
fb033326 575# -e - send to stderr instead of stdout
1257c400 576# -n - no show banner (overrides -t)
577# -t - show only, if RPM_SCRIPTVERBOSITY >= n; default n=5
a980efc1 578%banner(aent:) \
f1bbc6ff 579RPM_SCRIPTVERBOSITY=5 \
580[ -r /etc/sysconfig/rpm ] && . /etc/sysconfig/rpm \
581if [ -x /usr/bin/banner.sh ]; then \
a980efc1 582 CMD="/usr/bin/banner.sh %{-e:--stderr} %{!-n:$([ $RPM_SCRIPTVERBOSITY -ge %{-t:%{-t*}}%{!-t:5} ] && echo -s)} %{!-a:-m}%{-a:-M} %1" \
f1bbc6ff 583else \
fb033326 584 CMD="cat%{-e: >&2}" \
f1bbc6ff 585fi \
a980efc1 586$CMD %2%{?3: %3} \
bfd9689c 587%nil
1257c400 588
This page took 0.14053 seconds and 4 git commands to generate.