diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-08-10 02:23:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-08-10 02:23:09 +0000 |
commit | e6ddc2547e8088f655bec5923b649556b30d3773 (patch) | |
tree | e8aca10ff5a15448b65a9a9b5b17bc3a7caae0ee /dev-libs/libtomcrypt | |
parent | make sure to use IGNORE_SPEED (diff) | |
download | historical-e6ddc2547e8088f655bec5923b649556b30d3773.tar.gz historical-e6ddc2547e8088f655bec5923b649556b30d3773.tar.bz2 historical-e6ddc2547e8088f655bec5923b649556b30d3773.zip |
old
Diffstat (limited to 'dev-libs/libtomcrypt')
-rw-r--r-- | dev-libs/libtomcrypt/files/digest-libtomcrypt-0.98-r1 | 2 | ||||
-rw-r--r-- | dev-libs/libtomcrypt/files/digest-libtomcrypt-1.00 | 1 | ||||
-rw-r--r-- | dev-libs/libtomcrypt/libtomcrypt-0.98-r1.ebuild | 41 | ||||
-rw-r--r-- | dev-libs/libtomcrypt/libtomcrypt-1.00.ebuild | 33 |
4 files changed, 0 insertions, 77 deletions
diff --git a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.98-r1 b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.98-r1 deleted file mode 100644 index 4d19ee3a8daa..000000000000 --- a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.98-r1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 19215f6876671f9fc43e15703088a74a crypt-0.98.tar.bz2 867290 -MD5 b4453b23a19f80f6c260275ccb260db2 ltc-0.98-001.tar.bz2 2535 diff --git a/dev-libs/libtomcrypt/files/digest-libtomcrypt-1.00 b/dev-libs/libtomcrypt/files/digest-libtomcrypt-1.00 deleted file mode 100644 index 098e0808a043..000000000000 --- a/dev-libs/libtomcrypt/files/digest-libtomcrypt-1.00 +++ /dev/null @@ -1 +0,0 @@ -MD5 73a896e5e8f636dd14c1517f572ddaa1 crypt-1.00.tar.bz2 940439 diff --git a/dev-libs/libtomcrypt/libtomcrypt-0.98-r1.ebuild b/dev-libs/libtomcrypt/libtomcrypt-0.98-r1.ebuild deleted file mode 100644 index d2e2bf85946c..000000000000 --- a/dev-libs/libtomcrypt/libtomcrypt-0.98-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# 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-0.98-r1.ebuild,v 1.3 2005/03/17 00:06:19 vapier Exp $ - -inherit eutils - -DESCRIPTION="modular and portable cryptographic toolkit" -HOMEPAGE="http://libtomcrypt.org/" -SRC_URI="http://libtomcrypt.org/files/crypt-${PV}.tar.bz2 - http://libtomcrypt.org/files/patch-${PV}/ltc-${PV}-001.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 - mkdir patches && cd patches - unpack ltc-${PV}-001.tar.bz2 - cd ${S} - epatch $(find ${WORKDIR}/patches -type f) - 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 -} diff --git a/dev-libs/libtomcrypt/libtomcrypt-1.00.ebuild b/dev-libs/libtomcrypt/libtomcrypt-1.00.ebuild deleted file mode 100644 index d4a1ade06f6c..000000000000 --- a/dev-libs/libtomcrypt/libtomcrypt-1.00.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# 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 -} |