]> git.pld-linux.org Git - packages/rpm-build-macros.git/blame - rpm.macros
%%requires_kernel_releq macro
[packages/rpm-build-macros.git] / rpm.macros
CommitLineData
d54662bf
AF
1# PLD rpm macros
2
3%_defaultdocdir %{_usr}/share/doc
4%_fixowner [ `%{__id_u}` = '0' ] && %{__chown_Rhf} root.@ROOT_GROUP@
5%_fixgroup true
6%_topdir %(echo $HOME)/rpm
7%_exec_prefix %{_prefix}
8%_bindir %{_exec_prefix}/bin
9%_sbindir %{_exec_prefix}/sbin
10%_libexecdir %{_exec_prefix}/lib
11%_datadir %{_prefix}/share
12%_sharedstatedir %{_prefix}/com
13%_lib lib
14%_libdir %{_exec_prefix}/%{_lib}
15%_includedir %{_prefix}/include
16%_oldincludedir /usr/include
17%_sysconfdir /etc
18%_localstatedir /var
19%_infodir /usr/share/info
20%_mandir %{_prefix}/share/man
9c404149
AM
21#-----------------------------------------------------------------
22# CFLAGS and LDFLAGS used to build
23
24%debugcflags -O0 -g
25%rpmcflags %{?debug:%debugcflags}%{!?debug:%optflags}
26%rpmldflags %{!?debug:-s}
27
28#-----------------------------------------------------------------
9f4ce098 29%configure2_13 { \
9c404149
AM
30 if [ -n "$LINGUAS" ]; then unset LINGUAS; fi; \
31 LDFLAGS="${LDFLAGS:-%rpmldflags}" ; export LDFLAGS ; \
32 CFLAGS="${CFLAGS:-%rpmcflags}" ; export CFLAGS ; \
33 CXXFLAGS="${CXXFLAGS:-%rpmcflags}" ; export CXXFLAGS ; \
34 FFLAGS="${FFLAGS:-%rpmcflags}" ; export FFLAGS ; \
ae5d93df
AM
35 %{?__cc:CC=%{__cc} ; export CC ; } \
36 %{?__cxx:CXX=%{__cxx} ; export CXX ; } \
9c404149 37 ./configure \
2a7cfd3f 38 --host=%{_target_platform} \
9c404149
AM
39 --prefix=%{_prefix} \
40 --exec-prefix=%{_exec_prefix} \
41 --bindir=%{_bindir} \
42 --sbindir=%{_sbindir} \
43 --sysconfdir=%{_sysconfdir} \
44 --datadir=%{_datadir} \
45 --includedir=%{_includedir} \
46 --libdir=%{_libdir} \
47 --libexecdir=%{_libexecdir} \
48 --localstatedir=%{_localstatedir} \
49 --sharedstatedir=%{_sharedstatedir} \
50 --mandir=%{_mandir} \
51 --infodir=%{_infodir} \
52}
53
4a6b0d54 54#----------------------------------------------------------------
9f4ce098 55%configure {./configure \
4a6b0d54
AF
56 LDFLAGS="${LDFLAGS:-%rpmldflags}" \
57 CFLAGS="${CFLAGS:-%rpmcflags}" \
58 CXXFLAGS="${CXXFLAGS:-%rpmcflags}" \
59 FFLAGS="${FFLAGS:-%rpmcflags}" \
9f4ce098
AF
60 %{?__cc:CC=%{__cc}} \
61 %{?__cxx:CXX=%{__cxx}} \
4a6b0d54
AF
62 --build=%{_target_platform} \
63 --prefix=%{_prefix} \
64 --exec-prefix=%{_exec_prefix} \
65 --bindir=%{_bindir} \
66 --sbindir=%{_sbindir} \
67 --sysconfdir=%{_sysconfdir} \
68 --datadir=%{_datadir} \
69 --includedir=%{_includedir} \
70 --libdir=%{_libdir} \
71 --libexecdir=%{_libexecdir} \
72 --localstatedir=%{_localstatedir} \
73 --sharedstatedir=%{_sharedstatedir} \
74 --mandir=%{_mandir} \
75 --infodir=%{_infodir} \
76}
77
9c404149
AM
78# Location of autoconf macros
79%_aclocaldir %(aclocal --print-ac-dir)
80
e987a186 81# Location of pkgconfig files
d7021551 82%_pkgconfigdir /usr/lib/pkgconfig
e987a186 83
9c404149
AM
84# Location of top applink dir
85%_applnkdir /usr/X11R6/share/applnk
86
87# Location pixmaps for applnk/desktop files
88%_pixmapsdir /usr/X11R6/share/pixmaps
89
e987a186
JB
90# Location of fonts directories
91%_fontsdir /usr/share/fonts
92
9c404149
AM
93# Current date
94%date %(LC_ALL="C" date +"%a %b %d %Y")
95
96# tmp directory
97%tmpdir %(echo "${TMPDIR:-/tmp}")
98
99# Example files, programs, scripts...
100%_examplesdir /usr/src/examples
101
8377d27d 102# The directory holding Linux kernel sources
103%_kernelsrcdir /usr/src/linux
104
9c404149
AM
105# If non-empty "debug" macro defined, add "dbg" suffix to release number
106%_rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}%{?debug:dbg}.%%{ARCH}.rpm
107
9abb477a
AM
108# requires name = version-release
109%requires_releq() %(LC_ALL="C" rpm -q --queryformat 'Requires:%%{NAME} = %%{VERSION}-%%{RELEASE}' %1| grep -v "is not")
75e7ec4e 110%requires_kernel_releq() %(LC_ALL="C" rpm -q --queryformat 'Requires:kernel = %%{VERSION}-%%{RELEASE}' kernel-headers | grep -v "is not")
87be1cf0 111
9c404149
AM
112#-----------------------------------------------------------------
113# find and gzip all files in %{_mandir} and %{infodir}
114#
115# Requires: xargs, find
116#
117#%no_install_post_compress_docs 1
118%__spec_install_post_compress_docs { \
119echo "Compress man and info pages."; \
120%{!?no_install_post_compress_docs: \
121 %{?verbose:set -x;} \
122 for i in /usr/share/man /usr/X11R6/man /usr/share/info; do \
123 if [ -d "$RPM_BUILD_ROOT$i" ]; then \
124 find "$RPM_BUILD_ROOT$i" -name \*.bz2 -print | xargs -r %{__bzip2} -df; \
125 find "$RPM_BUILD_ROOT$i" -name \*.gz -print | xargs -r %{__gzip} -dnf; \
126 find "$RPM_BUILD_ROOT$i" -type f -print | xargs -r %{__gzip} -9nf; \
127 fi; \
128 done; \
129} }
130
131#-----------------------------------------------------------------
132# Strip executable binaries and shared object files
133#
134# Requires: find, awk, strip, cut, xargs
135#
136#%no_install_post_strip 1
137%__spec_install_post_strip {%{!?debug: \
138%{!?no_install_post_strip: \
139 %{?verbose:set -x;} \
140 echo "Strip executable binaries and shared object files."; \
141 filelist=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*"`; \
142 elfexelist=`echo $filelist | xargs -r file | \
143 awk '/ELF.*executable/ {print $1}' | cut -d: -f1`; \
144 elfsharedlist=`echo $filelist | xargs -r file | \
145 awk '/LF.*shared object/ {print $1}' | cut -d: -f1`; \
146 if [ -n "$elfexelist" ]; then \
147 strip --remove-section=.note --remove-section=.comment $elfexelist; \
148 fi; \
149 if [ -n "$elfsharedlist" ]; then \
150 strip --strip-unneeded --remove-section=.note --remove-section=.comment $elfsharedlist; \
151 fi; } \
152} }
153
154%_source_payload w9.gzdio
155%_binary_payload w9.bzdio
156
157#-----------------------------------------------------------------
158# post %install sequence:
159# - autodeps exceptions
160# - compress all man and info pages,
161# - strip all ELF executables and ELF shared objects if not %debug.
162
163###################################################################
164# Requires/Provides automation
165# exceptions system by Jacek Konieczny <jajcus@pld.org.pl>
7126cc1b
JK
166%__spec_prep_pre \
167_autoreqprov=n \
168%{?_noautoreqfiles:_autoreqprov=y}\
169%{?_noautoreq:_autoreqprov=y}\
170%{?_noautoreqdep:_autoreqprov=y}\
171%{?_noautoprovfiles:_autoreqprov=y}\
172%{?_noautoprov:_autoreqprov=y}\
173if [ "$_autoreqprov" = "y" ] ; then \
174 if [ -f %{_builddir}/__rpm_lock ] ; then \
175 echo "Some package using \%_noauto* macros is already being built" >&2 \
176 echo "If it is not true delete %{_builddir}/__rpm_lock" >&2 \
177 exit 1 \
178 else \
179 rm -f %{_builddir}/__rpm_*\
180 touch %{_builddir}/__rpm_lock \
181 fi \
182fi \
9c404149
AM
183%{nil}
184
ef437f4b 185%__os_install_post \
9c404149
AM
186%{?_noautoreqfiles:for f in %{_noautoreqfiles} ; do echo %{?buildroot:%{buildroot}}$f >> %{_builddir}/__rpm_noautoreqfiles ; done }\
187%{?_noautoreq:for f in %{_noautoreq} ; do echo "$f" >> %{_builddir}/__rpm_noautoreq ; done }\
188%{?_noautoreqdep:for f in %{_noautoreqdep} ; do echo "$f" >> %{_builddir}/__rpm_noautoreqdep ; done }\
189%{?_noautoprovfiles:for f in %{_noautoprovfiles} ; do echo %{?buildroot:%{buildroot}}$f >> %{_builddir}/__rpm_noautoprovfiles ; done }\
190%{?_noautoprov:for f in %{_noautoprov} ; do echo "$f" >> %{_builddir}/__rpm_noautoprov ; done }\
191%{__spec_install_post_strip}\
192%{__spec_install_post_compress_docs}\
193%{__arch_install_post}\
9c404149
AM
194%{nil}
195
196%__spec_clean_pre %{___build_pre}\
7126cc1b
JK
197_autoreqprov=n \
198%{?_noautoreqfiles:_autoreqprov=y}\
199%{?_noautoreq:_autoreqprov=y}\
200%{?_noautoreqdep:_autoreqprov=y}\
201%{?_noautoprovfiles:_autoreqprov=y}\
202%{?_noautoprov:_autoreqprov=y}\
203%{?_noautoreqfiles:_autoreqprov=y}\
204if [ "$_autoreqprov" = "y" ] ; then \
205 rm -f %{_builddir}/__rpm_* \
206fi \
9c404149
AM
207%{nil}
208
209
210#%_noautoreqfiles "%{_defaultdocdir}.*" "%{_examplesdir}.*"
211#%_noautoreq %{nil}
212#%_noautoreqdep %{nil}
213#%_noautoprovfiles %{nil}
214#%_noautoprov %{nil}
This page took 2.409868 seconds and 4 git commands to generate.