diff options
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/gnupg/ChangeLog | 5 | ||||
-rw-r--r-- | app-crypt/gnupg/Manifest | 8 | ||||
-rw-r--r-- | app-crypt/gnupg/gnupg-1.2.3-r3.ebuild | 17 |
3 files changed, 10 insertions, 20 deletions
diff --git a/app-crypt/gnupg/ChangeLog b/app-crypt/gnupg/ChangeLog index 757799b2848c..d2b639ba1b5d 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.36 2003/11/15 03:17:56 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.37 2003/11/17 09:49:32 taviso Exp $ + + 17 Nov 2003; Tavis Ormandy <taviso@gentoo.org> gnupg-1.2.3-r3.ebuild: + stable. 14 Nov 2003; Aron Griffis <agriffis@gentoo.org> gnupg-1.2.3-r2.ebuild: Stable on ia64 diff --git a/app-crypt/gnupg/Manifest b/app-crypt/gnupg/Manifest index 9eebbc49e48b..c47651ece96d 100644 --- a/app-crypt/gnupg/Manifest +++ b/app-crypt/gnupg/Manifest @@ -1,7 +1,7 @@ -MD5 5198a8be64a9b103c977ff5af19b912e ChangeLog 5850 -MD5 7996b1f85d1b95cfe77c9ea554678c73 gnupg-1.2.3-r3.ebuild 3203 MD5 b1b8b51a3ba07896162db22ca158d07d gnupg-1.2.3-r2.ebuild 1638 +MD5 8a308ff796a0aca163a9c67cea6cd9e2 gnupg-1.2.3-r3.ebuild 2695 +MD5 395c1a9b9c15dd375da16fa611ac3570 ChangeLog 5933 MD5 5ffa87354a03beae320d15a7be997529 gnupg-1.2.2-r1.ebuild 1629 -MD5 eecb1b58574b61ddac7c3d12b0143b7d files/digest-gnupg-1.2.3-r3 65 -MD5 eecb1b58574b61ddac7c3d12b0143b7d files/digest-gnupg-1.2.3-r2 65 MD5 773ecd19392b8f793d7626c9814e1e0b files/digest-gnupg-1.2.2-r1 65 +MD5 eecb1b58574b61ddac7c3d12b0143b7d files/digest-gnupg-1.2.3-r2 65 +MD5 eecb1b58574b61ddac7c3d12b0143b7d files/digest-gnupg-1.2.3-r3 65 diff --git a/app-crypt/gnupg/gnupg-1.2.3-r3.ebuild b/app-crypt/gnupg/gnupg-1.2.3-r3.ebuild index 0a2f816e7821..28eaae63c8fd 100644 --- a/app-crypt/gnupg/gnupg-1.2.3-r3.ebuild +++ b/app-crypt/gnupg/gnupg-1.2.3-r3.ebuild @@ -1,17 +1,15 @@ # 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.6 2003/11/12 22:17:30 taviso Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.2.3-r3.ebuild,v 1.7 2003/11/17 09:49:32 taviso Exp $ DESCRIPTION="The GNU Privacy Guard, a GPL pgp replacement" HOMEPAGE="http://www.gnupg.org/" SRC_URI="ftp://ftp.gnupg.org/gcrypt/gnupg/${P}.tar.bz2" SLOT="0" LICENSE="GPL-2" -KEYWORDS="~x86 ~alpha ~sparc ~hppa" +KEYWORDS="x86 alpha ~sparc ~hppa ia64" IUSE="X ldap nls static caps" -# gpgkeys_mailto requires perl and sendmail, -# depend on virtual/mta (ssmtp does just fine). RDEPEND="!static? ( ldap? ( net-nds/openldap ) caps? ( sys-libs/libcap ) sys-libs/zlib ) @@ -38,29 +36,22 @@ src_compile() { # whenever possible. local myconf="--enable-external-hkp --enable-static-rnd=linux --libexecdir=/usr/lib" - # disable native language support if ! use nls; then myconf="${myconf} --disable-nls" fi - # enable LDAP keyserver interface if use ldap; then myconf="${myconf} --enable-ldap" else myconf="${myconf} --disable-ldap" fi - # enable photo ID viewers - # TODO: optional image viewer? --with-photo-viewer=... if use X; then myconf="${myconf} --enable-photo-viewers" else myconf="${myconf} --disable-photo-viewers" fi - # if we are compiling statically, we might as well use - # the included zlib library and remove an rdep/dep. - # `USE=static` support was requested in #29299 if use static; then myconf="${myconf} --with-included-zlib" @@ -69,9 +60,6 @@ src_compile() { myconf="${myconf} --without-included-zlib" fi - # use the linux capability library to minimise security - # risks of running setuid root. - # see the capabilities(7) manpage. if use caps; then myconf="${myconf} --with-capabilities" fi @@ -100,7 +88,6 @@ src_install() { dohtml doc/faq.html - # please see glsa 200307-06 if ! use caps; then chmod u+s "${D}/usr/bin/gpg" fi |