]> git.pld-linux.org Git - packages/rpm.git/blob - rpm-macros.patch
- compress debuginfo sections with zlib (reduce /usr/lib/debug size).
[packages/rpm.git] / rpm-macros.patch
1 --- rpm-4.4.9/macros.in 2008-04-04 23:15:28.121279270 +0300
2 +++ rpm-4.5/macros.in   2008-09-03 16:47:30.861766714 +0300
3 @@ -109,6 +109,10 @@
4  %__automake            automake
5  %__autoconf            autoconf
6  
7 +# compiler used to build kernel and kernel modules
8 +%kgcc          %{__cc}
9 +%kgcc_package  gcc
10 +
11  #==============================================================================
12  # Conditional build stuff.
13  
14 @@ -206,7 +210,7 @@
15  %endif\
16  %{nil}
17  
18 -%_defaultdocdir                %{_usr}/doc
19 +%_defaultdocdir                %{_usr}/share/doc
20  
21  #      The path to the pgp executable (legacy, use %{__pgp} instead).
22  %_pgpbin               %{__pgp}
23 @@ -233,12 +237,12 @@
24  #      The directory where newly built source packages will be written.
25  %_srcrpmdir            %{_topdir}/SRPMS
26  
27 -#      Directory where temporaray files can be created.
28 -%_tmppath              %{_var}/tmp
29 +#      Directory where temporary files can be created.
30 +%_tmppath              %(echo "${TMPDIR:-/tmp}")
31  %tmpdir                        %{_tmppath}
32  
33  #      Path to top of build area.
34 -%_topdir               %{_usrsrc}/rpm
35 +%_topdir               %(echo $HOME)/rpm
36  
37  #==============================================================================
38  # ---- Optional rpmrc macros.
39 @@ -248,7 +252,7 @@
40  #      Configurable build root path, same as BuildRoot: in a specfile.
41  #      (Note: the configured macro value will override the spec file value).
42  #
43 -%buildroot             %{_tmppath}/%{name}-root
44 +%buildroot             %{_tmppath}/%{name}-%{version}-root-%(id -u -n)
45  
46  #      The sub-directory (relative to %{_builddir}) where sources are compiled.
47  #      This macro is set after processing %setup, either explicitly from the
48 @@ -347,8 +351,8 @@
49  #              "w9.bzdio"      bzip2 level 9.
50  #              "w9.lzdio"      lzma level 9.
51  #
52 -#%_source_payload      w9.gzdio
53 -#%_binary_payload      w9.gzdio
54 +%_source_payload       w9.gzdio
55 +%_binary_payload       w9.lzdio
56  
57  #      Archive formats to use for source/binary package payloads.
58  #              "cpio"          cpio archive (default)
59 @@ -508,7 +512,7 @@
60  
61  #
62  # Path to magic file used for file classification.
63 -%_rpmfc_magic_path     %{_rpmhome}/magic
64 +%_rpmfc_magic_path     /usr/share/file/magic
65  
66  #==============================================================================
67  # ---- Database configuration macros.
68 @@ -954,7 +954,7 @@
69  
70  %___build_shell                %{?_buildshell:%{_buildshell}}%{!?_buildshell:/bin/sh}
71  %___build_args         -e
72 -%___build_cmd          %{?_sudo:%{_sudo} }%{?_remsh:%{_remsh} %{_remhost} }%{?_remsudo:%{_remsudo} }%{?_remchroot:%{_remchroot} %{_remroot} }%{___build_shell} %{___build_args}
73 +%___build_cmd          %{?_sudo:%{_sudo} }%{?_remsh:%{_remsh} %{_remhost} }%{?_remsudo:%{_remsudo} }%{?_remchroot:%{_remchroot} %{_remroot} }%{?_clean_env:%{_clean_env} }%{___build_shell} %{___build_args}
74  %___build_pre  \
75    RPM_SOURCE_DIR=\"%{u2p:%{_sourcedir}}\"\
76    RPM_BUILD_DIR=\"%{u2p:%{_builddir}}\"\
77 @@ -991,9 +995,12 @@
78    %{?_javaclasspath:CLASSPATH=\"%{_javaclasspath}\"\
79    export CLASSPATH}\
80    unset PERL_MM_OPT || :\
81 -  LANG=C\
82 -  export LANG\
83 -  unset DISPLAY || :\
84 +  export LC_ALL=C\
85 +  export LANG=C\
86 +  unset LINGUAS ||:\
87 +  unset LANGUAGE ||:\
88 +  unset LC_MESSAGES ||:\
89 +  unset DISPLAY ||:\
90    \
91    %{verbose:set -x}%{!verbose:exec > /dev/null}\
92    umask 022\
93 @@ -1127,17 +1134,17 @@
94  %_exec_prefix          %{_prefix}
95  %_bindir               %{_exec_prefix}/bin
96  %_sbindir              %{_exec_prefix}/sbin
97 -%_libexecdir           %{_exec_prefix}/libexec
98 +%_libexecdir           %{_exec_prefix}/lib
99  %_datadir              %{_prefix}/share
100 -%_sysconfdir           %{_prefix}/etc
101 -%_sharedstatedir       %{_prefix}/com
102 -%_localstatedir                %{_prefix}/var
103 +%_sysconfdir           /etc
104 +%_sharedstatedir       /var/lib
105 +%_localstatedir                /var
106  %_lib                  lib
107  %_libdir               %{_exec_prefix}/%{_lib}
108  %_includedir           %{_prefix}/include
109  %_oldincludedir                /usr/include
110 -%_infodir              %{_prefix}/info
111 -%_mandir               %{_prefix}/man
112 +%_infodir              %{_prefix}/share/info
113 +%_mandir               %{_prefix}/share/man
114  %_localedir            %{_datadir}/locale
115  
116  #==============================================================================
117 @@ -1429,6 +1436,22 @@
118  #%__executable_provides        %{_usrlibrpm}/executabledeps.sh --provides
119  #%__executable_requires        %{_usrlibrpm}/executabledeps.sh --requires
120 -%__scriptlet_requires  /bin/bash --rpm-requires
121 +#%__scriptlet_requires /bin/bash --rpm-requires
122 +
123 +# PLD rpm macros
124 +%_enable_debug_packages 1
125 +
126 +#-----------------------------------------------------------------
127 +# CFLAGS and LDFLAGS used to build
128 +
129 +%debuginfocflags       %{expand:%%define __dic_%{?_enable_debug_packages} 1}%{?__dic_1: -gdwarf-3 -g2}%{expand:%%undefine __dic_%{?_enable_debug_packages}}
130 +
131 +%debugcflags   -O0 -g -Wall
132  
133 +# Warning: those macros are overwritten by macros.build,
134 +#          left here for compatibility
135 +%rpmcflags     %{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}
136 +%rpmcxxflags   %{rpmcflags}
137 +%rpmldflags    %{!?no_build_with_as_needed:-Wl,--as-needed}
138 +  
139  # \endverbatim
140  #*/
141 @@ -1480,7 +1504,7 @@
142  #
143  # Note: Used if _use_internal_dependency_generator is non-zero. The
144  # helper is also used by %{_rpmhome}/rpmdeps --provides
145 -#%__mimetype_provides %{_rpmhome}/mimetypedeps.sh --provides
146 +%__mimetype_provides %{_rpmhome}/mimetypedeps.sh --provides
147  
148  # \endverbatim
149  #*/
150 --- rpm-4.5/configure.ac~       2008-06-10 02:03:07.000000000 +0300
151 +++ rpm-4.5/configure.ac        2008-06-10 02:04:18.395836371 +0300
152 @@ -1479,7 +1479,7 @@
153         [Full path to rpm system configuration directory (usually /etc/rpm)])
154  AC_SUBST(SYSCONFIGDIR)
155  
156 -MACROFILES="${USRLIBRPM}/${VERSION}/macros:${USRLIBRPM}/%{_target}/macros:${SYSCONFIGDIR}/%{_host_vendor}/macros:${SYSCONFIGDIR}/%{_host_vendor}/%{_target}/macros:${SYSCONFIGDIR}/macros.*:${SYSCONFIGDIR}/macros.d/*.macros:${SYSCONFIGDIR}/macros:${SYSCONFIGDIR}/%{_target}/macros:~/.rpmmacros"
157 +MACROFILES="${USRLIBRPM}/macros:${USRLIBRPM}/macros.build:${USRLIBRPM}/%{_target}/macros:${SYSCONFIGDIR}/macros.*:${SYSCONFIGDIR}/macros:${SYSCONFIGDIR}/%{_target}/macros:~/etc/.rpmmacros:~/.rpmmacros"
158  AC_DEFINE_UNQUOTED(MACROFILES, "$MACROFILES",
159         [Colon separated paths of macro files to read.])
160  AC_SUBST(MACROFILES)
This page took 0.079412 seconds and 3 git commands to generate.