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 | 2a683e39fec0d902894d0209d14516d0a72e5b67 (patch) | |
tree | bab82bdd93b5cda125dca51b975cae824e629099 /app-crypt | |
parent | Use bindnow-flags function instead of -Wl,-z,now. (diff) | |
download | historical-2a683e39fec0d902894d0209d14516d0a72e5b67.tar.gz historical-2a683e39fec0d902894d0209d14516d0a72e5b67.tar.bz2 historical-2a683e39fec0d902894d0209d14516d0a72e5b67.zip |
Use bindnow-flags function instead of -Wl,-z,now. Drop ppc-macos special case.
Package-Manager: portage-2.1_pre2
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/gpg-agent/ChangeLog | 6 | ||||
-rw-r--r-- | app-crypt/gpg-agent/Manifest | 10 | ||||
-rw-r--r-- | app-crypt/gpg-agent/gpg-agent-1.9.19.ebuild | 8 |
3 files changed, 19 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/Manifest b/app-crypt/gpg-agent/Manifest index 9d17afdbce3b..6523fd73146a 100644 --- a/app-crypt/gpg-agent/Manifest +++ b/app-crypt/gpg-agent/Manifest @@ -1,6 +1,16 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + MD5 b7ae2da1cb373b2d40bc63f9eb65e02b ChangeLog 2432 MD5 7247c8f0379977f0a3dd13568bf283c7 files/digest-gpg-agent-1.9.18 66 MD5 28ad3af724b879fe86743d59ae4447dd files/digest-gpg-agent-1.9.19 66 MD5 ff93508de1ff781c60ff6c8eb7cdc2a9 gpg-agent-1.9.18.ebuild 1932 MD5 704478ba934dc7d530e0caad529e6033 gpg-agent-1.9.19.ebuild 1902 MD5 cbb90c3fb885f86a1c6bea0f4493f9ab metadata.xml 250 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.2 (GNU/Linux) + +iD8DBQFDrqtPAiZjviIA2XgRAlDnAJ4hu9f93JGj5mCyd7HQcEeimVhHggCgiQ9z +xVw82hmjbdBfo7Fa17iy8yk= +=v7NG +-----END PGP SIGNATURE----- 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 \ |