]> git.pld-linux.org Git - packages/rpm.git/blob - rpm-macros.patch
- fix for erase-before-install problem; rel 61
[packages/rpm.git] / rpm-macros.patch
1 --- rpm-4.4.9/macros.in 2008-01-25 02:16:46.248708080 +0200
2 +++ rpm-4.4.9/macros.in 2008-04-04 23:15:28.121279270 +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 @@ -498,7 +502,7 @@
60  
61  #
62  # Path to magic file used for file classification.
63 -%_rpmfc_magic_path     %{_usr}/lib/rpm/magic
64 +%_rpmfc_magic_path     /usr/share/file/magic
65  
66  #==============================================================================
67  # ---- Database configuration macros.
68 @@ -991,9 +995,12 @@
69    %{?_javaclasspath:CLASSPATH=\"%{_javaclasspath}\"\
70    export CLASSPATH}\
71    unset PERL_MM_OPT || :\
72 -  LANG=C\
73 -  export LANG\
74 -  unset DISPLAY || :\
75 +  export LC_ALL=C\
76 +  export LANG=C\
77 +  unset LINGUAS ||:\
78 +  unset LANGUAGE ||:\
79 +  unset LC_MESSAGES ||:\
80 +  unset DISPLAY ||:\
81    \
82    %{verbose:set -x}%{!verbose:exec > /dev/null}\
83    umask 022\
84 @@ -1127,17 +1134,17 @@
85  %_exec_prefix          %{_prefix}
86  %_bindir               %{_exec_prefix}/bin
87  %_sbindir              %{_exec_prefix}/sbin
88 -%_libexecdir           %{_exec_prefix}/libexec
89 +%_libexecdir           %{_exec_prefix}/lib
90  %_datadir              %{_prefix}/share
91 -%_sysconfdir           %{_prefix}/etc
92 -%_sharedstatedir       %{_prefix}/com
93 -%_localstatedir                %{_prefix}/var
94 +%_sysconfdir           /etc
95 +%_sharedstatedir       /var/lib
96 +%_localstatedir                /var
97  %_lib                  lib
98  %_libdir               %{_exec_prefix}/%{_lib}
99  %_includedir           %{_prefix}/include
100  %_oldincludedir                /usr/include
101 -%_infodir              %{_prefix}/info
102 -%_mandir               %{_prefix}/man
103 +%_infodir              %{_prefix}/share/info
104 +%_mandir               %{_prefix}/share/man
105  %_localedir            %{_datadir}/locale
106  
107  #==============================================================================
108 @@ -1429,6 +1436,23 @@
109  #%__executable_provides        %{_usrlibrpm}/executabledeps.sh --provides
110  #%__executable_requires        %{_usrlibrpm}/executabledeps.sh --requires
111 -%__scriptlet_requires  /bin/bash --rpm-requires
112 +#%__scriptlet_requires /bin/bash --rpm-requires
113 +
114 +# PLD rpm macros
115 +%_enable_debug_packages 1
116 +
117 +#-----------------------------------------------------------------
118 +# CFLAGS and LDFLAGS used to build
119 +
120 +%debuginfocflags       %{expand:%%define __dic_%{?_enable_debug_packages} 1}%{?__dic_1: -gdwarf-2 -g2}%{expand:%%undefine __dic_%{?_enable_debug_packages}}
121 +# -feliminate-dwarf2-dups disabled until PR ld/3290 is fixed.
122 +
123 +%debugcflags   -O0 -g -Wall
124  
125 +# Warning: those macros are overwritten by macros.build,
126 +#          left here for compatibility
127 +%rpmcflags     %{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}
128 +%rpmcxxflags   %{rpmcflags}
129 +%rpmldflags    %{!?no_build_with_as_needed:-Wl,--as-needed}
130 +  
131  # \endverbatim
132  #*/
133 --- rpm-4.4.8/configure.ac.orig 2007-04-08 20:24:47.210783702 +0200
134 +++ rpm-4.4.8/configure.ac      2007-04-08 20:32:18.216485052 +0200
135 @@ -1462,7 +1462,7 @@
136         [Full path to rpm system configuration directory (usually /etc/rpm)])
137  AC_SUBST(SYSCONFIGDIR)
138  
139 -MACROFILES="${USRLIBRPM}/macros:${USRLIBRPM}/%{_target}/macros:${SYSCONFIGDIR}/macros.*:${SYSCONFIGDIR}/macros:${SYSCONFIGDIR}/%{_target}/macros:~/.rpmmacros"
140 +MACROFILES="${USRLIBRPM}/macros:${USRLIBRPM}/macros.build:${USRLIBRPM}/%{_target}/macros:${SYSCONFIGDIR}/macros.*:${SYSCONFIGDIR}/macros:${SYSCONFIGDIR}/%{_target}/macros:~/etc/.rpmmacros:~/.rpmmacros"
141  AC_DEFINE_UNQUOTED(MACROFILES, "$MACROFILES",
142         [Colon separated paths of macro files to read.])
143  AC_SUBST(MACROFILES)
This page took 0.045014 seconds and 3 git commands to generate.