diff options
author | Caleb Tennis <caleb@gentoo.org> | 2008-08-03 13:22:14 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2008-08-03 13:22:14 +0000 |
commit | 58bf622fa1eeac0036d7606ceb250abc123bc488 (patch) | |
tree | 9b8736c1c9e58e1e873907c4a693496d607d1216 /sys-block/aoetools/aoetools-27.ebuild | |
parent | Add app-pda as converted category, GLEP 56. (diff) | |
download | historical-58bf622fa1eeac0036d7606ceb250abc123bc488.tar.gz historical-58bf622fa1eeac0036d7606ceb250abc123bc488.tar.bz2 historical-58bf622fa1eeac0036d7606ceb250abc123bc488.zip |
version bump
Package-Manager: portage-2.1.5.2
Diffstat (limited to 'sys-block/aoetools/aoetools-27.ebuild')
-rw-r--r-- | sys-block/aoetools/aoetools-27.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
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 +} |