summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-05-13 06:02:57 +0000
committerMike Frysinger <vapier@gentoo.org>2004-05-13 06:02:57 +0000
commita01cc951984e9cd5ea87dedf84e072da02b89f0e (patch)
tree0fd2aceb4318b794cc49b7347f83ebc22ec75528 /dev-libs/libtomcrypt
parent Version bump. (diff)
downloadgentoo-2-a01cc951984e9cd5ea87dedf84e072da02b89f0e.tar.gz
gentoo-2-a01cc951984e9cd5ea87dedf84e072da02b89f0e.tar.bz2
gentoo-2-a01cc951984e9cd5ea87dedf84e072da02b89f0e.zip
Version bump.
Diffstat (limited to 'dev-libs/libtomcrypt')
-rw-r--r--dev-libs/libtomcrypt/ChangeLog9
-rw-r--r--dev-libs/libtomcrypt/files/digest-libtomcrypt-0.951
-rw-r--r--dev-libs/libtomcrypt/libtomcrypt-0.95.ebuild36
3 files changed, 44 insertions, 2 deletions
diff --git a/dev-libs/libtomcrypt/ChangeLog b/dev-libs/libtomcrypt/ChangeLog
index f3c339fdc384..bcb74c16d888 100644
--- a/dev-libs/libtomcrypt/ChangeLog
+++ b/dev-libs/libtomcrypt/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/libtomcrypt
-# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/ChangeLog,v 1.13 2004/01/27 03:21:38 vapier Exp $
+# 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 $
+
+*libtomcrypt-0.95 (13 May 2004)
+
+ 13 May 2004; Mike Frysinger <vapier@gentoo.org> +libtomcrypt-0.95.ebuild:
+ Version bump.
*libtomcrypt-0.93 (26 Jan 2004)
diff --git a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.95 b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.95
new file mode 100644
index 000000000000..365b56c72e80
--- /dev/null
+++ b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.95
@@ -0,0 +1 @@
+MD5 e3e837b7fa3819b92b2e93558d86e599 crypt-0.95.tar.bz2 851289
diff --git a/dev-libs/libtomcrypt/libtomcrypt-0.95.ebuild b/dev-libs/libtomcrypt/libtomcrypt-0.95.ebuild
new file mode 100644
index 000000000000..941764afd528
--- /dev/null
+++ b/dev-libs/libtomcrypt/libtomcrypt-0.95.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.95.ebuild,v 1.1 2004/05/13 06:02:57 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
+}