summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-06-23 22:20:40 +0000
committerMike Frysinger <vapier@gentoo.org>2004-06-23 22:20:40 +0000
commitd601805820a88745e7dcd533bd3e4ada87d594e3 (patch)
tree94fd53adc888a4908ddead6c68ebc070c7e0afe5 /dev-libs/libtomcrypt
parentfix use invocation (diff)
downloadgentoo-2-d601805820a88745e7dcd533bd3e4ada87d594e3.tar.gz
gentoo-2-d601805820a88745e7dcd533bd3e4ada87d594e3.tar.bz2
gentoo-2-d601805820a88745e7dcd533bd3e4ada87d594e3.zip
ver bump
Diffstat (limited to 'dev-libs/libtomcrypt')
-rw-r--r--dev-libs/libtomcrypt/ChangeLog7
-rw-r--r--dev-libs/libtomcrypt/files/digest-libtomcrypt-0.97a1
-rw-r--r--dev-libs/libtomcrypt/libtomcrypt-0.97a.ebuild36
3 files changed, 43 insertions, 1 deletions
diff --git a/dev-libs/libtomcrypt/ChangeLog b/dev-libs/libtomcrypt/ChangeLog
index 3b89a5738aff..26745a69e318 100644
--- a/dev-libs/libtomcrypt/ChangeLog
+++ b/dev-libs/libtomcrypt/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/libtomcrypt
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/ChangeLog,v 1.15 2004/06/20 21:59:39 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/ChangeLog,v 1.16 2004/06/23 22:20:40 vapier Exp $
+
+*libtomcrypt-0.97a (23 Jun 2004)
+
+ 23 Jun 2004; Mike Frysinger <vapier@gentoo.org> +libtomcrypt-0.97a.ebuild:
+ Version bump for tom.
*libtomcrypt-0.97 (20 Jun 2004)
diff --git a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.97a b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.97a
new file mode 100644
index 000000000000..dd6d0ab0b51c
--- /dev/null
+++ b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.97a
@@ -0,0 +1 @@
+MD5 c1345cacd7a4724fbbbd6757ddcf9db8 crypt-0.97a.tar.bz2 838998
diff --git a/dev-libs/libtomcrypt/libtomcrypt-0.97a.ebuild b/dev-libs/libtomcrypt/libtomcrypt-0.97a.ebuild
new file mode 100644
index 000000000000..83e28a7cb825
--- /dev/null
+++ b/dev-libs/libtomcrypt/libtomcrypt-0.97a.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/libtomcrypt-0.97a.ebuild,v 1.1 2004/06/23 22:20:40 vapier Exp $
+
+inherit eutils
+
+DESCRIPTION="modular and portable cryptographic toolkit"
+HOMEPAGE="http://libtomcrypt.org/"
+SRC_URI="http://libtomcrypt.org/files/crypt-${PV}.tar.bz2"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="x86 ppc"
+IUSE="doc"
+
+DEPEND="doc? ( app-text/tetex app-text/ghostscript )"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ use doc || sed -i '/^install:/s:docs::' makefile
+}
+
+src_compile() {
+ emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+ dodoc authors changes
+ if use doc ; then
+ docinto examples ; dodoc examples/*
+ docinto notes ; dodoc notes/*
+ docinto demos ; dodoc demos/*
+ fi
+}