diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2005-09-16 06:12:11 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2005-09-16 06:12:11 +0000 |
commit | a7504791678d2232d9387079f4a02f28d4060c36 (patch) | |
tree | 9594c8627c626e921a06a2c1ac86c5424949e872 /sys-block/vblade/vblade-6.ebuild | |
parent | Stable on x86. (diff) | |
download | gentoo-2-a7504791678d2232d9387079f4a02f28d4060c36.tar.gz gentoo-2-a7504791678d2232d9387079f4a02f28d4060c36.tar.bz2 gentoo-2-a7504791678d2232d9387079f4a02f28d4060c36.zip |
Initial commit. Ebuild by Robin H. Johnson <robbat2@gentoo.org>.
(Portage version: 2.0.52-r1)
Diffstat (limited to 'sys-block/vblade/vblade-6.ebuild')
-rw-r--r-- | sys-block/vblade/vblade-6.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/sys-block/vblade/vblade-6.ebuild b/sys-block/vblade/vblade-6.ebuild new file mode 100644 index 000000000000..8c1e72211bed --- /dev/null +++ b/sys-block/vblade/vblade-6.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/vblade/vblade-6.ebuild,v 1.1 2005/09/16 06:12:11 robbat2 Exp $ + +DESCRIPTION="vblade exports a block device using AoE" +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 vblade.8 + dodoc HACKING NEWS README vbladed + dosbin vblade +} + +pkg_postinst() { + einfo "TODO: write a Gentoo init.d script for vblade" +} |