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 | 657e28e74682db2260ee46b033d75bb198e4db4f (patch) | |
tree | 87d3d935cce6c60e932a1ecdd6bcd3f499a1c4bf /sys-block/vblade | |
parent | Stable on x86. (diff) | |
download | historical-657e28e74682db2260ee46b033d75bb198e4db4f.tar.gz historical-657e28e74682db2260ee46b033d75bb198e4db4f.tar.bz2 historical-657e28e74682db2260ee46b033d75bb198e4db4f.zip |
Initial commit. Ebuild by Robin H. Johnson <robbat2@gentoo.org>.
Package-Manager: portage-2.0.52-r1
Diffstat (limited to 'sys-block/vblade')
-rw-r--r-- | sys-block/vblade/ChangeLog | 9 | ||||
-rw-r--r-- | sys-block/vblade/Manifest | 3 | ||||
-rw-r--r-- | sys-block/vblade/files/digest-vblade-6 | 1 | ||||
-rw-r--r-- | sys-block/vblade/vblade-6.ebuild | 36 |
4 files changed, 49 insertions, 0 deletions
diff --git a/sys-block/vblade/ChangeLog b/sys-block/vblade/ChangeLog new file mode 100644 index 000000000000..0c6ba96aa975 --- /dev/null +++ b/sys-block/vblade/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for sys-block/vblade +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/vblade/ChangeLog,v 1.1 2005/09/16 06:12:11 robbat2 Exp $ + +*vblade-6 (16 Sep 2005) + + 16 Sep 2005; Robin H. Johnson <robbat2@gentoo.org> +vblade-6.ebuild: + Initial commit. Ebuild by Robin H. Johnson <robbat2@gentoo.org>. + diff --git a/sys-block/vblade/Manifest b/sys-block/vblade/Manifest new file mode 100644 index 000000000000..80c4ee943ede --- /dev/null +++ b/sys-block/vblade/Manifest @@ -0,0 +1,3 @@ +MD5 f54f560cb083660797da2e799afe4b90 vblade-6.ebuild 887 +MD5 492b364053c41d61a96184f801b3ccc8 ChangeLog 370 +MD5 b57d594810cbd242c2bd7a76c0f2eba3 files/digest-vblade-6 59 diff --git a/sys-block/vblade/files/digest-vblade-6 b/sys-block/vblade/files/digest-vblade-6 new file mode 100644 index 000000000000..8470298f3a69 --- /dev/null +++ b/sys-block/vblade/files/digest-vblade-6 @@ -0,0 +1 @@ +MD5 0fd536f304c09e21993142b354765ca9 vblade-6.tar.gz 42390 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" +} |