diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-16 22:37:49 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-16 22:37:49 +0000 |
commit | 4b063d4c7bec42608d324915ca7108fdf68655ae (patch) | |
tree | 06bb609044067aadbfcc6a5fc4bd64e744c61233 /app-crypt | |
parent | changelog (diff) | |
download | historical-4b063d4c7bec42608d324915ca7108fdf68655ae.tar.gz historical-4b063d4c7bec42608d324915ca7108fdf68655ae.tar.bz2 historical-4b063d4c7bec42608d324915ca7108fdf68655ae.zip |
plugin enabled
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/gpgme/ChangeLog | 10 | ||||
-rw-r--r-- | app-crypt/gpgme/gpgme-0.3.6-r1.ebuild | 38 |
2 files changed, 47 insertions, 1 deletions
diff --git a/app-crypt/gpgme/ChangeLog b/app-crypt/gpgme/ChangeLog index 96d5e1f7d03e..fe41a1cd20d9 100644 --- a/app-crypt/gpgme/ChangeLog +++ b/app-crypt/gpgme/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for app-crypt/gpgme # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpgme/ChangeLog,v 1.2 2002/05/20 10:35:45 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpgme/ChangeLog,v 1.3 2002/07/16 22:37:49 seemant Exp $ + +*gpgme-0.3.6-r1 (16 Jul 2002) + + 16 Jul 2002; Seemant Kulleen <seemant@gentoo.org> gpgme-0.3.6-r1.ebuild + files/digest-gpgme-0.3.6-r1 : + + Plugin is now available, so that Kmail etc can use gpgme. Fix submitted + by: gentoo-bugs@devrieze.net (Paul de Vrieze) in bug #5086. *gpgme-0.3.6 (20 May 2002) diff --git a/app-crypt/gpgme/gpgme-0.3.6-r1.ebuild b/app-crypt/gpgme/gpgme-0.3.6-r1.ebuild new file mode 100644 index 000000000000..2a3ea021ce42 --- /dev/null +++ b/app-crypt/gpgme/gpgme-0.3.6-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpgme/gpgme-0.3.6-r1.ebuild,v 1.1 2002/07/16 22:37:49 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier for applications." +SRC_URI="ftp://ftp.gnupg.org/gcrypt/alpha/gpgme/${P}.tar.gz" +HOMEPAGE="http://www.gnupg.org/gpgme.html" + +DEPEND="virtual/glibc + nls? ( >=sys-devel/gettext-0.10.35 ) + >=sys-libs/zlib-1.1.3 >=app-crypt/gnupg-1.0.6" + +RDEPEND=">=app-crypt/gnupg-1.0.6" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +src_compile() { + + local myconf + use nls || myconf="--disable-nls" + + econf \ + --enable-gpgmeplug \ + ${myconf} || die + + emake || die + +} + +src_install () { + + make DESTDIR=${D} install || die + dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README README-alpha THANKS TODO + +} |