]> Pileus Git - ~andy/sunrise/commitdiff
sys-fs/ntfs3g-ar: New Ebuild for bug 235966 thanks to TommyD and chutzpah
authorP. Levine <plevine457@verizon.net>
Tue, 4 Aug 2009 21:17:01 +0000 (21:17 +0000)
committerP. Levine <plevine457@verizon.net>
Tue, 4 Aug 2009 21:17:01 +0000 (21:17 +0000)
svn path=/sunrise/; revision=8956

sys-fs/ntfs3g-ar/ChangeLog [new file with mode: 0644]
sys-fs/ntfs3g-ar/files/10-ntfs3g.fdi.2009 [new file with mode: 0644]
sys-fs/ntfs3g-ar/metadata.xml [new file with mode: 0644]
sys-fs/ntfs3g-ar/ntfs3g-ar-2009.4.4_pre16.ebuild [new file with mode: 0644]

diff --git a/sys-fs/ntfs3g-ar/ChangeLog b/sys-fs/ntfs3g-ar/ChangeLog
new file mode 100644 (file)
index 0000000..1b8d15e
--- /dev/null
@@ -0,0 +1,9 @@
+# ChangeLog for sys-fs/ntfs3g-ar
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+  04 Aug 2009; P. Levine <plevine457@verizon.net>
+  +ntfs3g-ar-2009.4.4_pre16.ebuild, +files/10-ntfs3g.fdi.2009,
+  +metadata.xml:
+  New Ebuild for bug 235966 thanks to TommyD and chutzpah
+
diff --git a/sys-fs/ntfs3g-ar/files/10-ntfs3g.fdi.2009 b/sys-fs/ntfs3g-ar/files/10-ntfs3g.fdi.2009
new file mode 100644 (file)
index 0000000..5afc3c9
--- /dev/null
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<deviceinfo version="0.2">
+       <device>
+               <match key="volume.fstype" string="ntfs">
+               <merge key="volume.fstype" type="string">ntfs-3g</merge>
+               </match>
+       </device>
+</deviceinfo>
diff --git a/sys-fs/ntfs3g-ar/metadata.xml b/sys-fs/ntfs3g-ar/metadata.xml
new file mode 100644 (file)
index 0000000..8c2df58
--- /dev/null
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <herd>maintainer-wanted</herd>
+       <use>
+               <flag name="fuse">Build against external FUSE library from <pkg>sys-fs/fuse</pkg>.</flag>
+       </use>
+</pkgmetadata>
diff --git a/sys-fs/ntfs3g-ar/ntfs3g-ar-2009.4.4_pre16.ebuild b/sys-fs/ntfs3g-ar/ntfs3g-ar-2009.4.4_pre16.ebuild
new file mode 100644 (file)
index 0000000..a47c0b1
--- /dev/null
@@ -0,0 +1,89 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+inherit linux-info
+
+MY_P=${PN/3g-ar/-3g}-${PV/_pre/AR.}
+
+DESCRIPTION="Open source read-write NTFS driver that runs under FUSE"
+HOMEPAGE="http://www.ntfs-3g.org"
+SRC_URI="http://pagesperso-orange.fr/b.andre/${MY_P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug hal suid"
+
+[[ ${KERNEL} == "linux" ]] && IUSE="${IUSE} fuse"
+
+RDEPEND="hal? ( sys-apps/hal )"
+
+DEPEND="${RDEPEND}
+       !sys-fs/ntfs3g
+       !kernel_linux? ( sys-fs/fuse )
+       fuse? ( sys-fs/fuse )"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_setup() {
+       if use kernel_linux ; then
+               CONFIG_CHECK="~FUSE_FS"
+               WARNING_FUSE_FS="This build of ntfs-3g will continue but your kernel needs to be built
+                       with FUSE support for it to function at runtime."
+               linux-info_pkg_setup
+       fi
+}
+
+src_compile() {
+       local myconf
+
+       use fuse && myconf="--with-fuse=external"
+
+       econf \
+               --docdir="/usr/share/doc/${PF}" \
+               --enable-ldscript \
+               --disable-ldconfig \
+               $(use_enable debug) \
+               ${myconf}
+       emake || die "emake failed"
+}
+
+src_install() {
+       emake DESTDIR="${D}" install || die "install failed"
+
+       prepalldocs || die "prepalldocs failed"
+       dodoc AUTHORS ChangeLog CREDITS || die "dodoc failed"
+
+       use suid && fperms u+s "/bin/${MY_PN}" || die "could not chage file permisions"
+
+       if use hal; then
+               insinto /etc/hal/fdi/policy/
+               newins "${FILESDIR}/10-ntfs3g.fdi.2009" "10-ntfs3g.fdi" || die "installation of 10-ntfs3g.fdi.2009 failed"
+       fi
+}
+
+pkg_postinst() {
+       ewarn
+       ewarn "This is an advanced features release of the ntfs-3g package. It"
+       ewarn "passes standard tests on i386 and x86_64 CPUs but users should"
+       ewarn "still backup their data.  More info at:"
+       ewarn "http://pagesperso-orange.fr/b.andre/advanced-ntfs-3g.html"
+       ewarn
+
+       if  use fuse || ! use kernel_linux ; then
+               ewarn
+               ewarn "ntfs-3g has been built with external FUSE support."
+               ewarn "If your system's FUSE package gets updated please rebuild ntfs-3g,"
+               ewarn "as failure to do so may break ntfs-3g functionality."
+               ewarn
+       fi
+
+       if use suid; then
+               ewarn
+               ewarn "You have chosen to install ntfs-3g with the binary setuid root. This"
+               ewarn "means that if there any undetected vulnerabilities in the binary,"
+               ewarn "then local users may be able to gain root access on your machine."
+               ewarn
+       fi
+}