summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTavis Ormandy <taviso@gentoo.org>2004-09-17 13:30:08 +0000
committerTavis Ormandy <taviso@gentoo.org>2004-09-17 13:30:08 +0000
commit7bd51abe9e5298d4a891d3e8adbfabeae6a91f6c (patch)
tree954322b5ae45b09e53d10af6d5aa71c6f01e5378 /app-crypt
parentminor fixes (Manifest recommit) (diff)
downloadgentoo-2-7bd51abe9e5298d4a891d3e8adbfabeae6a91f6c.tar.gz
gentoo-2-7bd51abe9e5298d4a891d3e8adbfabeae6a91f6c.tar.bz2
gentoo-2-7bd51abe9e5298d4a891d3e8adbfabeae6a91f6c.zip
add missing dep, clean up postinst messages
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/gnupg/ChangeLog7
-rw-r--r--app-crypt/gnupg/gnupg-1.2.6.ebuild27
2 files changed, 18 insertions, 16 deletions
diff --git a/app-crypt/gnupg/ChangeLog b/app-crypt/gnupg/ChangeLog
index 9b03fca8abac..8bd4f5b7ef44 100644
--- a/app-crypt/gnupg/ChangeLog
+++ b/app-crypt/gnupg/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-crypt/gnupg
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.75 2004/09/06 21:27:55 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.76 2004/09/17 13:30:08 taviso Exp $
+
+ 17 Sep 2004; Tavis Ormandy <taviso@gentoo.org> gnupg-1.2.6.ebuild:
+ add back silently removed virtual/mta dep (it's not a mistake!
+ it's required for using email based keyservers).
+ tidy up postinst messages.
06 Sep 2004; Robin H. Johnson <robbat2@gentoo.org> gnupg-1.9.10.ebuild,
gnupg-1.9.8.ebuild:
diff --git a/app-crypt/gnupg/gnupg-1.2.6.ebuild b/app-crypt/gnupg/gnupg-1.2.6.ebuild
index 124d5a4a587c..61d211b17bc8 100644
--- a/app-crypt/gnupg/gnupg-1.2.6.ebuild
+++ b/app-crypt/gnupg/gnupg-1.2.6.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.2.6.ebuild,v 1.2 2004/09/04 13:43:56 gustavoz Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.2.6.ebuild,v 1.3 2004/09/17 13:30:08 taviso Exp $
inherit eutils flag-o-matic
@@ -15,12 +15,13 @@ KEYWORDS="~x86 ~amd64 ~sparc"
IUSE="X ldap nls static idea"
RDEPEND="!static? ( ldap? ( net-nds/openldap )
- app-arch/bzip2
- sys-libs/zlib )
+ app-arch/bzip2
+ sys-libs/zlib )
X? ( || ( media-gfx/xloadimage media-gfx/xli ) )
nls? ( sys-devel/gettext )
dev-lang/perl
- virtual/libc"
+ virtual/libc
+ virtual/mta"
DEPEND="ldap? ( net-nds/openldap )
nls? ( sys-devel/gettext )
@@ -40,7 +41,8 @@ src_unpack() {
# Please read http://www.gnupg.org/why-not-idea.html
if use idea; then
- mv ${WORKDIR}/idea.c ${S}/cipher/idea.c || ewarn "failed to insert IDEA module"
+ mv ${WORKDIR}/idea.c ${S}/cipher/idea.c || \
+ ewarn "failed to insert IDEA module"
fi
use ppc64 && epatch ${FILESDIR}/gnupg-1.2.4.ppc64.patch
@@ -116,19 +118,14 @@ pkg_postinst() {
einfo "passphrases, etc. at runtime but may make some sysadmins nervous."
echo
if use idea; then
- einfo "you've compiled ${PN} with support for the IDEA algorithm, this code"
- einfo "is distributed under the GPL in countries where it is permitted to do so"
- einfo "by law."
+ einfo "Please read http://www.gnupg.org/why-not-idea.html for more"
+ einfo "information on IDEA support."
einfo
- einfo "Please read http://www.gnupg.org/why-not-idea.html for more information."
- einfo
- einfo "If you are in a country where the IDEA algorithm is patented, you are permitted"
- einfo "to use it at no cost for 'non revenue generating data transfer between private"
- einfo "individuals'."
+ einfo "If you are in a country where the IDEA algorithm is patented,"
+ einfo "you are permitted to use it at no cost for 'non revenue"
+ einfo "generating data transfer between private individuals'."
einfo
einfo "Countries where the patent applies are listed here"
einfo "http://www.mediacrypt.com/engl/Content/patent_info.htm"
- einfo
- einfo "Further information and other licenses are availble from http://www.mediacrypt.com/"
fi
}