blob: 9f7a30e309f940f605a3038d1cf6897db407dfac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/aoetools/aoetools-7.ebuild,v 1.1 2005/09/16 06:24:46 robbat2 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="~x86"
IUSE=""
DEPEND="virtual/libc"
RDEPEND="${DEPEND}
sys-apps/util-linux"
src_unpack() {
unpack ${A}
cd ${S}
# messy tarball
make clean || die "Failed to clean up source"
sed -i 's,^CFLAGS.*,CFLAGS += -Wall,' Makefile || die "Failed to clean up makefile"
}
src_compile() {
emake || die "emake failed"
}
src_install() {
into /usr
doman *.8
dodoc HACKING NEWS README TODO
dosbin aoe-discover aoe-interfaces aoe-mkdevs aoe-mkshelf aoe-stat aoeping
}
|