]> git.pld-linux.org Git - packages/rpm.git/blob - rpm.macros
- check for /usr/bin/gconftool-2 existence in %gconf_schema_* macros, in case pkg...
[packages/rpm.git] / rpm.macros
1 # $Revision$, $Date$
2 # PLD Linux rpm macros
3
4 %epoch          0
5 %x8664          x86_64 amd64 ia32e
6
7 # kernel compiler
8 %kgcc           %{__cc}
9 %kgcc_package   gcc
10
11 # compiler version
12 %cc_version             %{expand:%%global cc_version %(%{__cc} -dumpversion || echo ERROR)}%cc_version
13 %cxx_version    %{expand:%%global cxx_version %(%{__cxx} -dumpversion || echo ERROR)}%cxx_version
14
15 %__rm                   /bin/rm --interactive=never
16
17 # Build system path macros.
18 #
19 %__autoconf             autoconf %{?debug:-Wall}
20 %__automake             automake -a -c -f --foreign
21 %__autopoint            autopoint --force
22
23 %__gettextize { \
24         if grep -qs 'AM_GNU_GETTEXT.*external' configure.{ac,in} ; then \
25                 gettextize --copy --force --no-changelog; \
26         else \
27                 gettextize --copy --force --no-changelog --intl; \
28         fi; \
29         if [ ! -f po/Makevars ]; then \
30                 cp -f po/Makevars{.template,}; \
31         fi; \
32 }
33
34 %__glib_gettextize      glib-gettextize --copy --force
35 %__gnome_doc_common     gnome-doc-common --copy
36 %__gnome_doc_prepare    gnome-doc-prepare --copy --force
37 %__gtkdocize            gtkdocize --copy
38 %__intltoolize          intltoolize --copy --force
39 %__libtoolize           libtoolize --copy --force --install
40
41 #       Path to top of build area.
42 %_topdir                %{expand:%%global _topdir %(test -d ../SPECS -a -d ../SOURCES && (cd ..; pwd) || echo $HOME/rpm)}%_topdir
43
44 #       The number of cvs changelog entries kept when building package.
45 %_buildchangelogtruncate 20
46
47 %dependencytracking     %{nil}
48
49 #       Relations between package names that cause dependency loops
50 #       with legacy packages that cannot be fixed. Relations are
51 #       specified as
52 #               p>q
53 #       where package p has a Requires: on something that package q Provides:
54 #
55 # XXX   Note: that there cannot be any whitespace within the string "p>q",
56 #       and that both p and q are package names (i.e. no version/release).
57 %_dependency_whiteout   %{nil}
58
59 %_smp_mflags %([ -z "$RPM_BUILD_NCPUS" ] \\\
60         && RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\
61         [ "$RPM_BUILD_NCPUS" -gt 1 ] && echo "-j$RPM_BUILD_NCPUS")
62
63 #-----------------------------------------------------------------
64 #
65 # (re)definition of %{rpm*flags} with %filterout_* support
66 # BuildRequires:        awk
67 # BuildRequires:        rpmbuild(macros) >= 1.315
68 #
69 # Flags specified in %filterout_* are removed from %rpm*flags, exactly:
70 # %rpmcflags    = %optflags - %filterout - %filterout_c   - %filterout_ld
71 # %rpmcxxflags  = %optflags - %filterout - %filterout_cxx - %filterout_ld
72 # %rpmcppflags  = %optcppflags - %filterout - %filterout_cpp - %filterout_ld
73 # %rpmldflags   = %optldflags - %filterout_ld
74 #
75 # Regular expressions are supported, but to avoid some character be treated
76 # as regular expression it must be escaped twice.
77
78 %filter_out                                             \
79         for (i = 1; i in I; i++) {      A=0;    \
80                 for (f in F) {                          \
81                         if (I[i] ~ "^" F[f] "$") A=1;   \
82                 };                                                      \
83                 if (!A) printf(I[i] FS);        \
84         }
85
86 %rpmcflags %(awk 'BEGIN {
87         split("%{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}",I);
88         split("%{?filterout} %{?filterout_c} %{?filterout_ld}",F);
89         %{filter_out}
90 }')
91
92 %rpmcxxflags %(awk 'BEGIN {
93         split("%{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}",I);
94         split("%{?filterout} %{?filterout_cxx} %{?filterout_ld}",F);
95         %{filter_out}
96 }')
97
98 %rpmcppflags %(awk 'BEGIN {
99         split("%{?debug:%debugcppflags}%{!?debug:%optcppflags}%{?debuginfocppflags}",I);
100         split("%{?filterout} %{?filterout_cpp} %{?filterout_cpp}",F);
101         %{filter_out}
102 }')
103
104 %rpmldflags %(awk 'BEGIN {
105         split("%{?optldflags}",I);
106         split("%{?filterout_ld}",F)
107         %{filter_out}
108 }')
109
110 # rpmldflags with stripped -Wl, -- in the form flags have to be passed to 'ld'
111 # but, don't use it, better use gcc as linker
112 %ld_rpmldflags %(awk 'BEGIN {
113         split("%{rpmldflags}",F);
114         for (f in F) {
115                 s = F[f];
116                 if (s ~ /^-Wl,/) {
117                         s = substr(s,5);
118                         gsub(/,/," ",s);
119                 };
120                 printf(s FS);
121         };
122 }')
123
124 #-----------------------------------------------------------------
125 %configure2_13 { \
126  if [ -n "$LINGUAS" ]; then unset LINGUAS; fi; \
127  LDFLAGS="${LDFLAGS:-%rpmldflags}" ; export LDFLAGS ; \
128  CFLAGS="${CFLAGS:-%rpmcflags}" ; export CFLAGS ; \
129  CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" ; export CXXFLAGS ; \
130  FFLAGS="${FFLAGS:-%rpmcflags}" ; export FFLAGS ; \
131  FCFLAGS="${FCFLAGS:-%rpmcflags}" ; export FCFLAGS ; \
132  CPPFLAGS="${CPPFLAGS:-%rpmcppflags}" ; export CPPFLAGS ; \
133  %{?__cc:CC="%{__cc}" ; export CC ; } \
134  %{?__cxx:CXX="%{__cxx}" ; export CXX ; } \
135  %{?configuredir:%{configuredir}}%{!?configuredir:.}/configure \
136         --host=%{_target_platform} \
137         --prefix=%{_prefix} \
138         --exec-prefix=%{_exec_prefix} \
139         --bindir=%{_bindir} \
140         --sbindir=%{_sbindir} \
141         --sysconfdir=%{_sysconfdir} \
142         --datadir=%{_datadir} \
143         --includedir=%{_includedir} \
144         --libdir=%{_libdir} \
145         --libexecdir=%{_libexecdir} \
146         --localstatedir=%{_localstatedir} \
147         --sharedstatedir=%{_sharedstatedir} \
148         --mandir=%{_mandir} \
149         --infodir=%{_infodir} \
150         --x-libraries=%{?_x_libraries}%{!?_x_libraries:%{_libdir}} \
151         %{dependencytracking} \
152 }
153
154 %__cmake        /usr/bin/cmake
155 %cmake { \
156 CC="%{__cc}" \
157 CXX="%{__cxx}" \
158 CFLAGS="%{rpmcflags}" \
159 CXXFLAGS="%{rpmcxxflags}" \
160 LDFLAGS="%{rpmldflags}" \
161 %{__cmake} \
162 }
163
164 # override __scons to add -j4 in your ~/.rpmmacros for parallel make
165 %__scons        /usr/bin/scons
166 %scons { \
167 %{__scons} \
168         LDFLAGS="${LDFLAGS:-%rpmldflags}" \
169         CFLAGS="${CFLAGS:-%rpmcflags}" \
170         CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" \
171         FFLAGS="${FFLAGS:-%rpmcflags}" \
172         CPPFLAGS="${CPPFLAGS:-%rpmcppflags}" \
173         %{?__cc:CC="%{__cc}"} \
174         %{?__cxx:CXX="%{__cxx}"} \
175         libsuffix=%{_lib} \
176         prefix=%{_prefix} \
177 }
178
179 # waf. see waf.spec
180 # override __waf to add -j4 in your ~/.rpmmacros for parallel make
181 %__waf  /usr/bin/waf
182 %waf { \
183 CC="%{__cc}" \
184 CXX="%{__cxx}" \
185 CPP="%{__cpp}" \
186 CFLAGS="%{rpmcflags}" \
187 CXXFLAGS="%{rpmcxxflags}" \
188 %{__waf} \
189 }
190
191 #----------------------------------------------------------------
192 #%configure_cache 0
193 %configure_cache_file   %{buildroot}.configure.cache
194
195 %configure {./configure \
196         LDFLAGS="${LDFLAGS:-%rpmldflags}" \
197         CFLAGS="${CFLAGS:-%rpmcflags}" \
198         CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" \
199         FFLAGS="${FFLAGS:-%rpmcflags}" \
200         FCFLAGS="${FCFLAGS:-%rpmcflags}" \
201         CPPFLAGS="${CPPFLAGS:-%rpmcppflags}" \
202         %{?__cc:CC="%{__cc}"} \
203         %{?__cxx:CXX="%{__cxx}"} \
204         --host=%{_target_platform} \
205         --build=%{_target_platform} \
206         --prefix=%{_prefix} \
207         --exec-prefix=%{_exec_prefix} \
208         --bindir=%{_bindir} \
209         --sbindir=%{_sbindir} \
210         --sysconfdir=%{_sysconfdir} \
211         --datadir=%{_datadir} \
212         --includedir=%{_includedir} \
213         --libdir=%{_libdir} \
214         --libexecdir=%{_libexecdir} \
215         --localstatedir=%{_localstatedir} \
216         --sharedstatedir=%{_sharedstatedir} \
217         --mandir=%{_mandir} \
218         --infodir=%{_infodir} \
219         --x-libraries=%{?_x_libraries}%{!?_x_libraries:%{_libdir}} \
220         %{dependencytracking} \
221         %{?configure_cache:--cache-file=%{configure_cache_file}} \
222 }
223
224 # overload to insert debuginfo package
225 %prep \
226 %if 0%{?_enable_debug_packages}\
227 %{debug_package}\
228 %endif\
229 %%prep\
230 %{nil}
231
232 # Location of autoconf macros
233 %_aclocaldir    %{expand:%%global _aclocaldir %(aclocal --print-ac-dir || echo ERROR)}%_aclocaldir
234
235 # Location of omf files
236 %_omf_dest_dir  %{expand:%%global _omf_dest_dir %(scrollkeeper-config --omfdir || echo ERROR)}%_omf_dest_dir
237
238 # Location of pkgconfig files
239 %_pkgconfigdir  /usr/%{_lib}/pkgconfig
240 # noarch pkgconfig files
241 %_npkgconfigdir /usr/share/pkgconfig
242
243 # Location of desktop files
244 %_desktopdir    /usr/share/applications
245 %_applnkdir     ERROR:_applnkdir_is_obsolete_use_desktopdir_instead
246
247 # Location of pixmaps for applnk/desktop files
248 %_pixmapsdir    /usr/share/pixmaps
249
250 # Location of themable icons for applnk/desktop files
251 %_iconsdir      /usr/share/icons
252
253 # Location of fonts directories
254 %_fontsdir      /usr/share/fonts
255
256 # Location of Gtk and associated libraries documentation
257 %_gtkdocdir     %{_defaultdocdir}/gtk-doc/html
258
259 # Location of KDE documentation
260 %_kdedocdir     %{_defaultdocdir}/kde/HTML
261
262 # unsermake script
263 %__unsermake /usr/share/unsermake/unsermake
264
265 # Current date
266 %date           %(LC_ALL="C" date +"%a %b %d %Y")
267
268 # Example files, programs, scripts...
269 %_examplesdir   /usr/src/examples
270
271 # Alternative kernel type/version
272 %_alt_kernel    %{nil}%{?alt_kernel:-%{?alt_kernel}}
273
274 # The directory holding Linux kernel sources
275 %_kernelsrcdir  /usr/src/linux%{_alt_kernel}
276
277 # If non-empty "debug" macro defined, add "dbg" suffix to release number
278 %_rpmfilename           %%{NAME}-%%{VERSION}-%%{RELEASE}%{?debug:dbg}.%%{ARCH}.rpm
279
280 # Requires name = version-release
281 %requires_releq()               %(echo '%*' | LC_ALL="C" xargs -r rpm -q --qf 'Requires: %{N} = %|E?{%{E}:}|%{V}-%{R}\\n' | grep -v 'is not')
282
283 %releq_kernel                   %{expand:%%global releq_kernel %(R=$(LC_ALL=C rpm -q --qf '%{N} = %|E?{%{E}:}|%{V}-%{R}' -f %{_kernelsrcdir}/include/linux/version.h 2>/dev/null | grep -v 'is not' | sed -e 's:-headers::;s:-config::'); echo ${R:-ERROR})}%releq_kernel
284 %releq_kernel_up                %{expand:%%global releq_kernel_up %(R=$(LC_ALL=C rpm -q --qf '%{N}-up = %|E?{%{E}:}|%{V}-%{R}' -f %{_kernelsrcdir}/include/linux/version.h 2>/dev/null | grep -v 'is not' | sed -e 's:-headers::;s:-config::'); echo ${R:-ERROR})}%releq_kernel_up
285 %releq_kernel_smp()             %{expand:%%global releq_kernel_smp %(R=$(LC_ALL=C rpm -q --qf '%{N}-smp = %|E?{%{E}:}|%{V}-%{R}' -f %{_kernelsrcdir}/include/linux/version.h 2>/dev/null | grep -v 'is not' | sed -e 's:-headers::;s:-config::'); echo ${R:-ERROR})}%releq_kernel_smp
286 %requires_releq_kernel(s:)              Requires%{-s:(%{-s*})}: %releq_kernel
287 %requires_releq_kernel_up(s:)   Requires%{-s:(%{-s*})}: %releq_kernel_up
288 %requires_releq_kernel_smp(s:)  Requires%{-s:(%{-s*})}: %releq_kernel_smp
289
290 # XXX: why epoch 0 is stripped?
291 %requires_eq()          %(echo '%*' | LC_ALL="C" xargs -r rpm -q --qf 'Requires: %{N} = %|E?{%{E}:}|%{V}\\n' | sed -e 's/ 0:/ /' | grep -v 'is not')
292 %requires_eq_to() %(LC_ALL="C" rpm -q --qf 'Requires: %1 = %|E?{%{E}:}|%{V}' %2 | grep -v "is not")
293
294 %apache_modules_api %{expand:%%global apache_modules_api %(awk '/#define MODULE_MAGIC_NUMBER_MAJOR/ {print $3}' /usr/include/apache/ap_mmn.h 2>/dev/null || echo ERROR)}%apache_modules_api
295
296 # kernel version-release handling
297 %__kernel_ver    %{expand:%%global __kernel_ver %( \\
298         Z=$(awk -F'"' '/UTS_RELEASE/{print $2}' %{_kernelsrcdir}/include/linux/{version,utsrelease}.h 2>/dev/null); \\
299         Z=${Z:-$(awk -F' = ' '/^VERSION/{v=$2} /^PATCHLEVEL/{p=$2} /^SUBLEVEL/{s=$2} /^EXTRAVERSION/{e=$2} END {printf("%d.%d.%d%s", v, p, s, e)}' %{_kernelsrcdir}/Makefile 2>/dev/null)}; \\
300         echo ${Z:-ERROR}; \\
301 )}%__kernel_ver
302
303 %__kernel_rel   %{expand:%%global __kernel_rel %(Z=$(LC_ALL=C rpm -qf %{_kernelsrcdir}/include/linux/fs.h 2>/dev/null --qf "%{R}" | grep -v "is not"); echo ${Z:-ERROR})}%__kernel_rel
304 %__kernel_rpmvr %{expand:%%global __kernel_rpmvr %(Z=$(LC_ALL=C rpm -qf %{_kernelsrcdir}/include/linux/fs.h 2>/dev/null --qf "%{V}-%{R}" | grep -v "is not"); echo ${Z:-ERROR})}%__kernel_rpmvr
305 %_kernel_ver    %{expand:%%global _kernel_ver %{__kernel_ver}%{?with_dist_kernel:%(echo %{__kernel_ver} | grep -q -e - || echo -%{__kernel_rel})}}%_kernel_ver
306 %_kernel_ver_str %{expand:%%global _kernel_ver_str %(echo %{!?_without_dist_kernel:%{__kernel_rpmvr}}%{?_without_dist_kernel:%{__kernel_ver}} | sed -e 's/-/_/g')}%_kernel_ver_str
307
308 # `uname -r` to be used in @release field
309 %_kernel_vermagic       %{expand:%%global _kernel_vermagic %(echo %{_kernel_ver} | sed -e 's/-/_/g')}%_kernel_vermagic
310
311 # sgml macros
312 %xmlcat_add()           /usr/bin/xmlcatalog --noout --add nextCatalog \"\" %1 /etc/xml/catalog ;
313 %xmlcat_del()           /usr/bin/xmlcatalog --noout --del %1 /etc/xml/catalog ;
314 %xmlcat_add_rewrite     /usr/bin/xmlcatalog --noout --add rewriteSystem
315 %xmlcat_create()        /usr/bin/xmlcatalog --noout --create %1 ;
316 %sgmlcat_add()          /usr/bin/install-catalog --add %1 %2 > /dev/null ;
317 %sgmlcat_del()          /usr/bin/install-catalog --remove %1 %2 > /dev/null ;
318 %docbook_sgmlcat_fix() { for l in \
319 '' \
320 '  -- default decl --' \
321 'DTDDECL "-//OASIS//DTD DocBook XML V%2//EN" "../../xml.dcl"' \
322 '  -- hacks for opensp --' \
323 'SYSTEM "file://%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd" "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
324 'SYSTEM "http://www.oasis-open.org/docbook/xml/%2/docbookx.dtd"                  "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
325 '' \
326 ; do echo $l; done >> %1 \
327 }
328
329 # vim - "
330
331 # minimum file size needed for compressed documents.
332 # just smaller files than this get larger when compressed.
333 # some stats:
334 # - 0 byte file compressed was 25 bytes .gz
335 # - 39 byte file was compressed as 57
336 # - with test/test.spec@man 158 byte file was compressed also 158
337 %_min_compress_bytes    159
338
339 #-----------------------------------------------------------------
340 # find and gzip all files in %{_mandir} and %{infodir}
341 #
342 # Requires: xargs, find
343 #
344 #%no_install_post_compress_docs 1
345 %__spec_install_post_compress_docs { \
346 %{!?no_install_post_compress_docs:__spec_install_post_compress_docs() { \
347         for i in /usr/share/man /usr/X11R6/man; do \
348                 if [ -d "$RPM_BUILD_ROOT$i" ]; then \
349                         echo "Compress man pages: $i"; \
350                         find "$RPM_BUILD_ROOT$i" -name '*.bz2' -print | xargs -r %{__bzip2} -df; \
351                         find "$RPM_BUILD_ROOT$i" -name '*.gz' -print | xargs -r %{__gzip} -dnf; \
352                         find $RPM_BUILD_ROOT$i -type l | while read a; do \
353                                 m=$(readlink $a); \
354                                 rm -f $a; \
355                                 echo .so ${m##*/} > $a; \
356                                 echo >&2 "Converted ${a#$RPM_BUILD_ROOT} from symlink to man link: ${m##*/}"; \
357                         done; \
358                         find "$RPM_BUILD_ROOT$i" -type f -size +%{_min_compress_bytes}c -print | xargs -r %{__gzip} -9nf; \
359                 fi; \
360         done; \
361         if [ -d "$RPM_BUILD_ROOT%{_infodir}" ]; then \
362                 echo "Compress info pages: %{_infodir}"; \
363                 find "$RPM_BUILD_ROOT%{_infodir}" -name '*.bz2' -print | xargs -r %{__bzip2} -df; \
364                 find "$RPM_BUILD_ROOT%{_infodir}" -name '*.gz' -print | xargs -r %{__gzip} -dnf; \
365                 find "$RPM_BUILD_ROOT%{_infodir}" -name '*.info*' -type f -size +%{_min_compress_bytes}c -print | xargs -r %{__gzip} -9nf; \
366         fi; \
367 }; __spec_install_post_compress_docs } }
368
369 #-----------------------------------------------------------------
370 # Strip executable binaries and shared object files
371 #
372 # Requires: find, awk, strip, cut, xargs
373 #
374 # Special macros which affect this process:
375 #%no_install_post_strip 1               # disable stripping at all
376 #%_noautostrip                  regexp  # exclude files matching (anchored!) regex from stripping
377 #%_autostripall                 regexp  # strip files matching (anchored!) regex using plain strip
378 #%_autostripunneeded    regexp  # strip files matching (anchored!) regex using strip --strip-unneeded
379 #%_autostripdebug               regexp  # strip files matching (anchored!) regex using strip --strip-debug
380 #
381 %__spec_install_post_strip {%{!?debug: \
382 %{!?no_install_post_strip:__spec_install_post_strip() { \
383 if [ -d "$RPM_BUILD_ROOT" ]; then \
384         if [ -d $RPM_BUILD_ROOT/lib/modules ]; then \
385                 modulelist=$(find $RPM_BUILD_ROOT/lib/modules -name '*o' -type f -print); \
386                 if [ "$modulelist" ]; then \
387                         modulecount=$(echo "$modulelist" | wc -l); \
388                         printf "Stripping %d kernel modules..." $modulecount; \
389                         echo "$modulelist" | xargs -l512 chmod u+w; \
390                         echo "$modulelist" | xargs -l512 %{__strip} --strip-unneeded --remove-section=.comment --remove-section=.note.GNU-stack; \
391                         echo "DONE"; \
392                 fi; \
393         fi; \
394         filelist=$(find $RPM_BUILD_ROOT -type f ! -regex ".*/usr/lib[0-9]*/debug/.*\.debug" ! -regex ".*/lib/modules/.*" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*" %{?_noautostrip:! -regex "%{_noautostrip}"} %{?_autostripall:! -regex "%{_autostripall}"} %{?_autostripunneeded:! -regex "%{_autostripunneeded}"} %{?_autostripdebug:! -regex "%{_autostripdebug}"}); \
395         if [ -n "$filelist" ]; then \
396                 filetypes=`echo "$filelist" | xargs -r -d'\\n' file`; \
397                 elfexelist=`echo "$filetypes" | awk -F: '/ELF.*executable/ {print $1}'`; \
398                 elfsharedlist=`echo "$filetypes" | awk -F: '/LF.*shared object/ {print $1}'`; \
399                 archiveslist=`echo "$filetypes" | awk -F: '/current ar archive/ {print $1}'`; \
400                 if [ -n "$elfexelist" ]; then \
401                         printf "Stripping %d ELF executables..." $(echo "$elfexelist" | wc -l); \
402                         chmod u+w $elfexelist; \
403                         %{__strip} --remove-section=.note --remove-section=.comment $elfexelist; \
404                         echo "DONE"; \
405                 fi; \
406                 if [ -n "$elfsharedlist" ]; then \
407                         printf "Stripping %d ELF shared libraries..." $(echo "$elfsharedlist" | wc -l); \
408                         chmod u+w $elfsharedlist; \
409                         %{__strip} --strip-unneeded --remove-section=.note --remove-section=.comment $elfsharedlist; \
410                         echo "DONE"; \
411                 fi; \
412                 if [ -n "$archiveslist" ]; then \
413                         printf "Stripping %d ar archives..." $(echo "$archiveslist" | wc -l); \
414                         chmod u+w $archiveslist; \
415                         %{__strip} --strip-debug --remove-section=.note --remove-section=.comment $archiveslist; \
416                         echo "DONE"; \
417                 fi; \
418         fi; \
419     filelist_all=%{?_autostripall:$(find $RPM_BUILD_ROOT -type f -regex "%{_autostripall}")}; \
420     filelist_unneeded=%{?_autostripunneeded:$(find $RPM_BUILD_ROOT -type f -regex "%{_autostripunneeded}")}; \
421     filelist_debug=%{?_autostripdebug:$(find $RPM_BUILD_ROOT -type f -regex "%{_autostripdebug}")}; \
422         if [ -n "$filelist_all" ]; then \
423                 printf "Stripping everything from %d additional files..." $(echo "$filelist_all" | wc -l); \
424                 chmod u+w $filelist_all; \
425                 %{__strip} --remove-section=.note --remove-section=.comment $filelist_all; \
426                 echo "DONE"; \
427         fi; \
428         if [ -n "$filelist_unneeded" ]; then \
429                 printf "Stripping unneeded from %d additional files..." $(echo "$filelist_unneeded" | wc -l); \
430                 chmod u+w $filelist_unneeded; \
431                 %{__strip} --strip-unneeded --remove-section=.note --remove-section=.comment $filelist_unneeded; \
432                 echo "DONE"; \
433         fi; \
434         if [ -n "$filelist_debug" ]; then \
435                 printf "Stripping debuginfo from %d additional files..." $(echo "$filelist_debug" | wc -l); \
436                 chmod u+w $filelist_debug; \
437                 %{__strip} --strip-debug --remove-section=.note --remove-section=.comment $filelist_debug; \
438                 echo "DONE"; \
439         fi; \
440 fi; }; __spec_install_post_strip } } }
441
442 #-----------------------------------------------------------------
443 # remove all RPATH from executable binaries and shared object files
444 #
445 # Requires: find, awk, cut, xargs, chrpath, uname
446 #
447 # Special macros which affect this process
448 #%no_install_post_chrpath       1       # disable chrpath at all
449 #%_noautochrpath        regex           # exclude files matching (anchored!) regex from chrpath
450 #
451 %__spec_install_post_chrpath {%{!?debug: \
452 %{!?no_install_post_chrpath: __spec_install_post_chrpath() { \
453 if [ -d "$RPM_BUILD_ROOT" ]; then \
454         files=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*" ! -regex ".*/usr/lib[0-9]*/debug/.*" ! -regex ".*/lib/modules/.*" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*" %{?_noautochrpath:! -regex "%{_noautochrpath}"}`; \
455         if [ -n "$files" ]; then \
456                 objs=`echo "$files" | xargs -r -d'\\n' file | awk -F: '/ELF.*(executable.*dynamically linked|shared object)/ {print $1}'`; \
457         fi; \
458         if [ -n "$objs" ]; then \
459                 printf "Remove RPATH from %d executable binaries and shared object files.\n" $(echo "$objs" | wc -l); \
460                 echo "$objs" | \
461                 while read file; do \
462                         rpath= ; \
463                         chmod u+w "$file"; \
464                         for dir in $(chrpath -l "$file" | awk '/RPATH=/ { gsub(/.*RPATH=/,""); gsub(/:/," "); print $0 }'); do \
465                                         case $dir in \
466                                         '$ORIGIN' ) \
467                                                 if [ "$rpath" = "" ] ; then rpath="$dir" ; \
468                                                 else rpath="$rpath:$dir" ; fi ; \
469                                                 continue ; \
470                                                 ;; \
471                                         esac ; \
472                                         newdir=$(readlink -m "$dir"); \
473                                         [ ${#newdir} -le ${#dir} ] && dir=$newdir; \
474                                         case $dir in \
475                                         /home/* | /tmp/* | /usr/lib | /usr/lib64 | /lib | /lib64 | /usr/local/lib | /usr/local/lib64 | /usr/X11R6/lib | /usr/X11R6/lib64 ) \
476                                                 echo "remove-rpath: $dir in $file"; \
477                                                 ;; \
478                                         * ) \
479                                                 if [ "$rpath" = "" ] ; then rpath="$dir" ; \
480                                                 else rpath="$rpath:$dir" ; fi ; \
481                                                 ;; \
482                                         esac ; \
483                         done ; \
484                         if [ "$rpath" = "" ] ; then chrpath -d "$file" > /dev/null ; \
485                         else chrpath -r "$rpath" "$file" > /dev/null ; fi ; \
486                 done; \
487         fi; \
488 fi; }; __spec_install_post_chrpath } } }
489
490 #-----------------------------------------------------------------
491 # Find and gzip all kernel modules
492 #
493 # Requires: find
494 #
495 #%no_install_post_compress_modules      1
496 %__spec_install_post_compress_modules { \
497 %{!?no_install_post_compress_modules: __spec_install_post_compress_modules() { \
498         if [ -d $RPM_BUILD_ROOT/lib/modules ]; then \
499                 q=$(find $RPM_BUILD_ROOT/lib/modules -name '*o' -type f -print); \
500                 if [ "$q" ]; then \
501                         printf "Compress %d kernel modules..." $(echo "$q" | wc -l); \
502                         echo "$q" | xargs -r %{__gzip} -9nf; \
503                         echo "DONE"; \
504                         find $RPM_BUILD_ROOT/lib/modules -name '*o' -type l -printf "%p %l\n" | \
505                         while read a b; do ln -sf $b.gz $a.gz; rm -f $a; done; \
506                 fi; \
507         fi; \
508 }; __spec_install_post_compress_modules } }
509
510 # Remove common Perl files we don't package
511 %__spec_install_post_perl_clean {\
512 %{!?no_install_post_perl_clean: \
513 %{?pdir:rm -f $RPM_BUILD_ROOT{%{perl_archlib}/perllocal.pod,%{perl_vendorarch}/auto/%{pdir}%{?pnam:/%(echo %{pnam} | tr - /)}/.packlist}} \
514 } }
515
516 #-----------------------------------------------------------------
517 # Update GConf2 schemas
518 #
519 # Requires: GConf2
520 #
521 %gconf_schema_install() \
522         if [ -x /usr/bin/gconftool-2 ]; then \
523                 umask 022; \
524                 GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" \\\
525                 /usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/%{?1}%{!?1:*.schemas} > /dev/null; \
526         fi; \
527 %{nil}
528
529 %gconf_schema_uninstall() \
530 if [ $1 = 0 -a -x /usr/bin/gconftool-2 ]; then \
531         umask 022; \
532         GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" \\\
533         /usr/bin/gconftool-2 --makefile-uninstall-rule /etc/gconf/schemas/%{?1} > /dev/null \
534 fi; \
535 %{nil}
536
537 #-----------------------------------------------------------------
538 # Update desktop MIME database
539 # requires: desktop-file-utils
540 %update_desktop_database() {{ \
541         umask 022; \
542         /usr/bin/update-desktop-database -q; \
543 }}%{nil}
544
545 %update_desktop_database_post %update_desktop_database
546
547 %update_desktop_database_postun() {{ \
548 if [ "$1" = "0" ]; then \
549         %update_desktop_database; \
550 fi; \
551 }}%{nil}
552
553 #-----------------------------------------------------------------
554 # Update shared MIME info database
555 # requires: shared-mime-info
556 #
557 %update_mime_database() {{ \
558         umask 022; \
559         /usr/bin/update-mime-database %{_datadir}/mime; \
560 }}%{nil}
561
562 #-----------------------------------------------------------------
563 # Update icon cache
564 # requires: gtk+
565 #
566 %update_icon_cache() {{ \
567         umask 022; \
568         /usr/bin/gtk-update-icon-cache -qf %{_datadir}/icons/%1; \
569 }}%{nil}
570
571 #-----------------------------------------------------------------
572 # Update scrollkeeper database
573 # requires: scrollkeeper
574 #
575 %scrollkeeper_update_post() \
576         /usr/bin/scrollkeeper-update -q; \
577 %{nil}
578
579 %scrollkeeper_update_postun() \
580 if [ "$1" = "0" ]; then \
581         /usr/bin/scrollkeeper-update -q; \
582 fi; \
583 %{nil}
584
585 #-----------------------------------------------------------------
586 # post %install sequence:
587 # - autodeps exceptions
588 # - compress all man and info pages,
589 # - strip all ELF executables and ELF shared objects if not %debug.
590 # - compress kernel modules if any
591
592 ###################################################################
593 # Requires/Provides automation
594 # exceptions system by Jacek Konieczny <jajcus@pld-linux.org>
595 #
596 %__noautoreqfiles       %(sed -e s'/#.*//' /etc/rpm/noautoreqfiles)%{?_noautoreqfiles: %{_noautoreqfiles}}
597 %__noautoprovfiles      %(sed -e s'/#.*//' /etc/rpm/noautoprovfiles)%{?_noautoprovfiles: %{_noautoprovfiles}}
598 %__noautoreq            %(sed -e s'/#.*//' /etc/rpm/noautoreq)%{?_noautoreq: %{_noautoreq}}
599 %__noautoreqdep         %(sed -e s'/#.*//' /etc/rpm/noautoreqdep)%{?_noautoreqdep: %{_noautoreqdep}}
600 %__noautoprov           %(sed -e s'/#.*//' /etc/rpm/noautoprov)%{?_noautoprov: %{_noautoprov}}
601
602 #%_noautocompressdoc    %{nil}
603 #
604 %_missing_doc_files_terminate_build     1%{nil}
605 %_unpackaged_files_terminate_build      %{nil}
606 # (X)emacs support
607 %___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;}'
608 %_emacs_lispdir %{expand:%%global _emacs_lispdir %(Z=$(emacs %___emacs_lispdir_helper); echo ${Z:-ERROR})}%_emacs_lispdir
609 %_xemacs_lispdir %{expand:%%global _xemacs_lispdir %(Z=$(xemacs %___emacs_lispdir_helper); echo ${Z:-ERROR})}%_xemacs_lispdir
610
611 %__php_provides %{nil}
612 %__php_requires %{nil}
613 %__perl_provides %{nil}
614 %__perl_requires %{nil}
615 %__mono_provides %{nil}
616 %__mono_requires %{nil}
617
618 # Perl specific macro definitions.
619 %perl_privlib           %{expand:%%global perl_privlib %(eval $(%{__perl} -V:installprivlib 2>/dev/null); echo ${installprivlib:-ERROR})}%perl_privlib
620 %perl_archlib           %{expand:%%global perl_archlib %(eval $(%{__perl} -V:installarchlib 2>/dev/null); echo ${installarchlib:-ERROR})}%perl_archlib
621 %perl_vendorlib         %{expand:%%global perl_vendorlib %(eval $(%{__perl} -V:installvendorlib 2>/dev/null); echo ${installvendorlib:-ERROR})}%perl_vendorlib
622 %perl_vendorarch        %{expand:%%global perl_vendorarch %(eval $(%{__perl} -V:installvendorarch 2>/dev/null); echo ${installvendorarch:-ERROR})}%perl_vendorarch
623 %perl_sitelib           %{expand:%%global perl_sitelib %(eval $(%{__perl} -V:installsitelib 2>/dev/null); echo ${installsitelib:-ERROR})}%perl_sitelib
624 %perl_sitearch          %{expand:%%global perl_sitearch %(eval $(%{__perl} -V:installsitearch 2>/dev/null); echo ${installsitearch:-ERROR})}%perl_sitearch
625
626 # Ruby
627 %__ruby                         /usr/bin/ruby
628 %ruby_archdir           %{expand:%%global ruby_archdir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["archdir"]' 2>/dev/null || echo ERROR)}%ruby_archdir
629 %ruby_ridir                     %{expand:%%global ruby_ridir %(%{__ruby} -r rbconfig -e 'include Config; print File.join(CONFIG["datadir"], "ri", CONFIG["ruby_version"], "system")' 2>/dev/null || echo ERROR)}%ruby_ridir
630 %ruby_rubylibdir        %{expand:%%global ruby_rubylibdir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["rubylibdir"]' 2>/dev/null || echo ERROR)}%ruby_rubylibdir
631 %ruby_vendorarchdir     %{expand:%%global ruby_vendorarchdir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["vendorarchdir"]' 2>/dev/null || echo ERROR)}%ruby_vendorarchdir
632 %ruby_vendorlibdir      %{expand:%%global ruby_vendorlibdir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["vendorlibdir"]' 2>/dev/null || echo ERROR)}%ruby_vendorlibdir
633 %ruby_sitearchdir       %{expand:%%global ruby_sitearchdir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["sitearchdir"]' 2>/dev/null || echo ERROR)}%ruby_sitearchdir
634 %ruby_sitelibdir        %{expand:%%global ruby_sitelibdir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["sitelibdir"]' 2>/dev/null || echo ERROR)}%ruby_sitelibdir
635 %ruby_version           %{expand:%%global ruby_version %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["ruby_version"]' 2>/dev/null || echo ERROR)}%ruby_version
636 %ruby_ver_requires_eq   Requires:       ruby(ver) = %ruby_version
637 %ruby_mod_ver_requires_eq       Requires:       ruby-modules(ver) = %ruby_version
638
639 %php_pear_dir           /usr/share/pear
640 %php_data_dir           /usr/share/php
641 %php_extensiondir       %{expand:%%global php_extensiondir %(php-config --extension-dir 2>/dev/null || echo ERROR)}%php_extensiondir
642 %php_sysconfdir         %{expand:%%global php_sysconfdir %(php-config --sysconfdir 2>/dev/null || echo ERROR)}%php_sysconfdir
643 %php_includedir         %{expand:%%global php_includedir %(php-config --include-dir 2>/dev/null || echo ERROR)}%php_includedir
644
645 # extract php/zend api versions
646 %php_major_version              %{expand:%%global php_major_version %(awk '/#define PHP_MAJOR_VERSION/{print $3}' %{php_includedir}/main/php_version.h 2>/dev/null || echo ERROR)}%php_major_version
647 %php_api_version                %{expand:%%global php_api_version %(awk '/#define PHP_API_VERSION/{print $3}' %{php_includedir}/main/php.h 2>/dev/null || echo ERROR)}%php_api_version
648 %php_pdo_api_version    %{expand:%%global php_pdo_api_version %(awk '/#define PDO_DRIVER_API/{print $3}' %{php_includedir}/ext/pdo/php_pdo_driver.h 2>/dev/null || echo ERROR)}%php_pdo_api_version
649 %php_debug                              %{expand:%%global php_debug %(awk '/#define ZEND_DEBUG/{print $3}' %{php_includedir}/main/php_config.h 2>/dev/null || echo ERROR)}%php_debug
650 %zend_module_api                %{expand:%%global zend_module_api %(awk '/#define ZEND_MODULE_API_NO/{print $3}' %{php_includedir}/Zend/zend_modules.h 2>/dev/null || echo ERROR)}%zend_module_api
651 %zend_extension_api             %{expand:%%global zend_extension_api %(awk '/#define ZEND_EXTENSION_API_NO/{print $3}' %{php_includedir}/Zend/zend_extensions.h 2>/dev/null || echo ERROR)}%zend_extension_api
652 %zend_zts                               %{expand:%%global zend_zts %(Z=$(grep -sc '^#define ZTS 1' %{php_includedir}/main/php_config.h); echo ${Z:-ERROR})}%zend_zts
653
654 # helper macro
655 %__php_api_requires(v:) Requires: php%{-v*}(%{expand:%1}) = %{expand:%{%{!?2:%{1}}%{?2}}}
656
657 # macros for public use
658 # for php extensions (php-pecl)
659 %requires_php_extension %{__php_api_requires modules_api php_api_version} \
660 %{__php_api_requires zend_module_api} \
661 %{__php_api_requires -v %php_major_version debug php_debug} \
662 %{__php_api_requires -v %php_major_version thread-safety zend_zts}
663
664 # for zend extensions
665 %requires_zend_extension %{__php_api_requires zend_module_api} \
666 %{__php_api_requires zend_extension_api} \
667 %{__php_api_requires -v %php_major_version debug php_debug} \
668 %{__php_api_requires -v %php_major_version thread-safety zend_zts}
669
670 # for php pdo modules (php-pecl-PDO_*)
671 %requires_php_pdo_module %{__php_api_requires PDO_API php_pdo_api_version}
672
673 # for using PHP post scripts. for PHP >= 5.0
674 %php_webserver_restart \
675 [ ! -f /etc/apache/conf.d/??_mod_php.conf ] || %service -q apache restart \
676 [ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart \
677 if [ -f /etc/rc.d/init.d/php-fcgi ]; then \
678         PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \
679         if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php.fcgi* ]]; then \
680                 %service -q php-fcgi restart \
681         fi \
682 fi \
683 %{nil}
684
685 # for using php post scripts. for PHP >= 4.0 && PHP < 5.0
686 %php4_webserver_restart \
687 [ ! -f /etc/apache/conf.d/??_mod_php4.conf ] || %service -q apache restart \
688 [ ! -f /etc/httpd/conf.d/??_mod_php4.conf ] || %service -q httpd restart \
689 if [ -f /etc/rc.d/init.d/php-fcgi ]; then \
690         PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \
691         if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php4.fcgi* ]]; then \
692                 %service -q php-fcgi restart \
693         fi \
694 fi \
695 %{nil}
696
697 # X.org helper macros
698 %__xorg_abi_requires_ge() Requires: xorg-xserver-server(%{expand:%1}-abi) >= %{expand:%{%2}}
699 %__xorg_abi_requires_lt() Requires: xorg-xserver-server(%{expand:%1}-abi) < %(awk -vv=%{expand:%{%2}} 'BEGIN{split(v, a, "."); printf("%s.0", a[1] + 1); exit}')
700
701 %xorg_xserver_ansic_abi         %{expand:%%global xorg_xserver_ansic_abi %(awk '/#define ABI_ANSIC_VERSION/ { split($0,A,/[(,)]/); printf("%d.%d",A[2], A[3]); }' /usr/include/xorg/xf86Module.h 2> /dev/null || echo ERROR)}%xorg_xserver_ansic_abi
702 %xorg_xserver_extension_abi     %{expand:%%global xorg_xserver_extension_abi %(awk '/#define ABI_EXTENSION_VERSION/ { split($0,A,/[(,)]/); printf("%d.%d",A[2], A[3]); }' /usr/include/xorg/xf86Module.h 2> /dev/null || echo ERROR)}%xorg_xserver_extension_abi
703 %xorg_xserver_font_abi          %{expand:%%global xorg_xserver_font_abi %(awk '/#define ABI_FONT_VERSION/ { split($0,A,/[(,)]/); printf("%d.%d",A[2], A[3]); }' /usr/include/xorg/xf86Module.h 2> /dev/null | echo ERROR)}%xorg_xserver_font_abi
704 %xorg_xserver_videodrv_abi      %{expand:%%global xorg_xserver_videodrv_abi %(awk '/#define ABI_VIDEODRV_VERSION/ { split($0,A,/[(,)]/); printf("%d.%d",A[2], A[3]); }' /usr/include/xorg/xf86Module.h 2> /dev/null || echo ERROR)}%xorg_xserver_videodrv_abi
705 %xorg_xserver_xinput_abi        %{expand:%%global xorg_xserver_xinput_abi %(awk '/#define ABI_XINPUT_VERSION/ { split($0,A,/[(,)]/); printf("%d.%d",A[2], A[3]); }' /usr/include/xorg/xf86Module.h 2> /dev/null || echo ERROR)}%xorg_xserver_xinput_abi
706
707 %requires_xorg_xserver_extension \
708 %{__xorg_abi_requires_ge ansic xorg_xserver_ansic_abi} \
709 %{__xorg_abi_requires_lt ansic xorg_xserver_ansic_abi} \
710 %{__xorg_abi_requires_ge extension xorg_xserver_extension_abi} \
711 %{__xorg_abi_requires_lt extension xorg_xserver_extension_abi} \
712 %{nil}
713
714 %requires_xorg_xserver_xinput \
715 %{__xorg_abi_requires_ge ansic xorg_xserver_ansic_abi} \
716 %{__xorg_abi_requires_lt ansic xorg_xserver_ansic_abi} \
717 %{__xorg_abi_requires_ge xinput xorg_xserver_xinput_abi} \
718 %{__xorg_abi_requires_lt xinput xorg_xserver_xinput_abi} \
719 %{nil}
720
721 %requires_xorg_xserver_font \
722 %{__xorg_abi_requires_ge ansic xorg_xserver_ansic_abi} \
723 %{__xorg_abi_requires_lt ansic xorg_xserver_ansic_abi} \
724 %{__xorg_abi_requires_ge font xorg_xserver_font_abi} \
725 %{__xorg_abi_requires_lt font xorg_xserver_font_abi} \
726 %{nil}
727
728 %requires_xorg_xserver_videodrv \
729 %{__xorg_abi_requires_ge ansic xorg_xserver_ansic_abi} \
730 %{__xorg_abi_requires_lt ansic xorg_xserver_ansic_abi} \
731 %{__xorg_abi_requires_ge videodrv xorg_xserver_videodrv_abi} \
732 %{__xorg_abi_requires_lt videodrv xorg_xserver_videodrv_abi} \
733 %{nil}
734
735 # Python specific macro definitions.
736 # python main version
737 %py_ver                 %{expand:%%global py_ver %(%{__python} -c "import sys; print sys.version[:3]" 2>/dev/null || echo ERROR)}%py_ver
738
739 # directories
740 %py_prefix              %{expand:%%global py_prefix %(%{__python} -c "import sys; print sys.prefix" 2>/dev/null || echo ERROR)}%py_prefix
741 %py_libdir              %{py_prefix}/%{_lib}/python%{py_ver}
742 %py_scriptdir   %{py_prefix}/share/python%{py_ver}
743 %py_incdir              /usr/include/python%{py_ver}
744 %py_sitedir             %{py_libdir}/site-packages
745 %py_sitescriptdir %{py_scriptdir}/site-packages
746 %py_dyndir              %{py_libdir}/lib-dynload
747
748 # pure python modules compilation
749 %py_comp                python -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
750
751 %py_ocomp               python -O -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
752
753 # Software written in Python language require Python with main version
754 %pyrequires_eq() Requires:      %1
755
756 # Hardlink binary identical .pyc and .pyo files
757 # (idea by glen <at> pld-linux <dot> org)
758 %__spec_install_post_py_hardlink {\
759 %{!?no_install_post_py_hardlink: __spec_install_post_py_hardlink() { \
760 [ ! -d "$RPM_BUILD_ROOT" ] || find "$RPM_BUILD_ROOT" -name '*.pyc' | while read a; do \
761         b="${a%.pyc}.pyo"; \
762         if cmp -s "$a" "$b"; then \
763                 ln -f "$a" "$b"; \
764         fi; \
765 done \
766 }; __spec_install_post_py_hardlink } }
767
768 # remove python sources, so that check-files won't complain
769 # (idea by glen <at> pld-linux <dot> org)
770 %py_postclean() \
771 for d in %{py_sitescriptdir} %{py_sitedir} %*; do \
772  [ ! -d "$RPM_BUILD_ROOT$d" ] || find "$RPM_BUILD_ROOT$d" -name '*.py' -print0 | xargs -0r -l512 rm;\
773 done \
774 %{nil}
775
776 # depmod macro
777 %depmod() { \
778 umask 022; \
779 if [ -e /boot/System.map-%1 ]; then \
780         /sbin/depmod -a -F /boot/System.map-%1 %1; \
781 else \
782         if [ -e /boot/System.map ]; then \
783                 /sbin/depmod -a -F /boot/System.map %1; \
784         else \
785                 /sbin/depmod -a %1; \
786         fi \
787 fi; \
788 }
789
790 # XMMS specific macros
791 %xmms_prefix                    %{expand:%%global xmms_prefix %(xmms-config --prefix 2>/dev/null || echo ERROR)}%xmms_prefix
792 %xmms_exec_prefix               %{expand:%%global xmms_exec_prefix %(xmms-config --exec-prefix 2>/dev/null || echo ERROR)}%xmms_exec_prefix
793 %xmms_version                   %{expand:%%global xmms_version %(xmms-config --version 2>/dev/null || echo ERROR)}%xmms_version
794 %xmms_datadir                   %{expand:%%global xmms_datadir %(xmms-config --data-dir 2>/dev/null || echo ERROR)}%xmms_datadir
795 %xmms_plugindir                 %{expand:%%global xmms_plugindir %(xmms-config --plugin-dir 2>/dev/null || echo ERROR)}%xmms_plugindir
796 %xmms_visualization_plugindir   %{expand:%%global xmms_visualization_plugindir %(xmms-config --visualization-plugin-dir 2>/dev/null || echo ERROR)}%xmms_visualization_plugindir
797 %xmms_input_plugindir           %{expand:%%global xmms_input_plugindir %(xmms-config --input-plugin-dir 2>/dev/null || echo ERROR)}%xmms_input_plugindir
798 %xmms_output_plugindir          %{expand:%%global xmms_output_plugindir %(xmms-config --output-plugin-dir 2>/dev/null || echo ERROR)}%xmms_output_plugindir
799 %xmms_effect_plugindir          %{expand:%%global xmms_effect_plugindir %(xmms-config --effect-plugin-dir 2>/dev/null || echo ERROR)}%xmms_effect_plugindir
800 %xmms_general_plugindir         %{expand:%%global xmms_general_plugindir %(xmms-config --general-plugin-dir 2>/dev/null || echo ERROR)}%xmms_general_plugindir
801
802 %_target_base_arch      %{expand:%%global _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/')}%_target_base_arch
803
804 # user/group checking macros
805 #
806 # Usage:
807 #       %userremove myuser
808 #
809 %userremove     /usr/lib/rpm/user_group.sh user del
810 %groupremove    /usr/lib/rpm/user_group.sh group del
811 #
812 # Usage:
813 #       if %usertestrm myuser; then
814 #               /usr/sbin/userdel -r myuser
815 # Note:
816 #       use these macros only if you need to call userdel/groupdel with
817 #       a non-standard option or take an extra action; otherwise use the
818 #       %userremove/%groupremove macros
819 #
820 %usertestrm     /usr/lib/rpm/user_group.sh user testrm
821 %grouptestrm    /usr/lib/rpm/user_group.sh group testrm
822 # user group membership management macros
823 #
824 # Usage:
825 #       %addusertogroup myuser agroup
826 #
827 %addusertogroup /usr/lib/rpm/user_group.sh user addtogroup
828
829 # banner support (useful in {pre,post}{,un} and triggers)
830 #
831 # Usage:
832 #       %banner name [-a] [-e] [-n] [-tn] <<EOF
833 # the banner text, the banner text
834 # the banner text, and following line
835 #EOF
836 # You can use any form of here-document, <<'EOF' <<-EOT will do.
837 # NOTE: if your use "<<-EOF", then You can actually indent inside here-document.
838 #
839 # -a   - append to the banner
840 # -e   - send to stderr instead of stdout
841 # -n   - no show banner (overrides -t)
842 # -t   - show only, if RPM_SCRIPTVERBOSITY >= n; default n=5
843 #
844 # Tests:
845 # (rpm -E '%banner -e banner <<EOF'; echo -e 'hi\nEOF') > m; sh -x m
846 # rpm -E 'date | %banner -e banner' > m; sh -x m
847 #
848 %banner(aent:) ( \
849 RPM_SCRIPTVERBOSITY=5 \
850 [ -r /etc/sysconfig/rpm ] && . /etc/sysconfig/rpm \
851 if [ -x /usr/bin/banner.sh ]; then \
852         CMD="/usr/bin/banner.sh %{-e:--stderr} %{!-n:$([ $RPM_SCRIPTVERBOSITY -ge %{-t:%{-t*}}%{!-t:5} ] && echo -s)} %{!-a:-m}%{-a:-M} %1" \
853 else \
854         CMD="cat%{-e: >&2}" \
855 fi \
856 eval $CMD %{?2:%2}%{?3: %3}) \
857 %{nil}
858
859 # useradd/groupadd macros
860 # Author: Elan Ruusamäe <glen@pld-linux.org>
861 #
862 # Usage:
863 #   %useradd [-P package] [-u uid] [-d home_dir] [-s shell] [-c comment]
864 #   [-g initial_group] [-G group[,...]] login
865 #
866 #  -u uid. REQUIRED
867 #  -g gid/group. REQUIRED
868 #  -s defaults to /bin/false
869 #  -d defaults to /usr/share/empty
870 #  -c No default
871 #  -r is accepted but ignored (it's always set)
872 #  -k skeleton dir. defaults to /usr/share/empty
873 # rpm specific flags
874 #  -P package name. defaults to %{name}
875 #
876 %useradd(c:d:e:f:g:G:Mmk:op:s:u:rP:) \
877 %{!-u:%{error:useradd: Required argument -u missing}} \
878 %{!-g:%{error:useradd: Required argument -g missing}} \
879 %{!?1:%{error:useradd: Required parameter login missing}} \
880 if [ -n "`/bin/id -u %{expand:%{%{#}}} 2>/dev/null`" ]; then \
881         if [ "`/bin/id -u %{expand:%{%{#}}}`" != "%{-u*}" ]; then \
882                 echo "Error: user %{expand:%{%{#}}} doesn't have uid=%{-u*}. Correct this before installing %{-P*}%{!?-P:%{name}}." 1>&2 \
883                 exit 1 \
884         fi \
885 else \
886         echo "Adding user %{expand:%{%{#}}} UID=%{-u*}." \
887         /usr/sbin/useradd \\\
888                 %{-m:-m -k %{-k*}%{!-k:/usr/share/empty}} \\\
889                 -u %{-u*} \\\
890                 -r \\\
891                 -d %{-d*}%{!-d:/usr/share/empty} \\\
892                 -s %{-s*}%{!-s:/bin/false} \\\
893                 %{-c:-c "%(set -- %{-c*} %{*}; echo $1)"}\\\
894                 -g %{-g*} \\\
895                 %{-M} \\\
896                 %{-G:-G %{-G*}} \\\
897                 %{expand:%{%{#}}} 1>&2 || exit $? \
898         [ ! -x /usr/sbin/nscd ] || /usr/sbin/nscd -i passwd || : \
899 fi;
900
901 # Usage:
902 #   %groupadd [-P package] [-g gid] group
903 #
904 # -g gid. REQUIRED
905 #
906 # Sample:
907 #   %groupadd -P %{name}-base -g %{gid} %{name}
908
909 %groupadd(g:P:rfo)      \
910 %{!-g:%{error:groupadd: Required argument -g missing}} \
911 %{!?1:%{error:groupadd: Required parameter group missing}} \
912 if [ -n "`/usr/bin/getgid %{1}`" ]; then \
913         if [ "`/usr/bin/getgid %{1}`" != "%{-g*}" ]; then \
914                 echo "Error: group %{1} doesn't have gid=%{-g*}. Correct this before installing %{-P*}%{!?-P:%{name}}." 1>&2 \
915                 exit 1 \
916         fi \
917 else \
918         echo "Adding group %{1} GID=%{-g*}." \
919         /usr/sbin/groupadd -g %{-g*} -r %{1} 1>&2 || exit $? \
920         [ ! -x /usr/sbin/nscd ] || /usr/sbin/nscd -i group || : \
921 fi;
922
923 # webapp macros
924 # Author: Elan Ruusamäe <glen@pld-linux.org>
925 #
926 # The config is installed/removed inside trigger, this means that you can any
927 # time install apache1/apache/lighttpd package and the configuration file is
928 # updated. if you don't need the config for various reason for specific
929 # webserver, just remove the symlink from config directory using webapp
930 # program. the trigger will not recreate the symlink on upgrades. In other
931 # words the config is linked to webserver config directory on first install of
932 # PACKAGE or WEBSERVER.
933 #
934 # Add package's webserver config to webserver webapps dir.
935 # Usage:
936 #   %webapp_register WEBSERVER WEBAPP
937 #
938 %webapp_register() \
939 %{?debug:set -x; echo "webapp_register: %{name}-%{version}-%{release} 1:[$1]; 2:[$2]"} \
940 if [ "$1" = "1" ] && [ "$2" = "1" ]; then\
941         /usr/sbin/webapp register %1 %2\
942 fi\
943 # reload webserver if the config symlink is there and skip reload if webserver is upgraded\
944 if [ -L /etc/%1/webapps.d/%(echo "%2" | tr '/' '-').conf ] && [ "$2" -lt "2" ]; then\
945         %{expand:%service -q %%1 reload}\
946 fi\
947 %{nil}
948
949 # Remove package's config from webserver webapps dir.
950 # Usage:
951 #   %webapp_register [-f] WEBSERVER WEBAPP
952 %webapp_unregister(f) \
953 %{?debug:set -x; echo "webapp_unregister: %{name}-%{version}-%{release}: 1:[$1]; 2:[$2]"} \
954 # remove link if either of the packages are gone \
955 if [ -n "%{-f:1}" ] || [ "$1" = "0" ] || [ "$2" = "0" ] && [ -L /etc/%1/webapps.d/%(echo "%2" | tr '/' '-').conf ]; then \
956         /usr/sbin/webapp unregister %1 %2\
957         %{expand:%service -q %%1 reload}\
958 fi \
959 %{nil}
960
961 # service macro.
962 # Author: Elan Ruusamäe <glen@pld-linux.org>
963 #
964 # calls usual service restart on package %post, but skips the restart if
965 # administrator has disabled automatic service restarts in either global
966 # /etc/sysconfig/rpm or per service /etc/sysconfig/SERVICE file.
967 #
968 # Usage:
969 #   %service [-q] [-n] SERVICE ACTION ["SERVICE NICE DESCRIPTION"]
970 #
971 #  -q be silent when service isn't started (for scriplets restaring other package's services)
972 #  -n NOOP mode, do not actually restart service
973 #
974 # Requirements:
975 # BuildRequires:        rpmbuild(macros) >= 1.268
976 # Requires:     rc-scripts
977 # -n option:
978 # BuildRequires:        rpmbuild(macros) >= 1.450
979 %service(qn) {{%(export noop=%{-n:1} quiet=%{-q:1}; /usr/lib/rpm/service_generator.sh %{*}) };}
980
981
982 # Java macros. based on jpackage macros.java
983 #
984 # Root directory where all Java VMs/SDK/JREs are installed.
985 %_jvmdir                %{_libdir}/jvm
986
987 # Root directory where all Java VMs/SDK/JREs expose their jars
988 %_jvmjardir             %{_libdir}/jvm-exports
989
990 # Root directory for all Java VM/SDK/JRE's private things.
991 %_jvmprivdir    %{_libdir}/jvm-private
992
993 # Root directory for all architecture dependent parts of Java VM/SDK/JRE's
994 %_jvmlibdir             %{_libdir}/jvm
995
996 # Root directory for all architecture independent parts of Java VM/SDK/JRE's
997 %_jvmdatadir    %{_datadir}/jvm
998
999 # Root directory for all configurations parts of Java VM/SDK/JRE's
1000 %_jvmsysconfdir %{_sysconfdir}/jvm
1001
1002 # Root directory for all common architecture dependent parts of Java VM/SDK/JRE's
1003 %_jvmcommonlibdir       %{_libdir}/jvm-common
1004
1005 # Root directory for all common architecture independent parts of Java VM/SDK/JRE's
1006 %_jvmcommondatadir      %{_datadir}/jvm-common
1007
1008 # Root directory for all common configurations parts of Java VM/SDK/JRE's
1009 %_jvmcommonsysconfdir   %{_sysconfdir}/jvm-common
1010
1011 # Directory where arch-specific (JNI) version-independent jars are installed.
1012 %_jnidir                %{_libdir}/java
1013
1014 %java_home              %{expand:%%global java_home %([ -f %{_javadir}-utils/java-functions ] || { echo ERROR; exit 0; }; unset JAVA_HOME; . %{_javadir}-utils/java-functions; set_jvm; echo ${JAVA_HOME:-ERROR})}%java_home
1015
1016 %ant                    JAVA_HOME=%{java_home} ant
1017 %jar                    %{java_home}/bin/jar
1018 %java                   %{expand:%%global java %([ -f %{_javadir}-utils/java-functions ] || { echo ERROR; exit 0; }; unset JAVACMD; . %{_javadir}-utils/java-functions; set_javacmd; echo $JAVACMD)}%java
1019 %javac                  %{java_home}/bin/javac
1020 %javadoc                %{java_home}/bin/javadoc
1021
1022 %add_jvm_extension      JAVA_LIBDIR=%{buildroot}/%{_javadir}    %{_bindir}/jvmjar -l
1023
1024 %jpackage_script() \
1025 install -d $RPM_BUILD_ROOT%{_bindir}\
1026 cat > $RPM_BUILD_ROOT%{_bindir}/%5 << 'EOF' \
1027 #!/bin/sh\
1028 #\
1029 # %{name} script\
1030 # JPackage Project <http://www.jpackage.org/>\
1031 \
1032 # Source functions library\
1033 . %{_javadir}-utils/java-functions\
1034 \
1035 # Source system prefs\
1036 if [ -f %{_sysconfdir}/java/%{name}.conf ]; then\
1037     . %{_sysconfdir}/java/%{name}.conf\
1038 fi\
1039 \
1040 # Source user prefs\
1041 if [ -f $HOME/.%{name}rc ]; then\
1042     . $HOME/.%{name}rc\
1043 fi\
1044 \
1045 # Configuration\
1046 MAIN_CLASS=%1\
1047 BASE_FLAGS=%2\
1048 BASE_OPTIONS=%3\
1049 BASE_JARS="%(echo %4 | tr ':' ' ')"\
1050 \
1051 # Set parameters\
1052 set_jvm\
1053 set_classpath $BASE_JARS\
1054 set_flags $BASE_FLAGS\
1055 set_options $BASE_OPTIONS\
1056 \
1057 # Let's start\
1058 run "$@"\
1059 EOF
1060
1061 # jpackage 1.7
1062 # Directory for maven depmaps
1063 #
1064 %_mavendepmapdir /etc/maven
1065 %_mavendepmapfragdir /etc/maven/fragments
1066
1067 #
1068 # add_to_depmap adds an entry to the depmap. The arguments are:
1069 #
1070 # %1 the original groupid
1071 # %2 the original artifact id
1072 # %3 the version
1073 # %4 the new groupid
1074 # %5 the new artifactid
1075 #
1076
1077 %add_to_maven_depmap() \
1078 install -dm 755 $RPM_BUILD_ROOT/%{_mavendepmapfragdir}\
1079 cat >>$RPM_BUILD_ROOT/%{_mavendepmapfragdir}/%{name}<< EOF\
1080 <dependency>\
1081     <maven>\
1082         <groupId>%1</groupId>\
1083         <artifactId>%2</artifactId>\
1084         <version>%3</version>\
1085     </maven>\
1086     <jpp>\
1087         <groupId>%4</groupId>\
1088         <artifactId>%5</artifactId>\
1089         <version>%3</version>\
1090     </jpp>\
1091 </dependency>\
1092 \
1093 EOF\
1094 %{nil}
1095
1096 #==============================================================================
1097 #
1098 # update_maven_depmap updates the main maven depmap
1099 #
1100 %update_maven_depmap() \
1101 echo -e "<dependencies>\\n" > %{_mavendepmapdir}/maven2-depmap.xml\
1102 if [ -d %{_mavendepmapfragdir} ] && [ -n "`find %{_mavendepmapfragdir} -type f`" ]; then\
1103 cat %{_mavendepmapfragdir}/* >> %{_mavendepmapdir}/maven2-depmap.xml\
1104 fi\
1105 echo -e "</dependencies>\\n" >> %{_mavendepmapdir}/maven2-depmap.xml
1106
1107
1108 # PEAR install macros
1109 # Author: Elan Ruusamäe <glen@pld-linux.org>
1110 #
1111 # Usage:
1112 #       %%pear_package_setup ...
1113 #
1114 # -a #   - also unpack SOURCE#. for PEAR bootstrapping
1115 # -n FMT - create builddir with FMT, instead of default %%{_pearname}-%%{version}
1116 # -z     - unpack pear package and let pear use package.xml (not tarball) for install. for PEAR bootstrapping
1117 # -D     - pass -D to %setup (so the build dir is not removed)
1118 # -c     - register channel from local channel.xml file
1119 #
1120 # unpack PEAR package to %%{_builddir}/FMT. package is extracted with already
1121 # destination hierarchy. you should copy the tree to buildroot after
1122 # patching/reorganizing with %%pear_package_install.
1123 #
1124 # additionally BUILDROOT is stripped from files and files are converted to UNIX
1125 # line endings.
1126 #
1127 # the pear install process output is recorded to install.log, you should put it
1128 # to %%doc for later debug or just for information.
1129 #
1130 # additionally additional-packages.txt is produced if it was detected that the
1131 # package has optional dependencies. the file format is suitable of displaying
1132 # in %%post of a package. you should put this file to %%doc. noautocompressdoc is
1133 # automatically added for this file.
1134
1135
1136 # records install.log and transforms PEAR names to PLD Linux rpm package names.
1137 %__pear_install_log \
1138 tee install.log \
1139 # make post message of optional packages \
1140 grep 'can optionally use' install.log | sed -e 's,package "pear/,package "php-pear-,g;s,^pear/,php-pear-,;s,^pear/,php-pear-,;s,^channel://.*/,,' > optional-packages.txt \
1141 if [ -s optional-packages.txt ]; then \
1142         awk -F'"' '/use package/{print $2}' optional-packages.txt | sed -e "s,_,/,g;s,php-pear-, 'pear(,;s,$,.*)'," | tr -d '\\\n' > _noautoreq \
1143 else \
1144         rm -f optional-packages.txt \
1145 fi \
1146 %{nil}
1147
1148 # command invoking pear cli
1149 %__pear /usr/bin/pear
1150
1151 %pear_install(a:n:zD) \
1152 %__pear \\\
1153         -c %{builddir}/pearrc \\\
1154         -d doc_dir=/docs \\\
1155         -d temp_dir=/tmp \\\
1156         -d php_dir=%{-c:%{builddir}/}%{php_pear_dir} \\\
1157         -d bin_dir=%{_bindir} \\\
1158         -d data_dir=%{php_pear_dir}/data \\\
1159         -d test_dir=%{php_pear_dir}/tests \\\
1160         install \\\
1161         --packagingroot=%{builddir} \\\
1162         --offline \\\
1163         --nodeps \\\
1164         %{-f:--force} \\\
1165         %{!-z:%{S:%{-a*}%{!-a:0}}}%{-z:$_P} > .install.log || { c=$?; cat .install.log; exit $c; }; \
1166         %{-c:cp -a %{builddir}/%{builddir}/%{php_pear_dir} %{builddir}/%(dirname %{php_pear_dir}); rm -rf %{builddir}/%{builddir}; } \
1167 %{nil}
1168
1169 # The main macro.
1170 # using this macro will append optional-packages.txt to the nocompressdoc list
1171 # as it's displayed to user after package install. and adding additional gzip
1172 # dep is just waste ;)
1173 %pear_package_setup(a:n:zDc:) \
1174 %define srcdir %{-n*}%{!-n:%{_pearname}-%{version}} \
1175 %define builddir %{_builddir}/%{srcdir} \
1176 %setup -q -c -T %{-D:-D} -n %{srcdir} \
1177 %{-z:tar zxf %{S:0}; %{-a:tar zxf %{S:%{-a*}}}} \
1178 %{-z:_P=package2.xml; [ -f $_P ] || _P=package.xml; _N=%{srcdir}; mv $_P $_N; cd $_N} \
1179 %{-c:%{__pear} -c pearrc config-set php_dir %{builddir}/%{php_pear_dir}; %__pear -c %{builddir}/pearrc channel-add %{-c*}} \
1180 %pear_install \
1181 %{-z:cd ..} \
1182 cat %{-z:$_N/}.install.log | %__pear_install_log \
1183 \
1184 # undos sources \
1185 find -type f -print0 | xargs -0 sed -i -e 's,\\r$,,' \
1186 %{!?_noautocompressdoc:%global _noautocompressdoc %{nil}}%{expand:%%global _noautocompressdoc %{_noautocompressdoc} optional-packages.txt} \
1187 %{!?_noautoprov:%global _noautoprov %{nil}}%{expand:%%global _noautoprov %{_noautoprov} 'pear(tests/.*)'} \
1188 %{nil}
1189
1190 # Copies exctracted PEAR package structure and PEAR registry to buildroot.
1191 # Author: Elan Ruusamäe <glen@pld-linux.org>
1192 %pear_package_install() \
1193 cp -a ./%{php_pear_dir}/{.registry,*} $RPM_BUILD_ROOT%{php_pear_dir} \
1194 find $RPM_BUILD_ROOT%{php_pear_dir} '(' -name '*~' -o -name '*.orig' ')' | xargs -r rm -v \
1195 # help the developer out a little: \
1196 if [ -f _noautoreq ]; then \
1197         echo "AutoReqdep detected:" \
1198         echo "_noautoreq $(cat _noautoreq)" \
1199 fi \
1200 %{nil}
1201
1202
1203 # Register OpenLDAP schema.
1204 # Author: Elan Ruusamäe <glen@pld-linux.org>
1205 #
1206 # Usage:
1207 #   %%openldap_schema_register [-d core,nis] %{schemadir}/horde.schema
1208 #
1209 #  -d specify dependant schemas, separated by comma
1210 #
1211 %openldap_schema_register(d:) \
1212 for schema in %*; do \
1213         if ! grep -q "$schema" /etc/openldap/slapd.conf; then \
1214                 %{__sed} -i -e " \
1215                         /^include.*local.schema/{ \
1216                                 iinclude\\t     $schema\
1217                         } \
1218                 " /etc/openldap/slapd.conf \
1219         fi \
1220 done \
1221 # enable dependant schemas \
1222 if [ "%{-d*}" ]; then \
1223         %{__sed} -i -e ' \
1224         /^#include.*\\(%(echo '%{-d*}' | %{__sed} -e 's/,/\\\\|/g')\\)\\.schema/{ \
1225                 s/^#// \
1226         }' /etc/openldap/slapd.conf \
1227 fi \
1228 %{nil}
1229
1230 # Unregister OpenLDAP schema.
1231 # Author: Elan Ruusamäe <glen@pld-linux.org>
1232 #
1233 # Usage:
1234 #   %%openldap_schema_unregister %{schemadir}/horde.schema
1235 #
1236 %openldap_schema_unregister() \
1237 for schema in %*; do \
1238         if grep -q "$schema" /etc/openldap/slapd.conf; then \
1239                 %{__sed} -i -e " \
1240                 /^include.*$(echo "$schema" | %{__sed} -e 's,/,\\\\/,g')/d \
1241                 # for symmetry it would be nice if we disable enabled schemas in post, \
1242                 # but we really can not do that, it would break something else. \
1243                 " /etc/openldap/slapd.conf \
1244         fi \
1245 done \
1246 %{nil}
1247
1248 %env_update [ ! -x /sbin/env-update ] || /sbin/env-update -u || :
1249
1250
1251 # Build modules for kernels 2.6
1252 # Author: Przemyslaw Iskra <sparky@pld-linux.org>
1253 #
1254 # Usage:
1255 #       %build_kernel_modules -m <modules> -C <directory>
1256 #
1257 #  remember that proper Makefile is still required
1258 # Options:
1259 #  -m <modules> (required) -- comma-separated list of modules to save,
1260 #               without .ko extension, may be placed in subdirectory
1261 #  -C <directory> -- change to <directory> before doing anything
1262 #  -p <arg>, -P <arg> -- arguments passeed to make scripts
1263 #  -c -- do not execute make clean
1264 #  <additional arguments> -- all additional arguments will be passed to
1265 #               make modules
1266 #
1267 # Additional patching supported via here document. Try:
1268 #       %build_kernel_modules -m module <<'EOF'
1269 #       your patch script here
1270 #       EOF
1271 # Don't use it unless patching depends on config options.
1272
1273 # Developer note: don't touch it unless you know how to handle '\'.
1274 # - \ in script expands to nothing
1275 # - \\\ in script expands to \
1276 # - \\\ inside definition expands to nothing
1277 # - \\\\\\\ inside definition expands to \
1278 # - in last line \ has to touch arguments so arguments passing
1279 #   in new lines (using \) will be supported
1280
1281 %build_kernel_modules(p:P:m:C:c)                                                                        \
1282 %{!?-m:%{error:%{0}: Required module name/list missing} exit 1}         \
1283                                                                                                                                         \
1284 %define Opts                                                                                                            \\\\\\\
1285 %if "%{_target_base_arch}" != "%{_arch}"                                                        \\\
1286         %if "%{_arch}" == "x86_64" && "%{_target_base_arch}" == "i386"  \\\
1287         CC="%{kgcc}" ARCH=%{_target_base_arch}                                                  \\\
1288         %else                                                                                                                   \\\
1289         ARCH=%{_target_base_arch} CROSS_COMPILE=%{_target_cpu}-pld-linux- \\\
1290         %endif                                                                                                                  \\\
1291 %else                                                                                                                           \\\
1292         CC="%{kgcc}"                                                                                                    \\\
1293 %endif                                                                                                                          \
1294 %define MakeOpts HOSTCC="%{kgcc}" SYSSRC=%{_kernelsrcdir} SYSOUT=$PWD/o \\\\\\\
1295                 O=$PWD/o %{?with_verbose:V=1} %{Opts}                                           \
1296                                                                                                                                         \
1297 %{?-C:cd %{-C*}}                                                                                                        \
1298 compile() {                                                                                                                     \
1299         local L="<" PATCH_SH;                                                                                   \
1300         [[ '%{*}' != *$L$L* ]] || PATCH_SH="set -x -e;$(cat)"                   \
1301         set -e -x                                                                                                               \
1302         local cfgs='%{?with_dist_kernel:%{?with_smp: smp}%{?with_up: up}}%{!?with_dist_kernel: nondist}' \
1303                                                                                                                                         \
1304 for cfg in ${cfgs:-dist}; do                                        \
1305         [ -r "%{_kernelsrcdir}/config-$cfg" ] || exit 1                                 \
1306                                                                                                                                         \
1307         rm -rf o                                                                                                                \
1308         install -d o/include/linux                                                                              \
1309         ln -sf %{_kernelsrcdir}/config-$cfg o/.config                                   \
1310         ln -sf %{_kernelsrcdir}/Module.symvers-$cfg o/Module.symvers    \
1311         ln -sf %{_kernelsrcdir}/include/linux/autoconf-$cfg.h o/include/linux/autoconf.h \
1312                                                                                                                                         \
1313         set +x                                                                                                                  \
1314         [ -z "$PATCH_SH" ] || echo "$PATCH_SH" | %__spec_build_shell    \
1315         set -x                                                                                                                  \
1316                                                                                                                                         \
1317         %if %{with dist_kernel}                                                                                 \
1318                 %{__make} -j1 -C %{_kernelsrcdir} prepare scripts                       \\\
1319                         %{-p*} %{-P*}                                                                                   \\\
1320                         %{MakeOpts}                                                                                             \
1321         %else                                                                                                                   \
1322                 install -d o/include/config                                                                     \
1323                 touch o/include/config/MARKER                                                           \
1324                 ln -sf %{_kernelsrcdir}/scripts o/scripts                                       \
1325         %endif                                                                                                                  \
1326                                                                                                                                         \
1327         %{!?-c:%{__make} -C %{_kernelsrcdir} clean                                              \\\
1328                 RCS_FIND_IGNORE="-name '*.ko' -o"                                                       \\\
1329                 ${1+"$@"}                                                                                                       \\\
1330                 M=$PWD %{MakeOpts}}                                                                                     \
1331                                                                                                                                         \
1332         %{__make} -C %{_kernelsrcdir} modules                                                   \\\
1333                 ${1+"$@"}                                                                                                       \\\
1334                 M=$PWD %{MakeOpts}                                                                                      \
1335                                                                                                                                         \
1336         for MODULE in {%{-m*},}; do                                                                             \
1337                 [ -z "${MODULE}" ] || mv ${MODULE}{,-$cfg}.ko                           \
1338         done                                                                                                                    \
1339 done                                                                                                                            \
1340 %{?-C:cd -}                                                                                                                     \
1341 }                                                                                                                                       \
1342 compile %{*}\
1343 %{nil}
1344
1345
1346 # Install kernel modules built by %build_kernel_modules
1347 # Author: Przemyslaw Iskra <sparky@pld-linux.org>
1348 #
1349 # Usage:
1350 #       %install_kernel_modules -m <modules> -d <directory>
1351 #
1352 # Options:
1353 #  -m <modules> (required) -- comma-separated list of modules to install,
1354 #               without .ko extension, may be placed in subdirectory
1355 #  -d <directory> (required) -- in what subdirectory modules should be
1356 #               installed (eg. misc, kernel/drivers/net)
1357 #  -s <suffix> -- suffix to use when installing modules, useful when module
1358 #               with same name exists in kernel already
1359 #  -n <file> -- name of modprobe config file to use (without .conf extension)
1360 #               for defining aliases, only useful with -s
1361
1362 %install_kernel_modules(m:d:s:n:)                                                                       \
1363 %{!?-m:%{error:%{0}: Required module name (-m) missing}exit 1}          \
1364 %{!?-d:%{error:%{0}: Required module directory missing}exit 1}          \
1365 %{?-n:%{!?-s:%{error:%{0}: Modprobe .conf file requires module suffix}exit 1}} \
1366                                                                                                                                         \
1367 %define KernelD $RPM_BUILD_ROOT/lib/modules/%{_kernel_ver}                      \
1368 %define ModprobeD $RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d/%{_kernel_ver} \
1369                                                                                                                                         \
1370 local cfgs='%{?with_dist_kernel:%{?with_smp: smp}%{?with_up: up}}%{!?with_dist_kernel: nondist}' \
1371                                                                                                                                         \
1372 for MODULE in {%{-m*},}; do                                                                                     \
1373         [ -n "${MODULE}" ] || continue                                                                  \
1374         for cfg in ${cfgs:-dist}; do                                    \
1375                 [ "$cfg" = smp ] && suf=smp || suf=                                                     \
1376                 MNAME=${MODULE##*/}                                                                                     \
1377                 install -D ${MODULE}-$cfg.ko                                                            \\\
1378                         %{KernelD}$suf/%{-d*}/${MNAME}%{-s:-%{-s*}}.ko                  \
1379                 %{?-s:install -d %{ModprobeD}$suf                                                       \
1380                         echo "alias ${MNAME} ${MNAME}-%{-s*}"                                   \\\
1381                         >> %{ModprobeD}$suf/%{-n*}.conf}                                                \
1382         done                                                                                                                    \
1383 done                                                                                                                            \
1384 %{nil}
1385
1386 # patchset macros
1387 # Author: Elan Ruusamäe <glen@pld-linux.org>
1388 #
1389 # Usage:
1390 #   %patchset_source -f <seq(1) format> <start> [<end>]
1391 #   %patchset_patch <start> [<end>]
1392 #
1393 # If <end> is omited, it is assumed to be <start>.
1394 #
1395 # For example in preamble:
1396 #  %patchset_source -f ftp://ftp.vim.org/pub/editors/vim/patches/7.0/7.0.%03g 33 44
1397 # and in %prep:
1398 #  %patchset_patch 33 44
1399
1400 # generate SourceX urls from range START STOP
1401 # Format can be SINGLE format char of %e, %f, %g, see seq(1)
1402 # The sources start from 10000
1403 %patchset_source(f:b:) %(
1404         base=%{-b*}%{!-b*:10000};
1405         start=$(expr $base + %1);
1406         end=$(expr $base + %{?2}%{!?2:%{1}});
1407         # we need to call seq twice as it doesn't allow two formats
1408         seq -f 'Patch%g:' $start $end > %{tmpdir}/__ps1;
1409         seq -f '%{-f*}' %1 %{?2}%{!?2:%{1}} > %{tmpdir}/__ps2;
1410         paste %{tmpdir}/__ps{1,2};
1411         rm -f %{tmpdir}/__ps{1,2};
1412 ) \
1413 %{nil}
1414
1415 # apply sources from %patchset_source
1416 # -p specify -pX for %patch line
1417 # -b base offset: defaults to 10000
1418 %patchset_patch(f:p:b:) %(
1419         base=%{-b*}%{!-b*:10000};
1420         start=$(expr $base + %1);
1421         end=$(expr $base + %{?2}%{!?2:%{1}});
1422         echo ": patchset_patch %1%{?2: to %2}";
1423         seq -f 'patch%g %{-p*:-p%{-p*}}' $start $end | sed -e s,^,%%,;
1424 ) \
1425 %{nil}
1426
1427 # browser plugins v2
1428 # Author: Elan Ruusamäe <glen@pld-linux.org>
1429 #
1430 # Usage:
1431 #       %browser_plugins_add_browser <name> -p <plugindir>
1432 #
1433 #  <name> (required) -- name of the browser. usually %{name}.
1434 #  -p <plugindir> (required) -- in what directory browser searches for its plugins.
1435 #  -b -- default blacklists
1436 #  -a <arch> override arch
1437 #
1438 # Example:
1439 #   %browser_plugins_add_browser %{name} -p %{_firefoxdir}/plugins
1440
1441 %_browserpluginsconfdir         /etc/browser-plugins
1442 %_browserpluginsdir                     %{_libdir}/browser-plugins
1443 %update_browser_plugins         /usr/sbin/update-browser-plugins || :
1444
1445 %browser_plugins_add_browser(p:b:a:) \
1446         browser=%1.%{!-a:%{_target_base_arch}}%{-a*} \
1447         install -d $RPM_BUILD_ROOT%{_browserpluginsconfdir}/{blacklist,browsers}.d \
1448         ln -s %{-p*} $RPM_BUILD_ROOT%{_browserpluginsconfdir}/browsers.d/$browser \
1449         blacklist_file=$RPM_BUILD_ROOT%{_browserpluginsconfdir}/blacklist.d/$browser.blacklist \
1450         echo '# This file format is shell globs at base dir of plugindir' > $blacklist_file \
1451         %{-b:cat >> $blacklist_file %{-b*}} \
1452 %{nil}
1453
1454 # Helper for LUA.
1455 # split string separated by space into quoted list
1456 #
1457 # Author: Elan Ruusamäe <glen@pld-linux.org>
1458 #
1459 # %__lua_split /bin/sh /bin/pdksh -> "/bin/sh", "/bin/pdksh"
1460 %__lua_split() %(echo "%*" | awk '{for (i=1;i<=NF;i++) printf("\\"%%s\\"%%s", $i, i == NF ? "" : ", ")}')
1461
1462 # adjust /etc/shells by adding and removing shells from there
1463 # Author: Elan Ruusamäe <glen@pld-linux.org>
1464 #
1465 # Usage:
1466 #   %post       -p <lua>
1467 #   %lua_add_etc_shells /bin/sh /bin/pdksh
1468 #
1469 #   %preun      -p <lua>
1470 #   if arg[2] == 0 then
1471 #       %lua_remove_etc_shells /bin/bash /bin/rbash
1472 #   end
1473 #
1474 # Requirements:
1475 # BuildRequires:        rpmbuild(macros) >= 1.462
1476 #
1477
1478 %lua_add_etc_shells() \
1479 t = {}\
1480 f = io.open("/etc/shells", "r")\
1481 if f then\
1482         for l in f:lines() do t[l]=l; end\
1483         f:close()\
1484 end\
1485 for _, s in ipairs({%{expand:%%__lua_split %*}}) do\
1486         if not t[s] then\
1487                 print("Adding "..s.." to /etc/shells")\
1488                 f = io.open("/etc/shells", "a"); f:write(s.."\\n"); f:close()\
1489         end\
1490 end\
1491 %{nil}
1492
1493 %lua_remove_etc_shells() \
1494 t = {}\
1495 f = io.open("/etc/shells", "r")\
1496 if f then\
1497         for l in f:lines() do t[l]=l; end\
1498         f:close()\
1499 end\
1500 for _, l in pairs({%{expand:%%__lua_split %*}}) do\
1501         print("Removing "..l.." from /etc/shells")\
1502         t[l] = nil\
1503 end\
1504 s=""\
1505 for _, l in pairs(t) do\
1506         s=s..l.."\\n"\
1507 end\
1508 io.open("/etc/shells", "w"):write(s)\
1509 %{nil}
1510
1511 # Backwards compat. Use of %lua_ prefixed macros is preferred as these are cleaner to read.
1512 #
1513 # Author: Elan Ruusamäe <glen@pld-linux.org>
1514 #
1515 # Usage:
1516 #   %post       -p %add_etc_shells -p /bin/sh /bin/pdksh
1517 #   %preun      -p %remove_etc_shells -p /bin/sh /bin/pdksh
1518 #
1519 #  -p (optional) -- specifies that result is embeded %post script (prepends <lua> as first line)
1520 #
1521 # Requirements:
1522 # BuildRequires:        rpmbuild(macros) >= 1.429
1523 #
1524 %add_etc_shells(p) %{-p:<lua>}\
1525 %{expand:%%lua_add_etc_shells %*}\
1526 %{nil}
1527
1528 %remove_etc_shells(p) %{-p:<lua>}\
1529 %{-p:if arg[2] == 0 then}\
1530 %{expand:%%lua_remove_etc_shells %*}\
1531 %{-p:end} \
1532 %{nil}
1533
1534 # Check syntax for Python files
1535 #
1536 # Author: Elan Ruusamäe <glen@pld-linux.org>
1537 # Author: Arkadiusz Miśkiewicz <arekm@pld-linux.org>
1538 #
1539 # Usage:
1540 #   %py_lint src
1541 #
1542 # Requirements:
1543 # BuildRequires:        python
1544 # BuildRequires:        rpmbuild(macros) >= 1.469
1545
1546 %py_lint() \
1547 __py_lint() { \
1548 find "$@" -type f -name '*.py' | python -c ' \
1549 import sys \
1550 import compiler \
1551 \
1552 err = 0\
1553 for f in sys.stdin: \
1554         fd = open(f.strip()) \
1555         c = fd.read() \
1556         fd.close() \
1557         try: \
1558                 compiler.parse(c) \
1559         except SyntaxError, e: \
1560                 print "py_lint: %s: %s" % (f.strip(), e) \
1561                 err = err + 1\
1562 \
1563 if err: \
1564         print >> sys.stderr, "\\npy_lint: ERROR: Syntax errors in %d files.\\n" % err \
1565         sys.exit(1) \
1566 else: \
1567         print >> sys.stderr,  "py_lint: Found no syntax errors." \
1568 ' \
1569 }; __py_lint %* \
1570 %{nil}
1571
1572 # vim:ts=4 sw=4 noet syn=spec
This page took 0.203001 seconds and 4 git commands to generate.