summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-crypt/bcrypt/bcrypt-1.1.ebuild')
-rw-r--r--app-crypt/bcrypt/bcrypt-1.1.ebuild33
1 files changed, 0 insertions, 33 deletions
diff --git a/app-crypt/bcrypt/bcrypt-1.1.ebuild b/app-crypt/bcrypt/bcrypt-1.1.ebuild
deleted file mode 100644
index 07266aa2a6a8..000000000000
--- a/app-crypt/bcrypt/bcrypt-1.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A file encryption utility using Paul Kocher's implementation of the blowfish algorithm"
-HOMEPAGE="http://bcrypt.sourceforge.net/"
-SRC_URI="mirror://sourceforge/bcrypt/${P}.tar.gz"
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="alpha amd64 ppc sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE=""
-DEPEND="sys-libs/zlib"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}"/${P}-Makefile.patch
-}
-
-src_compile() {
- tc-export CC
- emake || die
-}
-
-src_install() {
- dobin bcrypt || die
- dodoc README || die
- doman bcrypt.1 || die
-}