diff options
author | Arun Raghavan <ford_prefect@gentoo.org> | 2008-09-04 19:59:24 +0000 |
---|---|---|
committer | Arun Raghavan <ford_prefect@gentoo.org> | 2008-09-04 19:59:24 +0000 |
commit | f8f3f4e50aa4bd2f8920fa7db032678db130abcf (patch) | |
tree | cb482b3e704db39ba1e6b1361cbbdfd7b55ead13 /app-crypt | |
parent | Bump, thx to jbergstroem for the nudge. (diff) | |
download | gentoo-2-f8f3f4e50aa4bd2f8920fa7db032678db130abcf.tar.gz gentoo-2-f8f3f4e50aa4bd2f8920fa7db032678db130abcf.tar.bz2 gentoo-2-f8f3f4e50aa4bd2f8920fa7db032678db130abcf.zip |
Set --with-gecko independent of USE=-dbus (fixes bug #223497). Thanks to Pacho Ramos for pointing this out.
(Portage version: 2.2_rc8/cvs/Linux 2.6.26.2 i686)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/seahorse/ChangeLog | 7 | ||||
-rw-r--r-- | app-crypt/seahorse/seahorse-2.22.3.ebuild | 16 |
2 files changed, 15 insertions, 8 deletions
diff --git a/app-crypt/seahorse/ChangeLog b/app-crypt/seahorse/ChangeLog index 9db502c2dde1..3c8e52bca80b 100644 --- a/app-crypt/seahorse/ChangeLog +++ b/app-crypt/seahorse/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-crypt/seahorse # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.109 2008/08/12 13:56:43 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.110 2008/09/04 19:59:24 ford_prefect Exp $ + + 04 Sep 2008; Arun Raghavan <ford_prefect@gentoo.org> + seahorse-2.22.3.ebuild: + Set --with-gecko independent of USE=-dbus (fixes bug #223497). Thanks to + Pacho Ramos for pointing this out. 12 Aug 2008; Raúl Porcel <armin76@gentoo.org> seahorse-2.22.3.ebuild: alpha/ia64/sparc stable wrt #229709 diff --git a/app-crypt/seahorse/seahorse-2.22.3.ebuild b/app-crypt/seahorse/seahorse-2.22.3.ebuild index f1ba9eb2d742..a6dc038d5716 100644 --- a/app-crypt/seahorse/seahorse-2.22.3.ebuild +++ b/app-crypt/seahorse/seahorse-2.22.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-2.22.3.ebuild,v 1.7 2008/08/12 13:56:43 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-2.22.3.ebuild,v 1.8 2008/09/04 19:59:24 ford_prefect Exp $ EAPI="1" @@ -72,18 +72,20 @@ pkg_setup() { elog elog "The epiphany plugin requires that you build seahorse with DBUS support." elog - - if use xulrunner; then - G2CONF="${G2CONF} --with-gecko=xulrunner" - else - G2CONF="${G2CONF} --with-gecko=firefox" - fi fi eerror "Please add dbus to your USE flags and re-emerge seahorse" eerror "plugins require dbus support" fi + if use epiphany ; then + if use xulrunner ; then + G2CONF="${G2CONF} --with-gecko=xulrunner" + else + G2CONF="${G2CONF} --with-gecko=firefox" + fi + fi + G2CONF="${G2CONF} --enable-ssh --disable-scrollkeeper |