summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Tennis <caleb@gentoo.org>2008-08-03 13:22:14 +0000
committerCaleb Tennis <caleb@gentoo.org>2008-08-03 13:22:14 +0000
commita1e65a192c53472ed336da4aa8402a6ac7b97233 (patch)
treecfd2df7b1574d4b244097ac6a68f401d1a2f381e /sys-block
parentAdd app-pda as converted category, GLEP 56. (diff)
downloadgentoo-2-a1e65a192c53472ed336da4aa8402a6ac7b97233.tar.gz
gentoo-2-a1e65a192c53472ed336da4aa8402a6ac7b97233.tar.bz2
gentoo-2-a1e65a192c53472ed336da4aa8402a6ac7b97233.zip
version bump
(Portage version: 2.1.5.2)
Diffstat (limited to 'sys-block')
-rw-r--r--sys-block/aoetools/ChangeLog7
-rw-r--r--sys-block/aoetools/aoetools-27.ebuild30
2 files changed, 36 insertions, 1 deletions
diff --git a/sys-block/aoetools/ChangeLog b/sys-block/aoetools/ChangeLog
index a9a4cbdead14..d9a3d2e71e4e 100644
--- a/sys-block/aoetools/ChangeLog
+++ b/sys-block/aoetools/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-block/aoetools
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-block/aoetools/ChangeLog,v 1.26 2008/05/12 16:09:43 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-block/aoetools/ChangeLog,v 1.27 2008/08/03 13:22:14 caleb Exp $
+
+*aoetools-27 (03 Aug 2008)
+
+ 03 Aug 2008; Caleb Tennis <caleb@gentoo.org> +aoetools-27.ebuild:
+ version bump
12 May 2008; Markus Rothe <corsair@gentoo.org> aoetools-24.ebuild:
Stable on ppc64
diff --git a/sys-block/aoetools/aoetools-27.ebuild b/sys-block/aoetools/aoetools-27.ebuild
new file mode 100644
index 000000000000..b32c48de2b9f
--- /dev/null
+++ b/sys-block/aoetools/aoetools-27.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/sys-block/aoetools/aoetools-27.ebuild,v 1.1 2008/08/03 13:22:14 caleb Exp $
+
+DESCRIPTION="aoetools are programs for users of the ATA over Ethernet (AoE) network storage protocol"
+HOMEPAGE="http://sf.net/projects/aoetools/"
+SRC_URI="mirror://sourceforge/aoetools/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
+DEPEND="virtual/libc"
+RDEPEND="${DEPEND}
+ sys-apps/util-linux"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ sed -i \
+ -e 's,^CFLAGS.*,CFLAGS += -Wall,g' \
+ Makefile || die "Failed to clean up makefile"
+}
+src_compile() {
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake install DESTDIR="${D}" || die "install failed"
+ dodoc NEWS README TODO
+}