summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-03-17 00:08:00 +0000
committerMike Frysinger <vapier@gentoo.org>2005-03-17 00:08:00 +0000
commit323e79a7829432f9d4113660e612d2bb06e195e3 (patch)
treef9f887f6dd581c066ff3a99a4b9ec09373a9e947 /dev-libs/libtomcrypt
parentstabilize (diff)
downloadgentoo-2-323e79a7829432f9d4113660e612d2bb06e195e3.tar.gz
gentoo-2-323e79a7829432f9d4113660e612d2bb06e195e3.tar.bz2
gentoo-2-323e79a7829432f9d4113660e612d2bb06e195e3.zip
Version bump.
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-libs/libtomcrypt')
-rw-r--r--dev-libs/libtomcrypt/ChangeLog9
-rw-r--r--dev-libs/libtomcrypt/files/digest-libtomcrypt-1.001
-rw-r--r--dev-libs/libtomcrypt/libtomcrypt-1.00.ebuild33
3 files changed, 41 insertions, 2 deletions
diff --git a/dev-libs/libtomcrypt/ChangeLog b/dev-libs/libtomcrypt/ChangeLog
index 73a1e8612a39..b95ce113ab77 100644
--- a/dev-libs/libtomcrypt/ChangeLog
+++ b/dev-libs/libtomcrypt/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/libtomcrypt
-# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/ChangeLog,v 1.21 2004/08/27 23:44:49 kugelfang Exp $
+# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/ChangeLog,v 1.22 2005/03/17 00:07:25 vapier Exp $
+
+*libtomcrypt-1.00 (17 Mar 2005)
+
+ 17 Mar 2005; Mike Frysinger <vapier@gentoo.org> +libtomcrypt-1.00.ebuild:
+ Version bump.
28 Aug 2004; Danny van Dyk <kugelfang@gentoo.org>
libtomcrypt-0.98-r1.ebuild:
diff --git a/dev-libs/libtomcrypt/files/digest-libtomcrypt-1.00 b/dev-libs/libtomcrypt/files/digest-libtomcrypt-1.00
new file mode 100644
index 000000000000..098e0808a043
--- /dev/null
+++ b/dev-libs/libtomcrypt/files/digest-libtomcrypt-1.00
@@ -0,0 +1 @@
+MD5 73a896e5e8f636dd14c1517f572ddaa1 crypt-1.00.tar.bz2 940439
diff --git a/dev-libs/libtomcrypt/libtomcrypt-1.00.ebuild b/dev-libs/libtomcrypt/libtomcrypt-1.00.ebuild
new file mode 100644
index 000000000000..d4a1ade06f6c
--- /dev/null
+++ b/dev-libs/libtomcrypt/libtomcrypt-1.00.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/libtomcrypt-1.00.ebuild,v 1.1 2005/03/17 00:07:27 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="~amd64 ~ppc ~x86"
+IUSE="doc"
+
+DEPEND="doc? ( virtual/tetex app-text/ghostscript )"
+RDEPEND=""
+
+src_unpack() {
+ unpack crypt-${PV}.tar.bz2
+ cd "${S}"
+ use doc || sed -i '/^install:/s:docs::' makefile
+}
+
+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
+}