diff options
author | Daniel Black <dragonheart@gentoo.org> | 2005-10-10 21:39:42 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2005-10-10 21:39:42 +0000 |
commit | 41f49fb8fb4022041440c280c6a8fb176788179e (patch) | |
tree | da86aefb63198feab94e132aaff988720620c3d0 /app-crypt/seahorse/seahorse-0.7.8.ebuild | |
parent | fix Bug 108666 (diff) | |
download | gentoo-2-41f49fb8fb4022041440c280c6a8fb176788179e.tar.gz gentoo-2-41f49fb8fb4022041440c280c6a8fb176788179e.tar.bz2 gentoo-2-41f49fb8fb4022041440c280c6a8fb176788179e.zip |
added libsoup dependancy - bug #108741. Fixed BSD* linker flags too
(Portage version: 2.0.53_rc3)
Diffstat (limited to 'app-crypt/seahorse/seahorse-0.7.8.ebuild')
-rw-r--r-- | app-crypt/seahorse/seahorse-0.7.8.ebuild | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/app-crypt/seahorse/seahorse-0.7.8.ebuild b/app-crypt/seahorse/seahorse-0.7.8.ebuild index 543e2b7cab41..b63746764c00 100644 --- a/app-crypt/seahorse/seahorse-0.7.8.ebuild +++ b/app-crypt/seahorse/seahorse-0.7.8.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-0.7.8.ebuild,v 1.6 2005/10/02 04:06:26 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-0.7.8.ebuild,v 1.7 2005/10/10 21:39:42 dragonheart Exp $ -inherit gnome2 eutils +inherit gnome2 eutils flag-o-matic DESCRIPTION="gnome front end to gnupg" HOMEPAGE="http://seahorse.sourceforge.net/" @@ -25,6 +25,7 @@ RDEPEND="virtual/x11 >=gnome-base/nautilus-2.10 dev-util/intltool dev-libs/glib + net-libs/libsoup x11-misc/shared-mime-info ldap? ( net-nds/openldap )" @@ -39,11 +40,8 @@ IUSE="ldap" src_compile() { autoconf - # note below doesn't work - need to fix - append-ldflags -Wl,-z,now - export LDFLAGS - - G2CONF=`use_enable ldap` + append-ldflags $(bindnow-flags) + G2CONF=$(use_enable ldap) gnome2_src_compile } |