diff options
author | Pacho Ramos <pacho@gentoo.org> | 2010-06-15 08:20:25 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2010-06-15 08:20:25 +0000 |
commit | 03386d382ef8229529c14516e58f87daefc47e3e (patch) | |
tree | 4e13b523500f8d7272176a55ed163d55073f597d /gnome-extra/evolution-exchange | |
parent | Try to fix bug 314053 (diff) | |
download | gentoo-2-03386d382ef8229529c14516e58f87daefc47e3e.tar.gz gentoo-2-03386d382ef8229529c14516e58f87daefc47e3e.tar.bz2 gentoo-2-03386d382ef8229529c14516e58f87daefc47e3e.zip |
Stop passing DISABLE_DEPRECATED and DISABLE_SINGLE_INCLUDES (bug #323991)
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra/evolution-exchange')
-rw-r--r-- | gnome-extra/evolution-exchange/ChangeLog | 7 | ||||
-rw-r--r-- | gnome-extra/evolution-exchange/evolution-exchange-2.30.1.ebuild | 8 |
2 files changed, 13 insertions, 2 deletions
diff --git a/gnome-extra/evolution-exchange/ChangeLog b/gnome-extra/evolution-exchange/ChangeLog index 0b299fcf6e8a..2045fb65e3f6 100644 --- a/gnome-extra/evolution-exchange/ChangeLog +++ b/gnome-extra/evolution-exchange/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for gnome-extra/evolution-exchange # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog,v 1.115 2010/06/13 21:41:06 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/ChangeLog,v 1.116 2010/06/15 08:20:25 pacho Exp $ + + 15 Jun 2010; Pacho Ramos <pacho@gentoo.org> + evolution-exchange-2.30.1.ebuild: + Stop passing DISABLE_DEPRECATED and DISABLE_SINGLE_INCLUDES (bug #323991 + reported by Dan Coats). *evolution-exchange-2.30.1 (13 Jun 2010) diff --git a/gnome-extra/evolution-exchange/evolution-exchange-2.30.1.ebuild b/gnome-extra/evolution-exchange/evolution-exchange-2.30.1.ebuild index 205afbffdbdb..1bac4b081e40 100644 --- a/gnome-extra/evolution-exchange/evolution-exchange-2.30.1.ebuild +++ b/gnome-extra/evolution-exchange/evolution-exchange-2.30.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/evolution-exchange-2.30.1.ebuild,v 1.1 2010/06/13 21:41:06 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/evolution-exchange/evolution-exchange-2.30.1.ebuild,v 1.2 2010/06/15 08:20:25 pacho Exp $ EAPI="2" @@ -62,6 +62,12 @@ src_prepare() { sed 's/CFLAGS="$CFLAGS $WARNING_FLAGS"//' \ -i configure.ac configure || die "sed 1 failed" + sed 's:-DG.*DISABLE_DEPRECATED::g' -i configure.ac configure \ + || die "sed 2 failed" + + sed 's:-DG.*DISABLE_SINGLE_INCLUDES::g' -i configure.ac configure \ + || die "sed 3 failed" + intltoolize --force --copy --automake || die "intltoolize failed" eautoreconf } |