diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2009-07-23 17:50:15 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2009-07-23 17:50:15 +0000 |
commit | 6304cb4287dbdc0ecd5842f8484cd295ac585171 (patch) | |
tree | 6e16386f2f314a17bc1d310ef640aed8428f8c47 | |
parent | Marked ppc stable for bug #270495. (diff) | |
download | gentoo-2-6304cb4287dbdc0ecd5842f8484cd295ac585171.tar.gz gentoo-2-6304cb4287dbdc0ecd5842f8484cd295ac585171.tar.bz2 gentoo-2-6304cb4287dbdc0ecd5842f8484cd295ac585171.zip |
[sys-block/aoetools] version bump. thanks to Andrei Vinogradov aka slepnoga
(Portage version: 2.2_rc33/cvs/Linux x86_64)
-rw-r--r-- | sys-block/aoetools/ChangeLog | 7 | ||||
-rw-r--r-- | sys-block/aoetools/aoetools-30.ebuild | 24 |
2 files changed, 30 insertions, 1 deletions
diff --git a/sys-block/aoetools/ChangeLog b/sys-block/aoetools/ChangeLog index 180f288ba2ba..8f7c7b4d8fa8 100644 --- a/sys-block/aoetools/ChangeLog +++ b/sys-block/aoetools/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-block/aoetools # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/aoetools/ChangeLog,v 1.34 2009/03/21 12:04:30 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/aoetools/ChangeLog,v 1.35 2009/07/23 17:50:15 alexxy Exp $ + +*aoetools-30 (23 Jul 2009) + + 23 Jul 2009; Alexey Shvetsov <alexxy@gentoo.org> +aoetools-30.ebuild: + version bump. thanks to Andrei Vinogradov aka slepnoga 21 Mar 2009; Caleb Tennis <caleb@gentoo.org> aoetools-29.ebuild: Missing src_install broke diff --git a/sys-block/aoetools/aoetools-30.ebuild b/sys-block/aoetools/aoetools-30.ebuild new file mode 100644 index 000000000000..e16f9b563322 --- /dev/null +++ b/sys-block/aoetools/aoetools-30.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/aoetools/aoetools-30.ebuild,v 1.1 2009/07/23 17:50:15 alexxy 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 ~sparc ~x86" +IUSE="" +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_install() { + emake install DESTDIR="${D}" || die "install failed" + dodoc NEWS README +} |