summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2009-07-20 02:09:51 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2009-07-20 02:09:51 +0000
commit96449e8c741526ca47f330516cf7173f63283213 (patch)
treef4bbcbebeaa72e317cdbb0f023f2fc7b1781835f /sys-fs/nilfs-utils
parentamd64 stable, bug 268676 (diff)
downloadgentoo-2-96449e8c741526ca47f330516cf7173f63283213.tar.gz
gentoo-2-96449e8c741526ca47f330516cf7173f63283213.tar.bz2
gentoo-2-96449e8c741526ca47f330516cf7173f63283213.zip
Version bumped.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'sys-fs/nilfs-utils')
-rw-r--r--sys-fs/nilfs-utils/ChangeLog8
-rw-r--r--sys-fs/nilfs-utils/files/nilfs-utils-2.0.14-gentoo.patch10
-rw-r--r--sys-fs/nilfs-utils/nilfs-utils-2.0.14.ebuild32
3 files changed, 49 insertions, 1 deletions
diff --git a/sys-fs/nilfs-utils/ChangeLog b/sys-fs/nilfs-utils/ChangeLog
index 6f7e282405c9..f9fbb69cd0d2 100644
--- a/sys-fs/nilfs-utils/ChangeLog
+++ b/sys-fs/nilfs-utils/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-fs/nilfs-utils
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/nilfs-utils/ChangeLog,v 1.3 2009/07/12 17:15:06 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/nilfs-utils/ChangeLog,v 1.4 2009/07/20 02:09:51 matsuu Exp $
+
+*nilfs-utils-2.0.14 (20 Jul 2009)
+
+ 20 Jul 2009; MATSUU Takuto <matsuu@gentoo.org> +nilfs-utils-2.0.14.ebuild,
+ +files/nilfs-utils-2.0.14-gentoo.patch:
+ Version bumped.
12 Jul 2009; Tobias Klausmann <klausman@gentoo.org>
nilfs-utils-2.0.12.ebuild:
diff --git a/sys-fs/nilfs-utils/files/nilfs-utils-2.0.14-gentoo.patch b/sys-fs/nilfs-utils/files/nilfs-utils-2.0.14-gentoo.patch
new file mode 100644
index 000000000000..367a163139d2
--- /dev/null
+++ b/sys-fs/nilfs-utils/files/nilfs-utils-2.0.14-gentoo.patch
@@ -0,0 +1,10 @@
+diff -Naur nilfs-utils-2.0.14.orig/lib/Makefile.am nilfs-utils-2.0.14/lib/Makefile.am
+--- nilfs-utils-2.0.14.orig/lib/Makefile.am 2009-07-19 23:53:00.000000000 +0900
++++ nilfs-utils-2.0.14/lib/Makefile.am 2009-07-20 09:44:32.000000000 +0900
+@@ -23,6 +23,3 @@
+ libnilfs_la_CPPFLAGS = -I$(top_srcdir)/include
+ libnilfs_la_LDFLAGS = -version-info $(VERSIONINFO)
+ libnilfs_la_LIBADD = libnilfsmisc.la
+-
+-install-exec-hook:
+- $(LDCONFIG) $(DESTDIR)$(libdir)
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
+}