summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-block/cec/cec-8.ebuild')
-rw-r--r--sys-block/cec/cec-8.ebuild27
1 files changed, 27 insertions, 0 deletions
diff --git a/sys-block/cec/cec-8.ebuild b/sys-block/cec/cec-8.ebuild
new file mode 100644
index 000000000000..7dc35c14163c
--- /dev/null
+++ b/sys-block/cec/cec-8.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-block/cec/cec-8.ebuild,v 1.1 2008/02/03 20:21:33 caleb Exp $
+
+DESCRIPTION="Coraid Ethernet Console client"
+HOMEPAGE="http://sf.net/projects/aoetools/"
+SRC_URI="mirror://sourceforge/aoetools/${P}.tgz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+DEPEND="virtual/libc"
+RDEPEND="${DEPEND}
+ sys-apps/util-linux"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+}
+src_compile() {
+ emake -f makefile || die "emake failed"
+}
+
+src_install() {
+ dodir /usr/sbin
+ cp "${S}"/cec "${D}"/usr/sbin
+}