diff options
author | Paul de Vrieze <pauldv@gentoo.org> | 2007-02-27 21:31:50 +0000 |
---|---|---|
committer | Paul de Vrieze <pauldv@gentoo.org> | 2007-02-27 21:31:50 +0000 |
commit | d192b0b833b3448ee75603b1e5e58e514dc61fc1 (patch) | |
tree | 289d6fc867648811a8818e1091a6952b549d8f57 /dev-util/subversion | |
parent | Version bump. (diff) | |
download | gentoo-2-d192b0b833b3448ee75603b1e5e58e514dc61fc1.tar.gz gentoo-2-d192b0b833b3448ee75603b1e5e58e514dc61fc1.tar.bz2 gentoo-2-d192b0b833b3448ee75603b1e5e58e514dc61fc1.zip |
Remove CFLAG munging code from configure
(Portage version: 2.1.2-r9)
Diffstat (limited to 'dev-util/subversion')
-rw-r--r-- | dev-util/subversion/ChangeLog | 6 | ||||
-rw-r--r-- | dev-util/subversion/files/subversion-1.4.3-debug-config.patch | 29 | ||||
-rw-r--r-- | dev-util/subversion/subversion-1.4.3.ebuild | 3 |
3 files changed, 36 insertions, 2 deletions
diff --git a/dev-util/subversion/ChangeLog b/dev-util/subversion/ChangeLog index 7bd21e1fc2e9..61a560fa0f35 100644 --- a/dev-util/subversion/ChangeLog +++ b/dev-util/subversion/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-util/subversion # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/ChangeLog,v 1.245 2007/01/28 19:30:13 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/ChangeLog,v 1.246 2007/02/27 21:31:50 pauldv Exp $ + + 27 Feb 2007; Paul de Vrieze <pauldv@gentoo.org> + +files/subversion-1.4.3-debug-config.patch, subversion-1.4.3.ebuild: + Remove CFLAG munging from the configure script. 28 Jan 2007; Luca Longinotti <chtekk@gentoo.org> subversion-1.2.3-r2.ebuild, subversion-1.2.3-r3.ebuild, diff --git a/dev-util/subversion/files/subversion-1.4.3-debug-config.patch b/dev-util/subversion/files/subversion-1.4.3-debug-config.patch new file mode 100644 index 000000000000..fe6abafec101 --- /dev/null +++ b/dev-util/subversion/files/subversion-1.4.3-debug-config.patch @@ -0,0 +1,29 @@ +--- configure.in.orig 2007-02-27 21:58:01.000000000 +0100 ++++ configure.in 2007-02-27 22:00:07.000000000 +0100 +@@ -433,7 +433,7 @@ + + AC_ARG_ENABLE(debug, + AC_HELP_STRING([--enable-debug], +- [Turn on debugging and compile time warnings]), ++ [(gentoo) disabled, just observe CFLAGS]), + [ + if test "$enableval" = "yes" ; then + enable_debugging="yes" +@@ -441,17 +441,6 @@ + enable_debugging="no" + fi + ]) +-if test "$enable_debugging" = "yes" ; then +- dnl At the moment, we don't want optimization, because we're +- dnl debugging. +- dnl ### actually, debugging should be fine with the default -O2 +- CFLAGS=["`echo $CFLAGS' ' | sed -e 's/-O[^ ]* //g'`"] +-else +- if test "$enable_debugging" = "no" ; then +- CFLAGS=["`echo $CFLAGS' ' | sed -e 's/-g[0-9] //g' | sed -e 's/-g//g'`"] +- fi +-fi +- + + AC_ARG_WITH(editor, + AC_HELP_STRING([--with-editor=PATH], diff --git a/dev-util/subversion/subversion-1.4.3.ebuild b/dev-util/subversion/subversion-1.4.3.ebuild index d2d0d0a774c4..67ad3ee07529 100644 --- a/dev-util/subversion/subversion-1.4.3.ebuild +++ b/dev-util/subversion/subversion-1.4.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/subversion-1.4.3.ebuild,v 1.2 2007/02/24 16:10:06 pauldv Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/subversion-1.4.3.ebuild,v 1.3 2007/02/27 21:31:50 pauldv Exp $ inherit elisp-common libtool python eutils bash-completion flag-o-matic depend.apache perl-module java-pkg-opt-2 @@ -64,6 +64,7 @@ src_unpack() { epatch ${FILESDIR}/subversion-hotbackup-config.patch epatch ${FILESDIR}/subversion-1.3.1-neon-config.patch epatch ${FILESDIR}/subversion-apr_cppflags.patch + epatch ${FILESDIR}/subversion-1.4.3-debug-config.patch # rapidsvn developers work with 1.3.2 export WANT_AUTOCONF=2.5 |