summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2008-11-04 10:25:01 +0000
committerDaniel Black <dragonheart@gentoo.org>2008-11-04 10:25:01 +0000
commit8fc5c1f57597f49726446bf6ebebca311ef79cc9 (patch)
tree2ad6dcb1d33582de8b3e835d6ad8ce2202ac21b8 /app-crypt/aespipe
parentVersion bump (diff)
downloadgentoo-2-8fc5c1f57597f49726446bf6ebebca311ef79cc9.tar.gz
gentoo-2-8fc5c1f57597f49726446bf6ebebca311ef79cc9.tar.bz2
gentoo-2-8fc5c1f57597f49726446bf6ebebca311ef79cc9.zip
version bump as per bug #240412
(Portage version: 2.2_rc12/cvs/Linux 2.6.25-gentoo-r7 x86_64)
Diffstat (limited to 'app-crypt/aespipe')
-rw-r--r--app-crypt/aespipe/ChangeLog9
-rw-r--r--app-crypt/aespipe/aespipe-2.3e.ebuild30
2 files changed, 37 insertions, 2 deletions
diff --git a/app-crypt/aespipe/ChangeLog b/app-crypt/aespipe/ChangeLog
index c4eae850ea68..0b3fc31fcb24 100644
--- a/app-crypt/aespipe/ChangeLog
+++ b/app-crypt/aespipe/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-crypt/aespipe
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/aespipe/ChangeLog,v 1.22 2007/02/27 13:14:44 grobian Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/aespipe/ChangeLog,v 1.23 2008/11/04 10:25:01 dragonheart Exp $
+
+*aespipe-2.3e (04 Nov 2008)
+
+ 04 Nov 2008; Daniel Black <dragonheart@gentoo.org> +aespipe-2.3e.ebuild:
+ version bump as per bug #240412 thanks Alon
27 Feb 2007; Fabian Groffen <grobian@gentoo.org> aespipe-2.3b.ebuild:
Dropped ppc-macos keyword, see you in prefix
diff --git a/app-crypt/aespipe/aespipe-2.3e.ebuild b/app-crypt/aespipe/aespipe-2.3e.ebuild
new file mode 100644
index 000000000000..aa104e02b673
--- /dev/null
+++ b/app-crypt/aespipe/aespipe-2.3e.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/aespipe/aespipe-2.3e.ebuild,v 1.1 2008/11/04 10:25:01 dragonheart Exp $
+
+inherit flag-o-matic
+
+DESCRIPTION="Encrypts data from stdin to stdout"
+HOMEPAGE="http://loop-aes.sourceforge.net"
+SRC_URI="http://loop-aes.sourceforge.net/aespipe/${PN}-v${PV}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="static"
+DEPEND=""
+RDEPEND="app-arch/sharutils"
+
+S="${WORKDIR}/${PN}-v${PV}"
+
+src_compile() {
+ use static && append-ldflags -static
+ econf || die
+ emake || die
+}
+
+src_install() {
+ dobin aespipe bz2aespipe
+ dodoc README
+ doman aespipe.1
+}