summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-fs/nilfs-utils/nilfs-utils-2.0.14.ebuild')
-rw-r--r--sys-fs/nilfs-utils/nilfs-utils-2.0.14.ebuild32
1 files changed, 32 insertions, 0 deletions
diff --git a/sys-fs/nilfs-utils/nilfs-utils-2.0.14.ebuild b/sys-fs/nilfs-utils/nilfs-utils-2.0.14.ebuild
new file mode 100644
index 000000000000..b8cd1ac899a8
--- /dev/null
+++ b/sys-fs/nilfs-utils/nilfs-utils-2.0.14.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/nilfs-utils/nilfs-utils-2.0.14.ebuild,v 1.1 2009/07/20 02:09:51 matsuu Exp $
+
+inherit autotools
+
+DESCRIPTION="A New Implementation of a Log-structured File System for Linux"
+HOMEPAGE="http://www.nilfs.org/"
+SRC_URI="http://www.nilfs.org/download/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~x86"
+IUSE=""
+
+RDEPEND="sys-libs/e2fsprogs-libs"
+DEPEND="${DEPEND}
+ sys-kernel/linux-headers"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+
+ epatch "${FILESDIR}/${P}-gentoo.patch"
+ eautoreconf
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+
+ dodoc AUTHORS ChangeLog NEWS README
+}