summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick McLean <chutzpah@gentoo.org>2006-08-12 15:14:17 +0000
committerPatrick McLean <chutzpah@gentoo.org>2006-08-12 15:14:17 +0000
commit5f17ba3ee3dea694fb2582a1ad6b44c11cb1b82f (patch)
treef6593a0a27bf39fc6ce29391a9ed61ee7a53b53b /sys-fs/ntfs3g
parentQA fixes wrt #142511 (diff)
downloadgentoo-2-5f17ba3ee3dea694fb2582a1ad6b44c11cb1b82f.tar.gz
gentoo-2-5f17ba3ee3dea694fb2582a1ad6b44c11cb1b82f.tar.bz2
gentoo-2-5f17ba3ee3dea694fb2582a1ad6b44c11cb1b82f.zip
New release, don't delete headers anymore as this release install headers to /usr/include/ntfs-3g. Clean up older version.
(Portage version: 2.1.1_pre4-r4)
Diffstat (limited to 'sys-fs/ntfs3g')
-rw-r--r--sys-fs/ntfs3g/ChangeLog9
-rw-r--r--sys-fs/ntfs3g/files/digest-ntfs3g-0.1_beta200708113
-rw-r--r--sys-fs/ntfs3g/ntfs3g-0.1_beta20070811.ebuild35
3 files changed, 46 insertions, 1 deletions
diff --git a/sys-fs/ntfs3g/ChangeLog b/sys-fs/ntfs3g/ChangeLog
index b61baa7de289..27b6781f1fe1 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.8 2006/08/03 13:31:46 chutzpah Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.9 2006/08/12 15:14:17 chutzpah Exp $
+
+*ntfs3g-0.1_beta20070811 (12 Aug 2006)
+
+ 12 Aug 2006; Patrick McLean <chutzpah@gentoo.org>
+ -ntfs3g-0.1_beta20070714-r1.ebuild, +ntfs3g-0.1_beta20070811.ebuild:
+ New release, don't delete headers anymore as this release install headers to
+ /usr/include/ntfs-3g. Clean up older version.
*ntfs3g-0.1_beta20070803 (03 Aug 2006)
diff --git a/sys-fs/ntfs3g/files/digest-ntfs3g-0.1_beta20070811 b/sys-fs/ntfs3g/files/digest-ntfs3g-0.1_beta20070811
new file mode 100644
index 000000000000..1cae5138e636
--- /dev/null
+++ b/sys-fs/ntfs3g/files/digest-ntfs3g-0.1_beta20070811
@@ -0,0 +1,3 @@
+MD5 cf3e7cd55454b9e26e5c3fa749e478bc ntfs-3g-20070811-BETA.tgz 559100
+RMD160 626e480a2ff37084c4b09a5f87454a75fa25ec1f ntfs-3g-20070811-BETA.tgz 559100
+SHA256 93c9424183a2f3c411c89b584c06f768e957c613c8e70d83e75f84094aeaa8a8 ntfs-3g-20070811-BETA.tgz 559100
diff --git a/sys-fs/ntfs3g/ntfs3g-0.1_beta20070811.ebuild b/sys-fs/ntfs3g/ntfs3g-0.1_beta20070811.ebuild
new file mode 100644
index 000000000000..66025bc620f2
--- /dev/null
+++ b/sys-fs/ntfs3g/ntfs3g-0.1_beta20070811.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_beta20070811.ebuild,v 1.1 2006/08/12 15:14:17 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://sourceforge.net/mailarchive/forum.php?thread_id=23836054&forum_id=2697"
+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
+}