diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-25 14:22:59 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-25 14:22:59 +0000 |
commit | 7bdad8d32b7f5739c03371d64018a5e5b0671596 (patch) | |
tree | 685e3fc41f5fd64519bd21cc69b157743dc2da56 /app-crypt | |
parent | Use bindnow-flags function instead of -Wl,-z,now. (diff) | |
download | gentoo-2-7bdad8d32b7f5739c03371d64018a5e5b0671596.tar.gz gentoo-2-7bdad8d32b7f5739c03371d64018a5e5b0671596.tar.bz2 gentoo-2-7bdad8d32b7f5739c03371d64018a5e5b0671596.zip |
Use bindnow-flags function instead of -Wl,-z,now. Drop ppc-macos special case.
(Portage version: 2.1_pre2)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/gpg-agent/ChangeLog | 6 | ||||
-rw-r--r-- | app-crypt/gpg-agent/gpg-agent-1.9.19.ebuild | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/app-crypt/gpg-agent/ChangeLog b/app-crypt/gpg-agent/ChangeLog index e6a1f89e8176..a0da82f0ce53 100644 --- a/app-crypt/gpg-agent/ChangeLog +++ b/app-crypt/gpg-agent/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/gpg-agent # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpg-agent/ChangeLog,v 1.13 2005/09/19 19:19:50 vanquirius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpg-agent/ChangeLog,v 1.14 2005/12/25 14:22:59 flameeyes Exp $ + + 25 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> + gpg-agent-1.9.19.ebuild: + Use bindnow-flags function instead of -Wl,-z,now. Drop ppc-macos special case. *gpg-agent-1.9.19 (19 Sep 2005) diff --git a/app-crypt/gpg-agent/gpg-agent-1.9.19.ebuild b/app-crypt/gpg-agent/gpg-agent-1.9.19.ebuild index b2455c4f3800..6d007b2f88c9 100644 --- a/app-crypt/gpg-agent/gpg-agent-1.9.19.ebuild +++ b/app-crypt/gpg-agent/gpg-agent-1.9.19.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpg-agent/gpg-agent-1.9.19.ebuild,v 1.1 2005/09/19 19:19:50 vanquirius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpg-agent/gpg-agent-1.9.19.ebuild,v 1.2 2005/12/25 14:22:59 flameeyes Exp $ inherit eutils flag-o-matic @@ -31,11 +31,11 @@ DEPEND="${RDEPEND} dev-lang/perl" src_compile() { - # We install +s only if USE=-caps and not OS X + # We install +s only if USE=-caps - if ! use ppc-macos && ! use caps + if ! use caps then - append-ldflags '-Wl,-z,now' + append-ldflags $(bindnow-flags) fi econf \ --enable-agent-only \ |