Portage is a package management system used by Gentoo Linux
# ChangeLog for app-crypt/aesutil
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/aesutil/ChangeLog,v 1.6 2008/02/04 20:26:59 grobian Exp $
04 Feb 2008; Fabian Groffen
Dropped ppc-macos keyword, see you in prefix
02 Jul 2007; Petteri Räty
Don't depend on virtual/libc as it's pointless.
13 May 2007; Thilo Bangert
add herd
22 Apr 2007; Markus Rothe
Added ~ppc64
*aesutil-1.0.7 (20 Apr 2007)
20 Apr 2007; Alon Bar-Lev
+aesutil-1.0.7.ebuild:
Rename app-crypt/aes-crypt->app-crypt/aesutil, bug#175214
21 Feb 2007; Piotr Jaroszyński
Transition to Manifest2.
10 Aug 2005; Kito
~ppc-macos keyword.
21 Apr 2005; Simon Stelling
stable on amd64
13 Aug 2004; Danny van Dyk
Marked ~amd64.
08 Aug 2004; Michael Cummings
typo in description fixed per bug 59402
*aes-crypt-1.0.7 (18 Jun 2003)
18 Jun 2003; Dylan Carlson
Initial import.
Note: The size of the file you can encrypt is purely limited by the size
of your available RAM, so bear this in mind...
DIST aes-1.0.7.tar.gz 34165 RMD160 723d0f5694fde4ca574a2d54ec070b3ccd04b4e5 SHA1 6d0657eb6b81208fad9d7335e2eb9900d39bc34b SHA256 729bdefff0a614229ffd1a8fd3c299f9e8568a8bf2bf78979376cc0b7ad52a19
EBUILD aesutil-1.0.7.ebuild 789 RMD160 35b9929dd62fd3e4ce2d3ac72a976cda5252183b SHA1 b2e8d570147cb2b49db7c9b1a7699e6ca091607e SHA256 75de9d0bb81e5c8a729f5892593d04bb8b8fa8da8575420272ee46a4f0bb2137
MISC ChangeLog 1533 RMD160 4f1c424cbd8e663ed3b587610ccefd35c4b95df1 SHA1 2aa24d8c8293f0e514b0d4a34630bf431ba0f7c9 SHA256 6fe5d1c67fbeaad9260b6a26f61fee6c908e2f15a615eb722dc7c911134f9e38
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/aesutil/aesutil-1.0.7.ebuild,v 1.4 2008/02/04 20:26:59 grobian Exp $
MY_P="${PN/util/}-${PV}"
DESCRIPTION="Command line program ('aes') to encrypt and decrypt data using the Rijndael algorithm"
HOMEPAGE="http://my.cubic.ch/users/timtas/aes/"
SRC_URI="http://my.cubic.ch/users/timtas/aes/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 hppa ppc ~ppc64 sparc x86"
IUSE=""
DEPEND=""
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd ${S}
sed -e "s:CFLAGS=-g -Wall:CFLAGS=-g -Wall ${CFLAGS}:" Makefile.linux > Makefile
}
src_compile() {
emake || die
}
src_install() {
dobin aes
dodoc CHANGES INSTALL README TODO
}