diff options
author | Mike Gilbert <floppym@gentoo.org> | 2012-03-25 20:07:19 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2012-03-25 20:07:19 +0000 |
commit | b048ba8cf24d14279440f8e4d753a81a1a9c7fdb (patch) | |
tree | 87781405ea67781515c478bcd3ae26cca8a7f558 /app-office/passepartout | |
parent | Remove old (diff) | |
download | gentoo-2-b048ba8cf24d14279440f8e4d753a81a1a9c7fdb.tar.gz gentoo-2-b048ba8cf24d14279440f8e4d753a81a1a9c7fdb.tar.bz2 gentoo-2-b048ba8cf24d14279440f8e4d753a81a1a9c7fdb.zip |
Build system calls AC_ARG_WITH incorrectly, causing --without-gnome to enable gnome support. Bug 36787.
(Portage version: 2.2.0_alpha95/cvs/Linux x86_64)
Diffstat (limited to 'app-office/passepartout')
-rw-r--r-- | app-office/passepartout/ChangeLog | 8 | ||||
-rw-r--r-- | app-office/passepartout/passepartout-0.7.0.ebuild | 10 |
2 files changed, 10 insertions, 8 deletions
diff --git a/app-office/passepartout/ChangeLog b/app-office/passepartout/ChangeLog index b81da8b22aad..390f9809ffb0 100644 --- a/app-office/passepartout/ChangeLog +++ b/app-office/passepartout/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-office/passepartout -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/passepartout/ChangeLog,v 1.13 2011/03/28 18:48:29 angelos Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/passepartout/ChangeLog,v 1.14 2012/03/25 20:07:19 floppym Exp $ + + 25 Mar 2012; Mike Gilbert <floppym@gentoo.org> passepartout-0.7.0.ebuild: + Build system calls AC_ARG_WITH incorrectly, causing --without-gnome to enable + gnome support. Bug 36787. 28 Mar 2011; Christoph Mende <angelos@gentoo.org> passepartout-0.6_p1.ebuild: Fixed slot deps diff --git a/app-office/passepartout/passepartout-0.7.0.ebuild b/app-office/passepartout/passepartout-0.7.0.ebuild index 60c7609984b5..cd86ba49eaa3 100644 --- a/app-office/passepartout/passepartout-0.7.0.ebuild +++ b/app-office/passepartout/passepartout-0.7.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/passepartout/passepartout-0.7.0.ebuild,v 1.4 2010/03/23 03:25:07 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/passepartout/passepartout-0.7.0.ebuild,v 1.5 2012/03/25 20:07:19 floppym Exp $ EAPI=2 @@ -62,10 +62,6 @@ PATCHES=( "${FILESDIR}/${P}-libxmlpp-2.6-depend.patch" ) -pkg_setup() { - G2CONF="$(use_with gnome)" -} - src_unpack() { base_src_unpack } @@ -78,6 +74,8 @@ src_prepare() { } src_configure() { + # Bug 367867: Broken AC_ARG_WITH + use gnome && G2CONF="--with-gnome" gnome2_src_configure } |