Portage is a package management system used by Gentoo Linux
# ChangeLog for app-crypt/bcrypt
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcrypt/ChangeLog,v 1.9 2008/02/04 20:25:07 grobian Exp $
04 Feb 2008; Fabian Groffen
Dropped ppc-macos keyword, see you in prefix
13 May 2007; Thilo Bangert
add herd
23 Nov 2006; Timothy Redaelli
+files/bcrypt-1.1-Makefile.patch, bcrypt-1.1.ebuild:
Added support for custom LDFLAGS and CC.
20 Sep 2005; Fabian Groffen
Marking ~ppc-macos (bug #106599)
21 Apr 2005; Simon Stelling
stable on amd64
09 Aug 2004; Danny van Dyk
Marked ~amd64.
*bcrypt-1.1 (18 Jun 2003)
18 Jun 2003; Dylan Carlson
Initial import.
NOTE:
In addition to encrypting your data, bcrypt will by default overwrite the
original input file with random garbage three times before deleting it in
order to thwart data recovery attempts by persons who may gain access to
your computer.
If you're not quite ready for this level of paranoia yet, use the '-r'
switch. Please see the bcrypt(1) man page for more details.
AUX bcrypt-1.1-Makefile.patch 570 RMD160 85beeb5a269c77f512d4e754066f5884daab65ce SHA1 d1cc782789426be03bbc52922a8b9955c99343fa SHA256 6958aeff3b7cb86c6129039866ceb5b4ba69250862b5a5f644fa1108cd3e5033
DIST bcrypt-1.1.tar.gz 36781 RMD160 c043a25169b09e7b07c2e00db0d4ca2c3b3d13be SHA1 fd4c7c83fdc560f143bb0e0a8c9fb7aa57e69698 SHA256 b9c1a7c0996a305465135b90123b0c63adbb5fa7c47a24b3f347deb2696d417d
EBUILD bcrypt-1.1.ebuild 758 RMD160 451a5213b8f9db15d93a50da2a07e6713f6c7a00 SHA1 5d9f5801f9df00fc2230c2ee9c1d86b39f589c18 SHA256 e799a6e5202c6821bc42e6c4f0d195fd014626fc4bc8f4e7e0fbda5b38aebc43
MISC ChangeLog 1345 RMD160 b16258938b4553641bb3d94905153439084286af SHA1 229929efb48eefe0ba36d766c579707aa869d6aa SHA256 08fbb534c6ce64d3be7901da246f2cc9301c7181c03310d312a77f66987c61c6
MISC metadata.xml 231 RMD160 c13056229989c3d4f448a7c7abcff3f4ee7ce13c SHA1 2d63dfb700b223f8f37c078692a81b2237896bce SHA256 4595c2615fd7c9095517949b1a920d4457f92801eb9d46307b18aafe58ec2a8a
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcrypt/bcrypt-1.1.ebuild,v 1.11 2008/02/04 20:25:07 grobian Exp $
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"
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
dodoc LICENSE README
doman bcrypt.1
}