diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-03-17 00:08:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-03-17 00:08:00 +0000 |
commit | e6f34224c5f7aab1c0f723b32aedccf0afcc9926 (patch) | |
tree | 1c9ef0f1d8627ade5ab9b98fd26c5f7aa9c5ff40 /dev-libs/libtomcrypt | |
parent | stabilize (diff) | |
download | historical-e6f34224c5f7aab1c0f723b32aedccf0afcc9926.tar.gz historical-e6f34224c5f7aab1c0f723b32aedccf0afcc9926.tar.bz2 historical-e6f34224c5f7aab1c0f723b32aedccf0afcc9926.zip |
Version bump.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'dev-libs/libtomcrypt')
-rw-r--r-- | dev-libs/libtomcrypt/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/libtomcrypt/files/digest-libtomcrypt-1.00 | 1 | ||||
-rw-r--r-- | dev-libs/libtomcrypt/libtomcrypt-1.00.ebuild | 33 |
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 +} |