summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorPatrick McLean <chutzpah@gentoo.org>2006-09-11 14:04:07 +0000
committerPatrick McLean <chutzpah@gentoo.org>2006-09-11 14:04:07 +0000
commit28e6f5e14de4490afce7132268dafd88481a44c0 (patch)
tree0466542d83088015a6cf4744d0fb87847bdbbbbd /sys-fs
parentFixed broken in 2.1.13 redhat and debian patchset. Thank Rajiv Aaron Manglani... (diff)
downloadgentoo-2-28e6f5e14de4490afce7132268dafd88481a44c0.tar.gz
gentoo-2-28e6f5e14de4490afce7132268dafd88481a44c0.tar.bz2
gentoo-2-28e6f5e14de4490afce7132268dafd88481a44c0.zip
Version bump, clean out some old versions.
(Portage version: 2.1.1)
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/ntfs3g/ChangeLog9
-rw-r--r--sys-fs/ntfs3g/files/digest-ntfs3g-0.1_beta200709103
-rw-r--r--sys-fs/ntfs3g/ntfs3g-0.1_beta20070910.ebuild35
3 files changed, 46 insertions, 1 deletions
diff --git a/sys-fs/ntfs3g/ChangeLog b/sys-fs/ntfs3g/ChangeLog
index 43e1e7fa05a2..f677dd099a3e 100644
--- a/sys-fs/ntfs3g/ChangeLog
+++ b/sys-fs/ntfs3g/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for sys-fs/ntfs3g
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.10 2006/08/22 23:40:55 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.11 2006/09/11 14:04:07 chutzpah Exp $
+
+*ntfs3g-0.1_beta20070910 (11 Sep 2006)
+
+ 11 Sep 2006; Patrick McLean <chutzpah@gentoo.org>
+ -ntfs3g-0.1_beta20070803.ebuild, -ntfs3g-0.1_beta20070811.ebuild,
+ +ntfs3g-0.1_beta20070910.ebuild:
+ Version bump, clean out some old versions.
*ntfs3g-0.1_beta20070822 (22 Aug 2006)
diff --git a/sys-fs/ntfs3g/files/digest-ntfs3g-0.1_beta20070910 b/sys-fs/ntfs3g/files/digest-ntfs3g-0.1_beta20070910
new file mode 100644
index 000000000000..4de0fbcf1182
--- /dev/null
+++ b/sys-fs/ntfs3g/files/digest-ntfs3g-0.1_beta20070910
@@ -0,0 +1,3 @@
+MD5 9501ea019a3179727d7d4ab492a84c38 ntfs-3g-20070910-BETA.tgz 561168
+RMD160 73591ca2de3c9d4f047eff0bc25a57049cdd2dd7 ntfs-3g-20070910-BETA.tgz 561168
+SHA256 21a8dfada915650f641d31269018a11452ce296a42a33cf4ca454c3ca93e3cb8 ntfs-3g-20070910-BETA.tgz 561168
diff --git a/sys-fs/ntfs3g/ntfs3g-0.1_beta20070910.ebuild b/sys-fs/ntfs3g/ntfs3g-0.1_beta20070910.ebuild
new file mode 100644
index 000000000000..5cbb5979ba41
--- /dev/null
+++ b/sys-fs/ntfs3g/ntfs3g-0.1_beta20070910.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-0.1_beta20070910.ebuild,v 1.1 2006/09/11 14:04:07 chutzpah Exp $
+
+MY_PN="${PN/3g/-3g}"
+MY_PV="${PV#0.1_beta}"
+MY_PV="${MY_PV}-BETA"
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="Open source read-write NTFS driver that runs under FUSE"
+HOMEPAGE="http://wiki.linux-ntfs.org/doku.php?id=ntfs-3g"
+SRC_URI="http://mlf.linux.rulez.org/mlf/ezaz/${MY_P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=sys-fs/fuse-2.5.0"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+
+ # default makefile calls ldconfig
+ sed -ie '/ldconfig$/ d' src/Makefile.*
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die "install failed"
+ dodoc AUTHORS ChangeLog CREDITS NEWS README
+}