diff options
Diffstat (limited to 'dev-libs/libtomcrypt/libtomcrypt-0.98.ebuild')
-rw-r--r-- | dev-libs/libtomcrypt/libtomcrypt-0.98.ebuild | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-libs/libtomcrypt/libtomcrypt-0.98.ebuild b/dev-libs/libtomcrypt/libtomcrypt-0.98.ebuild deleted file mode 100644 index 66ccbdb6f2cb..000000000000 --- a/dev-libs/libtomcrypt/libtomcrypt-0.98.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/libtomcrypt-0.98.ebuild,v 1.1 2004/08/06 17:19:10 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? ( virtual/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 -} |