diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2003-10-31 22:03:16 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2003-10-31 22:03:16 +0000 |
commit | f3d0227b2e660be5ff6816c8932cd9b15621b5b6 (patch) | |
tree | a0950be0548dd3449bd62f2f203742d974dbd804 /app-crypt | |
parent | Added fix for bug #32029. Thanks to robbat2 :) (diff) | |
download | historical-f3d0227b2e660be5ff6816c8932cd9b15621b5b6.tar.gz historical-f3d0227b2e660be5ff6816c8932cd9b15621b5b6.tar.bz2 historical-f3d0227b2e660be5ff6816c8932cd9b15621b5b6.zip |
cap => caps, consulted with user who noted that `cap` might be misleading.
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/gnupg/ChangeLog | 5 | ||||
-rw-r--r-- | app-crypt/gnupg/Manifest | 4 | ||||
-rw-r--r-- | app-crypt/gnupg/gnupg-1.2.3-r3.ebuild | 12 |
3 files changed, 12 insertions, 9 deletions
diff --git a/app-crypt/gnupg/ChangeLog b/app-crypt/gnupg/ChangeLog index 55be5fbc41e2..c7d272224b65 100644 --- a/app-crypt/gnupg/ChangeLog +++ b/app-crypt/gnupg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-crypt/gnupg # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.32 2003/10/31 15:46:04 taviso Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.33 2003/10/31 22:03:10 taviso Exp $ + + 31 Oct 2003; Tavis Ormandy <taviso@gentoo.org> gnupg-1.2.3-r3.ebuild: + cap => caps *gnupg-1.2.3-r3 (31 Oct 2003) diff --git a/app-crypt/gnupg/Manifest b/app-crypt/gnupg/Manifest index 613a8d5678a7..1e647db3f9c0 100644 --- a/app-crypt/gnupg/Manifest +++ b/app-crypt/gnupg/Manifest @@ -1,6 +1,6 @@ MD5 0761192752d3ed8c1ced6a858261eff6 gnupg-1.2.3-r2.ebuild 1626 -MD5 438bd797a5e205a166e724938eec0213 gnupg-1.2.3-r3.ebuild 2932 -MD5 274740a8e9b61f5221059a8cdf8d9720 ChangeLog 5496 +MD5 7f9198189193dd8823a8e138ac336d71 gnupg-1.2.3-r3.ebuild 2937 +MD5 95d9ba72ebb3d327a76a7b871aad85ed ChangeLog 5583 MD5 5ffa87354a03beae320d15a7be997529 gnupg-1.2.2-r1.ebuild 1629 MD5 773ecd19392b8f793d7626c9814e1e0b files/digest-gnupg-1.2.2-r1 65 MD5 eecb1b58574b61ddac7c3d12b0143b7d files/digest-gnupg-1.2.3-r2 65 diff --git a/app-crypt/gnupg/gnupg-1.2.3-r3.ebuild b/app-crypt/gnupg/gnupg-1.2.3-r3.ebuild index 21474e838149..b08887878c4e 100644 --- a/app-crypt/gnupg/gnupg-1.2.3-r3.ebuild +++ b/app-crypt/gnupg/gnupg-1.2.3-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.2.3-r3.ebuild,v 1.1 2003/10/31 15:46:04 taviso Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.2.3-r3.ebuild,v 1.2 2003/10/31 22:03:10 taviso Exp $ DESCRIPTION="The GNU Privacy Guard, a GPL pgp replacement" HOMEPAGE="http://www.gnupg.org/" @@ -9,15 +9,15 @@ SRC_URI="ftp://ftp.gnupg.org/gcrypt/gnupg/${P}.tar.bz2" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86 ~alpha ~sparc ~hppa" -IUSE="X ldap nls static cap" +IUSE="X ldap nls static caps" RDEPEND="!static? ( ldap? ( net-nds/openldap ) - cap? ( sys-libs/libcap ) + caps? ( sys-libs/libcap ) sys-libs/zlib ) X? ( x11-misc/xloadimage ) nls? ( sys-devel/gettext )" -DEPEND="cap? ( static? ( >=sys-libs/libcap-1.10-r3 ) +DEPEND="caps? ( static? ( >=sys-libs/libcap-1.10-r3 ) !static? ( sys-libs/libcap ) ) ldap? ( net-nds/openldap ) nls? ( sys-devel/gettext ) @@ -59,7 +59,7 @@ src_compile() { # use the linux capability library to minimise security # risks of running setuid root. - if use cap; then + if use caps; then myconf="${myconf} --with-capabilities" fi @@ -94,7 +94,7 @@ pkg_postinst() { einfo "This is needed in order to have a secure place to store your" einfo "passphrases, etc. This may make some sysadmins nervous." - if use cap; then + if use caps; then echo einfo "gpg will use Linux capabilities to set the permitted" einfo "operations, this will minimise the security risks" |