]> git.pld-linux.org Git - packages/rpm-build-macros.git/blame - rpm.macros
- redone _noautocompress handling to use parameter instead of file
[packages/rpm-build-macros.git] / rpm.macros
CommitLineData
d54662bf
AF
1# PLD rpm macros
2
8f74418b
MM
3%__id @__ID@
4%__id_u %{__id} -u
5%__chown_Rhf @__CHOWN_RHF@
6%__chgrp_Rhf @__CHGRP_RHF@
7
d54662bf
AF
8%_fixowner [ `%{__id_u}` = '0' ] && %{__chown_Rhf} root.@ROOT_GROUP@
9%_fixgroup true
8f74418b 10%_fixperms %{__chmod} -Rf @FIXPERMS@
d54662bf 11%_topdir %(echo $HOME)/rpm
9c404149
AM
12#-----------------------------------------------------------------
13# CFLAGS and LDFLAGS used to build
14
8f74418b 15%debugcflags -O0 -g -Wall
9c404149
AM
16%rpmcflags %{?debug:%debugcflags}%{!?debug:%optflags}
17%rpmldflags %{!?debug:-s}
18
ba1fdedc 19# kernel compiler
d2e1bc22 20%kgcc gcc
21%kgcc_package gcc
ba1fdedc 22
33040789 23# Build system path macros.
24#
25%__libtoolize libtoolize --copy --force
83094b62 26%__gettextize { \
afff6d37 27 if ! gettextize --version | grep -q '0\.10\.' ; then \
8a995cff
JB
28 if grep -qs 'AM_GNU_GETTEXT.*external' configure.{ac,in} ; then \
29 gettextize --copy --force --no-changelog; \
97589b6e 30 else \
8a995cff
JB
31 gettextize --copy --force --no-changelog --intl; \
32 fi; \
33 if [ ! -f po/Makevars ]; then \
34 cp -f po/Makevars{.template,}; \
35 fi; \
36 else \
37 gettextize --copy --force; \
83094b62 38 fi; \
8a995cff
JB
39}
40%__autopoint autopoint --force
bcdab9c2 41%__automake automake -a -c -f --foreign
be3a1985 42%__autoconf autoconf %{?debug:-Wall}
33040789 43
9c404149 44#-----------------------------------------------------------------
9f4ce098 45%configure2_13 { \
9c404149
AM
46 if [ -n "$LINGUAS" ]; then unset LINGUAS; fi; \
47 LDFLAGS="${LDFLAGS:-%rpmldflags}" ; export LDFLAGS ; \
48 CFLAGS="${CFLAGS:-%rpmcflags}" ; export CFLAGS ; \
49 CXXFLAGS="${CXXFLAGS:-%rpmcflags}" ; export CXXFLAGS ; \
50 FFLAGS="${FFLAGS:-%rpmcflags}" ; export FFLAGS ; \
8ec1a12b 51 CPPFLAGS="${CPPFLAGS:-}" ; export CPPFLAGS ; \
ae5d93df
AM
52 %{?__cc:CC=%{__cc} ; export CC ; } \
53 %{?__cxx:CXX=%{__cxx} ; export CXX ; } \
8f74418b 54 %{?configuredir:%{configuredir}}%{!?configuredir:.}/configure \
2a7cfd3f 55 --host=%{_target_platform} \
9c404149
AM
56 --prefix=%{_prefix} \
57 --exec-prefix=%{_exec_prefix} \
58 --bindir=%{_bindir} \
59 --sbindir=%{_sbindir} \
60 --sysconfdir=%{_sysconfdir} \
61 --datadir=%{_datadir} \
62 --includedir=%{_includedir} \
63 --libdir=%{_libdir} \
64 --libexecdir=%{_libexecdir} \
65 --localstatedir=%{_localstatedir} \
66 --sharedstatedir=%{_sharedstatedir} \
67 --mandir=%{_mandir} \
68 --infodir=%{_infodir} \
69}
70
4a6b0d54 71#----------------------------------------------------------------
57f4166d 72%configure {./configure \
4a6b0d54
AF
73 LDFLAGS="${LDFLAGS:-%rpmldflags}" \
74 CFLAGS="${CFLAGS:-%rpmcflags}" \
75 CXXFLAGS="${CXXFLAGS:-%rpmcflags}" \
76 FFLAGS="${FFLAGS:-%rpmcflags}" \
a2bd5992 77 CPPFLAGS="${CPPFLAGS:-}" \
9f4ce098
AF
78 %{?__cc:CC=%{__cc}} \
79 %{?__cxx:CXX=%{__cxx}} \
4a6b0d54
AF
80 --build=%{_target_platform} \
81 --prefix=%{_prefix} \
82 --exec-prefix=%{_exec_prefix} \
83 --bindir=%{_bindir} \
84 --sbindir=%{_sbindir} \
85 --sysconfdir=%{_sysconfdir} \
86 --datadir=%{_datadir} \
87 --includedir=%{_includedir} \
88 --libdir=%{_libdir} \
89 --libexecdir=%{_libexecdir} \
90 --localstatedir=%{_localstatedir} \
91 --sharedstatedir=%{_sharedstatedir} \
92 --mandir=%{_mandir} \
93 --infodir=%{_infodir} \
94}
95
7dbab518
MM
96# ------------------------------------------------------------------------
97# Conditional build stuff.
98
99# Check if symbol is defined.
100# Example usage: %if %{defined with_foo} && %{undefined with_bar} ...
101%defined() %{expand:%%{?%{1}:1}%%{!?%{1}:0}}
102%undefined() %{expand:%%{?%{1}:0}%%{!?%{1}:1}}
103
566fa098
MM
104# Shorthand for %{defined with_...}
105%with() %{expand:%%{?with_%{1}:1}%%{!?with_%{1}:0}}
106%without() %{expand:%%{?with_%{1}:0}%%{!?with_%{1}:1}}
107
7dbab518
MM
108# Handle conditional builds. %bcond_with is for case when feature is
109# default off and needs to be activated with --with ... command line
110# switch. %bcond_without is for the dual case.
111#
112# %bcond_with foo defines symbol with_foo if --with foo was specified on
113# command line.
114# %bcond_without foo defines symbol with_foo if --without foo was *not*
115# specified on command line.
116#
117# For example:
118#
119# %bcond_with extra_fonts
120# %bcond_without static
f52f9976 121# %if %{with extra_fonts}
7dbab518
MM
122# ...
123# %endif
f52f9976 124# %ifdef %{with static}
7dbab518
MM
125# ...
126# %endif
127# %{?with_static: ... }
128# %{!?with_static: ... }
129# %{?with_extra_fonts: ... }
130# %{!?with_extra_fonts: ... }
131#
132# The bottom line: never use without_foo, _with_foo nor _without_foo, only
133# with_foo. This way changing default set of bconds for given spec is just
134# a matter of changing single line in it and syntax is more readable.
135%bcond_with() %{expand:%%{?_with_%{1}:%%global with_%{1} 1}}
136%bcond_without() %{expand:%%{!?_without_%{1}:%%global with_%{1} 1}}
137# ------------------------------------------------------------------------
138
9c404149
AM
139# Location of autoconf macros
140%_aclocaldir %(aclocal --print-ac-dir)
141
e2804f99
AM
142# Location of omf files
143%_omf_dest_dir %(scrollkeeper-config --omfdir)
144
e987a186 145# Location of pkgconfig files
d7021551 146%_pkgconfigdir /usr/lib/pkgconfig
e987a186 147
9c404149 148# Location of top applink dir
30562d7e 149%_applnkdir /usr/X11R6/share/applnk
9c404149 150
486b0b5f 151# Location of desktop files
152%_desktopdir /usr/share/applications
153
481463e9 154# Location of pixmaps for applnk/desktop files
e1f0a822 155%_pixmapsdir /usr/share/pixmaps
9c404149 156
481463e9 157# Location of themable icons for applnk/desktop files
b36c8e2a 158%_iconsdir /usr/share/icons
159
e987a186
JB
160# Location of fonts directories
161%_fontsdir /usr/share/fonts
162
b3282f3f 163# Location of Gtk and associated libraries documentation
6eed6d84 164%_gtkdocdir %{_defaultdocdir}/gtk-doc/html
b3282f3f 165
9c404149
AM
166# Current date
167%date %(LC_ALL="C" date +"%a %b %d %Y")
168
169# tmp directory
170%tmpdir %(echo "${TMPDIR:-/tmp}")
171
172# Example files, programs, scripts...
173%_examplesdir /usr/src/examples
174
8377d27d 175# The directory holding Linux kernel sources
176%_kernelsrcdir /usr/src/linux
177
9c404149 178# If non-empty "debug" macro defined, add "dbg" suffix to release number
8f74418b 179%_rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}%{?debug:dbg}.%%{ARCH}.rpm
9c404149 180
8f74418b
MM
181# Requires name = version-release
182%requires_releq() %(LC_ALL="C" echo '%*' | xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}-%%{release}\\n' | sed -e 's/ (none):/ /' -e 's/ 0:/ /' | grep -v "is not")
183%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):/ /' -e 's/ 0:/ /' | grep -vE "(is not|no such)")
184%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):/ /' -e 's/ 0:/ /' | grep -vE "(is not|no such)")
01a9f990
AF
185%requires_eq_to %(LC_ALL="C" rpm -q --qf 'Requires: %1 = %%{epoch}:%%{version}\\n' %2 | sed -e 's/ (none):/ /' -e 's/ 0:/ /' | grep -v "is not")
186
187%apache_modules_api %(awk '/#define MODULE_MAGIC_NUMBER_MAJOR/ {print $3}' `apr-config --includedir`/ap_mmn.h)
b9d5d440 188
189# kernel version-release handling
190%__kernel_ver %(grep UTS_RELEASE %{_kernelsrcdir}/include/linux/version.h 2>/dev/null | cut -d'"' -f2)
191%__kernel_rel %(LC_ALL="C" rpm -qf %{_kernelsrcdir}/include/linux/version.h --queryformat "%{RELEASE}" | grep -v "is not")
192%_kernel_ver %(echo %{__kernel_ver}%{!?_without_dist_kernel:-%{__kernel_rel}})
193%_kernel_ver_str %(echo %{_kernel_ver} | sed s/-/_/g)
87be1cf0 194
e00dd7f6 195# sgml macros
196%xmlcat_add() /usr/bin/xmlcatalog --noout --add nextCatalog \"\" %1 /etc/xml/catalog
197%xmlcat_del() /usr/bin/xmlcatalog --noout --del %1 /etc/xml/catalog
198%xmlcat_add_rewrite /usr/bin/xmlcatalog --noout --add rewriteSystem
199%xmlcat_create() /usr/bin/xmlcatalog --noout --create %1
200%sgmlcat_add() /usr/bin/install-catalog --add %1 %2 > /dev/null
201%sgmlcat_del() /usr/bin/install-catalog --remove %1 %2 > /dev/null
202%docbook_sgmlcat_fix() { for l in \
203'' \
204' -- default decl --' \
205'DTDDECL "-//OASIS//DTD DocBook XML V%2//EN" "../../xml.dcl"' \
206' -- hacks for opensp --' \
207'SYSTEM "file://%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd" "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
208'SYSTEM "http://www.oasis-open.org/docbook/xml/%2/docbookx.dtd" "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
209'' \
210; do echo $l; done >> %1 \
211}
212
9c404149
AM
213#-----------------------------------------------------------------
214# find and gzip all files in %{_mandir} and %{infodir}
215#
216# Requires: xargs, find
217#
218#%no_install_post_compress_docs 1
219%__spec_install_post_compress_docs { \
220echo "Compress man and info pages."; \
221%{!?no_install_post_compress_docs: \
222 %{?verbose:set -x;} \
223 for i in /usr/share/man /usr/X11R6/man /usr/share/info; do \
224 if [ -d "$RPM_BUILD_ROOT$i" ]; then \
225 find "$RPM_BUILD_ROOT$i" -name \*.bz2 -print | xargs -r %{__bzip2} -df; \
226 find "$RPM_BUILD_ROOT$i" -name \*.gz -print | xargs -r %{__gzip} -dnf; \
227 find "$RPM_BUILD_ROOT$i" -type f -print | xargs -r %{__gzip} -9nf; \
228 fi; \
229 done; \
230} }
231
232#-----------------------------------------------------------------
233# Strip executable binaries and shared object files
234#
235# Requires: find, awk, strip, cut, xargs
236#
237#%no_install_post_strip 1
238%__spec_install_post_strip {%{!?debug: \
239%{!?no_install_post_strip: \
240 %{?verbose:set -x;} \
8f74418b 241 echo "Strip executable binaries, archives and shared object files."; \
9c404149
AM
242 filelist=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*"`; \
243 elfexelist=`echo $filelist | xargs -r file | \
244 awk '/ELF.*executable/ {print $1}' | cut -d: -f1`; \
245 elfsharedlist=`echo $filelist | xargs -r file | \
246 awk '/LF.*shared object/ {print $1}' | cut -d: -f1`; \
8f74418b
MM
247 elfarchiveslist=`echo $filelist | xargs -r file | \
248 awk '/current ar archive/ {print $1}' | cut -d: -f1`; \
9c404149
AM
249 if [ -n "$elfexelist" ]; then \
250 strip --remove-section=.note --remove-section=.comment $elfexelist; \
251 fi; \
252 if [ -n "$elfsharedlist" ]; then \
253 strip --strip-unneeded --remove-section=.note --remove-section=.comment $elfsharedlist; \
8f74418b
MM
254 fi; \
255 if [ -n "$elfarchiveslist" ]; then \
256 strip --strip-debug --remove-section=.note --remove-section=.comment $elfarchiveslist; \
9c404149
AM
257 fi; } \
258} }
fc5d7e20 259#-----------------------------------------------------------------
260# remove all RPATH from executable binaries and shared object files
261#
262# Requires: find, awk, cut, xargs, chrpath, uname
263#
264#%no_install_post_chrpath 1
265%__spec_install_post_chrpath {%{!?debug: \
266%{!?no_install_post_chrpath: \
267 %{?verbose:set -x;} \
268echo "Remove RPATH from executable binaries and shared object files."; \
269if [ "$(uname -m)" != alpha ] ; then \
270find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*" | xargs -r file | \
271 awk '/ELF.*(executable|shared object)/ {print $1}' | cut -d: -f1 | \
272while read file ; do \
273 rpath= ; \
274 chmod u+w "$file"; \
275 for dir in `chrpath -l "$file" | \
276 awk '/RPATH=/ { gsub(/.*RPATH=/,""); gsub(/:/," "); print $0 }'` ; do \
277 case $dir in \
278 /home/* | /tmp/* | /usr/lib | /lib | /usr/local/lib | /usr/X11R6/lib ) \
279 echo "remove-rpath: $dir in $file"; \
280 ;; \
281 * ) \
282 if [ "$rpath" = "" ] ; then rpath="$dir" ; \
283 else rpath="$rpath:$dir" ; fi ; \
284 ;; \
285 esac ; \
286 done ; \
287 if [ "$rpath" = "" ] ; then chrpath -d "$file" > /dev/null ; \
288 else chrpath -r "$rpath" "$file" > /dev/null ; fi ; \
289done; fi; } \
290} }
d72c185f 291#-----------------------------------------------------------------
ccb8ae8d 292# Find and gzip all kernel modules
293#
294# Requires: find
295#
296#%no_install_post_compress_modules 1
297%__spec_install_post_compress_modules { \
ccb8ae8d 298%{!?no_install_post_compress_modules: \
fc1ea397 299echo "Compress kernel modules if any."; \
ccb8ae8d 300 %{?verbose:set -x;} \
d618340e 301 if test -d $RPM_BUILD_ROOT/lib/modules ; then \
fc1ea397 302 find $RPM_BUILD_ROOT/lib/modules -name \*.o -type f -print | \
d618340e 303 xargs -r %{__gzip} -9nf; \
fc1ea397 304 find $RPM_BUILD_ROOT/lib/modules -name \*.o -type l -printf "%p %l\n" | \
03b234a5 305 while read a b; do ln -sf $b.gz $a.gz; rm -f $a; done; \
d618340e 306 fi; \
ccb8ae8d 307} }
9c404149
AM
308
309%_source_payload w9.gzdio
310%_binary_payload w9.bzdio
311
83094b62 312#-----------------------------------------------------------------
313# Update all GConf2 schemas
314#
315# Requires: GConf2
316#
7bd8c922 317%gconf_schema_install { umask 022; \
318 GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" \
319 /usr/bin/gconftool-2 --makefile-install-rule \
320 /etc/gconf/schemas/*.schemas > /dev/null \
3ee1090a 321}
83094b62 322
9c404149
AM
323#-----------------------------------------------------------------
324# post %install sequence:
325# - autodeps exceptions
326# - compress all man and info pages,
327# - strip all ELF executables and ELF shared objects if not %debug.
8f74418b 328# - compress kernel modules if any
9c404149
AM
329
330###################################################################
331# Requires/Provides automation
332# exceptions system by Jacek Konieczny <jajcus@pld.org.pl>
338726a6
JB
333#
334#%_noautoreqfiles '%{_defaultdocdir}.*' '%{_examplesdir}.*'
9c404149
AM
335#%_noautoreq %{nil}
336#%_noautoreqdep %{nil}
337#%_noautoprovfiles %{nil}
338#%_noautoprov %{nil}
338726a6
JB
339#%_noautocompressdoc %{nil}
340#
8f74418b
MM
341%_missing_doc_files_terminate_build 1%{nil}
342%_unpackaged_files_terminate_build %{nil}
8781dc74 343# (X)emacs support
d77dcb61 344%___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
345%_emacs_lispdir %(emacs %___emacs_lispdir_helper)
346%_xemacs_lispdir %(xemacs %___emacs_lispdir_helper)
25043cd4
AF
347
348%__php_provides @RPMCONFIGDIR@/php.prov
349%__php_requires @RPMCONFIGDIR@/php.req
350
351# Perl specific macro definitions.
c853f847
AF
352%perl_privlib %(eval "`%{__perl} -V:installprivlib`"; echo $installprivlib)
353%perl_archlib %(eval "`%{__perl} -V:installarchlib`"; echo $installarchlib)
354%perl_vendorlib %(eval "`%{__perl} -V:installvendorlib`"; echo $installvendorlib)
355%perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)
356%perl_sitelib %(eval "`%{__perl} -V:installsitelib`"; echo $installsitelib)
357%perl_sitearch %(eval "`%{__perl} -V:installsitearch`"; echo $installsitearch)
25043cd4 358
c853f847 359%php_pear_dir %{_datadir}/pear
25043cd4
AF
360
361# Python specific macro definitions.
362# python main version
c853f847 363%py_ver %(echo `python -c "import sys; print sys.version[:3]"`)
25043cd4
AF
364
365# directories
c853f847
AF
366%py_prefix %(echo `python -c "import sys; print sys.prefix"`)
367%py_libdir %{py_prefix}/lib/python%{py_ver}
368%py_incdir /usr/include/python%{py_ver}
369%py_sitedir %{py_libdir}/site-packages
370%py_dyndir %{py_libdir}/lib-dynload
25043cd4
AF
371
372# pure python modules compilation
c853f847 373%py_comp python -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
25043cd4 374
c853f847 375%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
376
377# Software written in Python language require Python with main version
378# unchanged
c853f847 379%pyrequires_eq() Requires: %1 >= %py_ver %1 < %(echo `python -c "import sys; import string; ver=sys.version[:3].split('.'); ver[1]=str(int(ver[1])+1); print string.join(ver, '.')"`)
25043cd4 380
0fc5cff8 381# depmod macro
382%depmod() { \
383if [ -e /boot/System.map-%1 ]; then \
384 /sbin/depmod -a -F /boot/System.map-%1 %1; \
385else \
386 if [ -e /boot/System.map ]; then \
387 /sbin/depmod -a -F /boot/System.map %1; \
388 else \
389 /sbin/depmod -a %1; \
390 fi \
391fi; \
392}
393
2afc6e64 394# XMMS specific macros
88bd2520 395%xmms_prefix %(echo `xmms-config --prefix`)
396%xmms_exec_prefix %(echo `xmms-config --exec-prefix`)
397%xmms_version %(echo `xmms-config --version`)
398%xmms_datadir %(echo `xmms-config --data-dir`)
399%xmms_plugindir %(echo `xmms-config --plugin-dir`)
400%xmms_visualization_plugindir %(echo `xmms-config --visualization-plugin-dir`)
401%xmms_input_plugindir %(echo `xmms-config --input-plugin-dir`)
402%xmms_output_plugindir %(echo `xmms-config --output-plugin-dir`)
403%xmms_effect_plugindir %(echo `xmms-config --effect-plugin-dir`)
404%xmms_general_plugindir %(echo `xmms-config --general-plugin-dir`)
2afc6e64 405
This page took 0.113897 seconds and 4 git commands to generate.