]> git.pld-linux.org Git - packages/rpm-build-macros.git/blame - rpm.macros
- new macro: requires_releq (requires name = version-release)
[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
87be1cf0
AM
108%requires_eq() %(LC_ALL="C" rpm -q --queryformat 'Requires:%%{NAME} = %%{VERSION}-%%{RELEASE}' %1| grep -v "is not")
109
9c404149
AM
110#-----------------------------------------------------------------
111# find and gzip all files in %{_mandir} and %{infodir}
112#
113# Requires: xargs, find
114#
115#%no_install_post_compress_docs 1
116%__spec_install_post_compress_docs { \
117echo "Compress man and info pages."; \
118%{!?no_install_post_compress_docs: \
119 %{?verbose:set -x;} \
120 for i in /usr/share/man /usr/X11R6/man /usr/share/info; do \
121 if [ -d "$RPM_BUILD_ROOT$i" ]; then \
122 find "$RPM_BUILD_ROOT$i" -name \*.bz2 -print | xargs -r %{__bzip2} -df; \
123 find "$RPM_BUILD_ROOT$i" -name \*.gz -print | xargs -r %{__gzip} -dnf; \
124 find "$RPM_BUILD_ROOT$i" -type f -print | xargs -r %{__gzip} -9nf; \
125 fi; \
126 done; \
127} }
128
129#-----------------------------------------------------------------
130# Strip executable binaries and shared object files
131#
132# Requires: find, awk, strip, cut, xargs
133#
134#%no_install_post_strip 1
135%__spec_install_post_strip {%{!?debug: \
136%{!?no_install_post_strip: \
137 %{?verbose:set -x;} \
138 echo "Strip executable binaries and shared object files."; \
139 filelist=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*"`; \
140 elfexelist=`echo $filelist | xargs -r file | \
141 awk '/ELF.*executable/ {print $1}' | cut -d: -f1`; \
142 elfsharedlist=`echo $filelist | xargs -r file | \
143 awk '/LF.*shared object/ {print $1}' | cut -d: -f1`; \
144 if [ -n "$elfexelist" ]; then \
145 strip --remove-section=.note --remove-section=.comment $elfexelist; \
146 fi; \
147 if [ -n "$elfsharedlist" ]; then \
148 strip --strip-unneeded --remove-section=.note --remove-section=.comment $elfsharedlist; \
149 fi; } \
150} }
151
152%_source_payload w9.gzdio
153%_binary_payload w9.bzdio
154
155#-----------------------------------------------------------------
156# post %install sequence:
157# - autodeps exceptions
158# - compress all man and info pages,
159# - strip all ELF executables and ELF shared objects if not %debug.
160
161###################################################################
162# Requires/Provides automation
163# exceptions system by Jacek Konieczny <jajcus@pld.org.pl>
7126cc1b
JK
164%__spec_prep_pre \
165_autoreqprov=n \
166%{?_noautoreqfiles:_autoreqprov=y}\
167%{?_noautoreq:_autoreqprov=y}\
168%{?_noautoreqdep:_autoreqprov=y}\
169%{?_noautoprovfiles:_autoreqprov=y}\
170%{?_noautoprov:_autoreqprov=y}\
171if [ "$_autoreqprov" = "y" ] ; then \
172 if [ -f %{_builddir}/__rpm_lock ] ; then \
173 echo "Some package using \%_noauto* macros is already being built" >&2 \
174 echo "If it is not true delete %{_builddir}/__rpm_lock" >&2 \
175 exit 1 \
176 else \
177 rm -f %{_builddir}/__rpm_*\
178 touch %{_builddir}/__rpm_lock \
179 fi \
180fi \
9c404149
AM
181%{nil}
182
ef437f4b 183%__os_install_post \
9c404149
AM
184%{?_noautoreqfiles:for f in %{_noautoreqfiles} ; do echo %{?buildroot:%{buildroot}}$f >> %{_builddir}/__rpm_noautoreqfiles ; done }\
185%{?_noautoreq:for f in %{_noautoreq} ; do echo "$f" >> %{_builddir}/__rpm_noautoreq ; done }\
186%{?_noautoreqdep:for f in %{_noautoreqdep} ; do echo "$f" >> %{_builddir}/__rpm_noautoreqdep ; done }\
187%{?_noautoprovfiles:for f in %{_noautoprovfiles} ; do echo %{?buildroot:%{buildroot}}$f >> %{_builddir}/__rpm_noautoprovfiles ; done }\
188%{?_noautoprov:for f in %{_noautoprov} ; do echo "$f" >> %{_builddir}/__rpm_noautoprov ; done }\
189%{__spec_install_post_strip}\
190%{__spec_install_post_compress_docs}\
191%{__arch_install_post}\
9c404149
AM
192%{nil}
193
194%__spec_clean_pre %{___build_pre}\
7126cc1b
JK
195_autoreqprov=n \
196%{?_noautoreqfiles:_autoreqprov=y}\
197%{?_noautoreq:_autoreqprov=y}\
198%{?_noautoreqdep:_autoreqprov=y}\
199%{?_noautoprovfiles:_autoreqprov=y}\
200%{?_noautoprov:_autoreqprov=y}\
201%{?_noautoreqfiles:_autoreqprov=y}\
202if [ "$_autoreqprov" = "y" ] ; then \
203 rm -f %{_builddir}/__rpm_* \
204fi \
9c404149
AM
205%{nil}
206
207
208#%_noautoreqfiles "%{_defaultdocdir}.*" "%{_examplesdir}.*"
209#%_noautoreq %{nil}
210#%_noautoreqdep %{nil}
211#%_noautoprovfiles %{nil}
212#%_noautoprov %{nil}
This page took 0.052918 seconds and 4 git commands to generate.