diff options
author | Sebastian Pipping <sping@gentoo.org> | 2011-02-28 20:21:39 +0000 |
---|---|---|
committer | Sebastian Pipping <sping@gentoo.org> | 2011-02-28 20:21:39 +0000 |
commit | 7af313276b253366db3484a1f709f38f709c15ae (patch) | |
tree | 805e1feb7735fe87abf09770805f4c53eed488b4 /net-ftp/filezilla | |
parent | Missing .po files from upstream git wrt #356759 by Jonathan Heaney and Martin... (diff) | |
download | gentoo-2-7af313276b253366db3484a1f709f38f709c15ae.tar.gz gentoo-2-7af313276b253366db3484a1f709f38f709c15ae.tar.bz2 gentoo-2-7af313276b253366db3484a1f709f38f709c15ae.zip |
net-ftp/filezilla: No longer append "-g" to compile flags (bug #356173)
(Portage version: 2.1.9.41/cvs/Linux x86_64)
Diffstat (limited to 'net-ftp/filezilla')
-rw-r--r-- | net-ftp/filezilla/ChangeLog | 6 | ||||
-rw-r--r-- | net-ftp/filezilla/files/filezilla-3.3.5.1-debug.patch | 13 | ||||
-rw-r--r-- | net-ftp/filezilla/filezilla-3.3.5.1.ebuild | 11 |
3 files changed, 26 insertions, 4 deletions
diff --git a/net-ftp/filezilla/ChangeLog b/net-ftp/filezilla/ChangeLog index 9186e3323a16..cfb8df8c2ed8 100644 --- a/net-ftp/filezilla/ChangeLog +++ b/net-ftp/filezilla/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-ftp/filezilla # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.74 2011/02/12 18:10:34 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/ChangeLog,v 1.75 2011/02/28 20:21:39 sping Exp $ + + 28 Feb 2011; Sebastian Pipping <sping@gentoo.org> filezilla-3.3.5.1.ebuild, + +files/filezilla-3.3.5.1-debug.patch: + No longer append "-g" to compile flags (bug #356173) 12 Feb 2011; Raúl Porcel <armin76@gentoo.org> filezilla-3.3.4.1.ebuild: sparc stable wrt #343711 diff --git a/net-ftp/filezilla/files/filezilla-3.3.5.1-debug.patch b/net-ftp/filezilla/files/filezilla-3.3.5.1-debug.patch new file mode 100644 index 000000000000..843ea2d14a2c --- /dev/null +++ b/net-ftp/filezilla/files/filezilla-3.3.5.1-debug.patch @@ -0,0 +1,13 @@ +--- configure.in 2011-02-28 20:47:05.746530082 +0100 ++++ configure.in 2011-02-28 20:48:14.889939315 +0100 +@@ -44,8 +44,8 @@ + if ! test "$localesonly" = "yes"; then + + if test "X$GCC" = Xyes; then +- CFLAGS="$CFLAGS -Wall -g -fexceptions" +- CXXFLAGS="$CXXFLAGS -Wall -g -fexceptions" ++ CFLAGS="$CFLAGS -Wall -fexceptions" ++ CXXFLAGS="$CXXFLAGS -Wall -fexceptions" + fi + + # Add build information to config.h diff --git a/net-ftp/filezilla/filezilla-3.3.5.1.ebuild b/net-ftp/filezilla/filezilla-3.3.5.1.ebuild index 0f5b11b5a138..d2b51da11153 100644 --- a/net-ftp/filezilla/filezilla-3.3.5.1.ebuild +++ b/net-ftp/filezilla/filezilla-3.3.5.1.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/filezilla-3.3.5.1.ebuild,v 1.1 2010/11/21 21:47:13 voyageur Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/filezilla/filezilla-3.3.5.1.ebuild,v 1.2 2011/02/28 20:21:39 sping Exp $ EAPI=2 WX_GTK_VER="2.8" -inherit eutils multilib wxwidgets +inherit eutils autotools multilib wxwidgets MY_PV=${PV/_/-} MY_P="FileZilla_${MY_PV}" @@ -33,6 +33,11 @@ DEPEND="${RDEPEND} S="${WORKDIR}"/${PN}-${MY_PV} +src_prepare() { + epatch "${FILESDIR}"/${P}-debug.patch + eautoreconf +} + src_configure() { econf $(use_with dbus) $(use_enable nls locales) \ --with-tinyxml=builtin \ |