diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-10 23:52:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-10 23:52:45 +0000 |
commit | 8ae51a0afe015c92ad0825cd40f7b79fe9e9d312 (patch) | |
tree | b562bc6032ce8d3ab18861bb72a3d4addbe897cb /dev-libs/libtomcrypt | |
parent | Fixes for installing the CLI sapi (diff) | |
download | gentoo-2-8ae51a0afe015c92ad0825cd40f7b79fe9e9d312.tar.gz gentoo-2-8ae51a0afe015c92ad0825cd40f7b79fe9e9d312.tar.bz2 gentoo-2-8ae51a0afe015c92ad0825cd40f7b79fe9e9d312.zip |
Version bump for security #91421.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'dev-libs/libtomcrypt')
-rw-r--r-- | dev-libs/libtomcrypt/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/libtomcrypt/files/digest-libtomcrypt-1.03 | 1 | ||||
-rw-r--r-- | dev-libs/libtomcrypt/libtomcrypt-1.03.ebuild | 33 |
3 files changed, 41 insertions, 2 deletions
diff --git a/dev-libs/libtomcrypt/ChangeLog b/dev-libs/libtomcrypt/ChangeLog index b95ce113ab77..4414b9de257d 100644 --- a/dev-libs/libtomcrypt/ChangeLog +++ b/dev-libs/libtomcrypt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libtomcrypt -# 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 $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/ChangeLog,v 1.23 2005/06/10 23:52:45 vapier Exp $ + +*libtomcrypt-1.03 (10 Jun 2005) + + 10 Jun 2005; Mike Frysinger <vapier@gentoo.org> +libtomcrypt-1.03.ebuild: + Version bump for security #91421. *libtomcrypt-1.00 (17 Mar 2005) diff --git a/dev-libs/libtomcrypt/files/digest-libtomcrypt-1.03 b/dev-libs/libtomcrypt/files/digest-libtomcrypt-1.03 new file mode 100644 index 000000000000..629fc6228785 --- /dev/null +++ b/dev-libs/libtomcrypt/files/digest-libtomcrypt-1.03 @@ -0,0 +1 @@ +MD5 34e156201806392baf698c381a60589a crypt-1.03.tar.bz2 1064004 diff --git a/dev-libs/libtomcrypt/libtomcrypt-1.03.ebuild b/dev-libs/libtomcrypt/libtomcrypt-1.03.ebuild new file mode 100644 index 000000000000..401025cce15b --- /dev/null +++ b/dev-libs/libtomcrypt/libtomcrypt-1.03.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.03.ebuild,v 1.1 2005/06/10 23:52:45 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 +} |