]> git.pld-linux.org Git - packages/rpm-build-macros.git/blobdiff - rpm.macros
- dependency exceptions macros added
[packages/rpm-build-macros.git] / rpm.macros
index 2788d79398142f13f8b6a79e5659c1d04a3827c9..c3ac1e4188b2af384f3f5a89568b00a7d6efc1ed 100644 (file)
@@ -1,10 +1,10 @@
 #-----------------------------------------------------------------
 %configure { \
  if [ -n "$LINGUAS" ]; then unset LINGUAS; fi; \
- LDFLAGS="${LDFLAGS}%{!?debug: -s}" ; export LDFLAGS ; \
- CFLAGS="${CFLAGS:-%optflags}%{?debug: -g -O}" ; export CFLAGS ; \
- CXXFLAGS="${CXXFLAGS:-%optflags}%{?debug: -g -O}" ; export CXXFLAGS ; \
- FFLAGS="${FFLAGS:-%optflags}%{?debug: -g -O}" ; export FFLAGS ; \
+ LDFLAGS="${LDFLAGS:-%{!?debug: -s}}" ; export LDFLAGS ; \
+ CFLAGS="${CFLAGS:-%{!?debug:%optflags}%{?debug: -g -O0}}" ; export CFLAGS ; \
+ CXXFLAGS="${CXXFLAGS:-%{!?debug:%optflags}%{?debug: -g -O0}}" ; export CXXFLAGS ; \
+ FFLAGS="${FFLAGS:-%{!?debug:%optflags}%{?debug: -g -O0}}" ; export FFLAGS ; \
  ./configure %{_target_platform} \
        --prefix=%{_prefix} \
        --exec-prefix=%{_exec_prefix} \
@@ -78,9 +78,12 @@ done \
 # Location of autoconf macros
 %_aclocaldir   %(aclocal --print-ac-dir)
 
-# Fixed location of top applink dir
+# Location of top applink dir
 %_applnkdir      /usr/X11R6/share/applnk
 
+# Location pixmaps for applnk/desktop files
+%_pixmapsdir   /usr/X11R6/share/pixmaps
+
 # Current date
 %date          %(LC_ALL="C" date +"%a %b %d %Y")
 
@@ -90,14 +93,6 @@ done \
 # Example files, programs, scripts...
 %_examplesdir  /usr/src/examples
 
-# Find-requires and directories excluded from auto-req
-%_noautoreqdir         %{_defaultdocdir} %{_examplesdir}
-%_noautoreqdep         %{nil}
-#%__find_requires_pre  /usr/lib/rpm/find-requires-pre %{_noautoreqdir}
-#%__find_requires_core /usr/lib/rpm/find-requires
-#%__find_requires_post /usr/lib/rpm/find-requires-post
-#%__find_requires      %{__find_requires_pre} | %{__find_requires_core} | %{__find_requires_post}
-
 # If non-empty "debug" macro defined, add "dbg" suffix to release number
 %_rpmfilename          %%{NAME}-%%{VERSION}-%%{RELEASE}%{?debug:dbg}.%%{ARCH}.rpm
 
@@ -106,10 +101,10 @@ done \
 #
 # Requires: xargs, find
 #
-%install_post_compress_docs    1
+#%no_install_post_compress_docs        1
 %__spec_install_post_compress_docs { \
 echo "Compress man and info pages."; \
-%{?nstall_post_compress_docs: \
+%{!?no_install_post_compress_docs: \
        %{?verbose:set -x;} \
        for i in /usr/share/man /usr/X11R6/man /usr/share/info; do \
                if [ -d "$RPM_BUILD_ROOT$i" ]; then \
@@ -118,20 +113,19 @@ echo "Compress man and info pages."; \
                        find "$RPM_BUILD_ROOT$i" -type f -print | xargs -r %{__gzip} -9nf; \
                fi; \
        done; \
-} \
-}
+} }
 
 #-----------------------------------------------------------------
-# find and gzip all files in %{_mandir} and %{infodir}
+# Strip executable binaries and shared object files
 #
 # Requires: find, awk, strip, cut, xargs
 #
-%install_post_strip    1
+#%no_install_post_strip        1
 %__spec_install_post_strip {%{!?debug: \
-%{?install_post_strip: \
+%{!?no_install_post_strip: \
        %{?verbose:set -x;} \
        echo "Strip executable binaries and shared object files."; \
-       filelist=`find $RPM_BUILD_ROOT -type f`; \
+       filelist=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*"`; \
        elfexelist=`echo $filelist | xargs -r file | \
                awk '/ELF.*executable/ {print $1}' | cut -d: -f1`; \
        elfsharedlist=`echo $filelist | xargs -r file | \
@@ -142,8 +136,7 @@ echo "Compress man and info pages."; \
        if [ -n "$elfsharedlist" ]; then \
                strip --strip-unneeded --remove-section=.note  --remove-section=.comment $elfsharedlist; \
        fi; } \
-} \
-}
+} }
 
 #-----------------------------------------------------------------
 # post %install sequence:
@@ -152,8 +145,37 @@ echo "Compress man and info pages."; \
 #
 %__spec_install_post { \
 %{__spec_install_post_strip} \
-%{__spec_install_post_compress_docs} \
-}
+%{__spec_install_post_compress_docs} }
 
 %_source_payload        w9.gzdio
 %_binary_payload        w9.bzdio
+
+###################################################################
+# Requires/Provides automation
+# exceptions system by Jacek Konieczny <jajcus@pld.org.pl>
+%__spec_install_pre    %{___build_pre}\
+rm -f %{_builddir}/__rpm_*\
+%{nil}
+
+%__spec_install_post \
+%{?_noautoreqfiles:for f in %{_noautoreqfiles} ; do echo %{?buildroot:%{buildroot}}$f >> %{_builddir}/__rpm_noautoreqfiles ; done }\
+%{?_noautoreq:for f in %{_noautoreq} ; do echo "$f" >> %{_builddir}/__rpm_noautoreq ; done }\
+%{?_noautoreqdep:for f in %{_noautoreqdep} ; do echo "$f" >> %{_builddir}/__rpm_noautoreqdep ; done }\
+%{?_noautoprovfiles:for f in %{_noautoprovfiles} ; do echo %{?buildroot:%{buildroot}}$f >> %{_builddir}/__rpm_noautoprovfiles ; done }\
+%{?_noautoprov:for f in %{_noautoprov} ; do echo "$f" >> %{_builddir}/__rpm_noautoprov ; done }\
+%{__arch_install_post}\
+%{__os_install_post}\
+%{nil}
+
+%__spec_clean_pre      %{___build_pre}\
+rm -f %{_builddir}/__rpm_*\
+%{nil}
+
+
+#%_noautoreqfiles      "%{_defaultdocdir}.*" "%{_examplesdir}.*"
+#%_noautoreq           %{nil}
+#%_noautoreqdep                %{nil}
+#%_noautoprovfiles     %{nil}
+#%_noautoprov          %{nil}
+
+
This page took 0.033182 seconds and 4 git commands to generate.