summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-06-20 21:59:39 +0000
committerMike Frysinger <vapier@gentoo.org>2004-06-20 21:59:39 +0000
commitefc400eef63f40540fd0a2e5d969c1352bd733c5 (patch)
treeb04fb93ffbf4045e278f5f1eaafb25c671beeb07 /dev-libs
parentStable on ppc. (Manifest recommit) (diff)
downloadgentoo-2-efc400eef63f40540fd0a2e5d969c1352bd733c5.tar.gz
gentoo-2-efc400eef63f40540fd0a2e5d969c1352bd733c5.tar.bz2
gentoo-2-efc400eef63f40540fd0a2e5d969c1352bd733c5.zip
ver bump
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libtomcrypt/ChangeLog7
-rw-r--r--dev-libs/libtomcrypt/files/digest-libtomcrypt-0.971
-rw-r--r--dev-libs/libtomcrypt/libtomcrypt-0.97.ebuild36
3 files changed, 43 insertions, 1 deletions
diff --git a/dev-libs/libtomcrypt/ChangeLog b/dev-libs/libtomcrypt/ChangeLog
index bcb74c16d888..3b89a5738aff 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.14 2004/05/13 06:02:57 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/ChangeLog,v 1.15 2004/06/20 21:59:39 vapier Exp $
+
+*libtomcrypt-0.97 (20 Jun 2004)
+
+ 20 Jun 2004; Mike Frysinger <vapier@gentoo.org> +libtomcrypt-0.97.ebuild:
+ Version bump.
*libtomcrypt-0.95 (13 May 2004)
diff --git a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.97 b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.97
new file mode 100644
index 000000000000..cbd8c738045f
--- /dev/null
+++ b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.97
@@ -0,0 +1 @@
+MD5 1487500cbfc317a14e5614d8a4a1973c crypt-0.97.tar.bz2 838360
diff --git a/dev-libs/libtomcrypt/libtomcrypt-0.97.ebuild b/dev-libs/libtomcrypt/libtomcrypt-0.97.ebuild
new file mode 100644
index 000000000000..857c3bf7d5e7
--- /dev/null
+++ b/dev-libs/libtomcrypt/libtomcrypt-0.97.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.97.ebuild,v 1.1 2004/06/20 21:59:39 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
+}