summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Ahlberg <aliz@gentoo.org>2002-10-18 08:45:42 +0000
committerDaniel Ahlberg <aliz@gentoo.org>2002-10-18 08:45:42 +0000
commit6f0e7311b9cef5d0f41b0a3122a94cc9dde11f53 (patch)
treeecc5d09cce4aed670f6f05a436013974bf08d284
parentVersion bump. (diff)
downloadgentoo-2-6f0e7311b9cef5d0f41b0a3122a94cc9dde11f53.tar.gz
gentoo-2-6f0e7311b9cef5d0f41b0a3122a94cc9dde11f53.tar.bz2
gentoo-2-6f0e7311b9cef5d0f41b0a3122a94cc9dde11f53.zip
Version bump
-rw-r--r--app-crypt/gpgme/ChangeLog7
-rw-r--r--app-crypt/gpgme/files/digest-gpgme-0.3.121
-rw-r--r--app-crypt/gpgme/gpgme-0.3.12.ebuild35
3 files changed, 42 insertions, 1 deletions
diff --git a/app-crypt/gpgme/ChangeLog b/app-crypt/gpgme/ChangeLog
index 6055643b1242..3fd58520fa1e 100644
--- a/app-crypt/gpgme/ChangeLog
+++ b/app-crypt/gpgme/ChangeLog
@@ -1,6 +1,11 @@
# 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.5 2002/08/24 00:25:05 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpgme/ChangeLog,v 1.6 2002/10/18 08:45:42 aliz Exp $
+
+*gpgme-0.3.12 (18 Oct 2002)
+
+ 18 Oct 2002; Daniel Ahlberg <aliz@gentoo.org> gpgme-0.3.12.ebuild :
+ Version bump, found by Jacob Perkins <jap1@ionet.net> in #6665.
*gpgme-0.3.9 (23 Aug 2002)
diff --git a/app-crypt/gpgme/files/digest-gpgme-0.3.12 b/app-crypt/gpgme/files/digest-gpgme-0.3.12
new file mode 100644
index 000000000000..d2f4a98397e4
--- /dev/null
+++ b/app-crypt/gpgme/files/digest-gpgme-0.3.12
@@ -0,0 +1 @@
+MD5 86ade7e9c5f15d415cccc0620c0bf9c9 gpgme-0.3.12.tar.gz 691616
diff --git a/app-crypt/gpgme/gpgme-0.3.12.ebuild b/app-crypt/gpgme/gpgme-0.3.12.ebuild
new file mode 100644
index 000000000000..153a5ad86e05
--- /dev/null
+++ b/app-crypt/gpgme/gpgme-0.3.12.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpgme/gpgme-0.3.12.ebuild,v 1.1 2002/10/18 08:45:42 aliz 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"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86 ~ppc ~sparc ~sparc64"
+
+DEPEND=">=sys-libs/zlib-1.1.3
+ >=app-crypt/gnupg-1.0.7"
+# crypt? ( app-crypt/gpgsm )"
+RDEPEND="nls? ( sys-devel/gettext )"
+
+src_compile() {
+ local myconf
+ use nls \
+ || myconf="--disable-nls"
+ use crypt \
+ && myconf="${myconf} --enable-gpgmeplug"
+ use doc \
+ && myconf="${myconf} --enable-maintainer-mode"
+
+ econf ${myconf} || die
+ emake || die
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+ dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README README-alpha THANKS TODO VERSION
+}