summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2010-04-02 07:59:53 +0000
committerJustin Lecher <jlec@gentoo.org>2010-04-02 07:59:53 +0000
commit4d178da7cbe7b79d721f48470e182d6d83efcc97 (patch)
tree78456fffadce9c8762c80d778eb87554637779e4 /sys-fs/ntfs3g-ar/ntfs3g-ar-2009.4.4_pre16.ebuild
parentdev-python/pottymouth: Either use SUPPORT_PYTHON_ABIS/RESTRICT_PYTHON_ABIS or... (diff)
downloadsunrise-4d178da7cbe7b79d721f48470e182d6d83efcc97.tar.gz
sunrise-4d178da7cbe7b79d721f48470e182d6d83efcc97.tar.bz2
sunrise-4d178da7cbe7b79d721f48470e182d6d83efcc97.zip
sys-fs/ntfs3g-ar: Only one version sunrise
svn path=/sunrise/; revision=10375
Diffstat (limited to 'sys-fs/ntfs3g-ar/ntfs3g-ar-2009.4.4_pre16.ebuild')
-rw-r--r--sys-fs/ntfs3g-ar/ntfs3g-ar-2009.4.4_pre16.ebuild62
1 files changed, 0 insertions, 62 deletions
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
deleted file mode 100644
index 2693a596f..000000000
--- a/sys-fs/ntfs3g-ar/ntfs3g-ar-2009.4.4_pre16.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-
-MY_P=${PN/3g-ar/-3g}-${PV/_pre/AR.}
-
-DESCRIPTION="NTFS-3G variant supporting ACLs, junction points, compression and more"
-HOMEPAGE="http://pagesperso-orange.fr/b.andre/advanced-ntfs-3g.html"
-SRC_URI="http://pagesperso-orange.fr/b.andre/${MY_P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug hal suid"
-
-RDEPEND="hal? ( sys-apps/hal )
- sys-fs/fuse
- !sys-fs/ntfs3g"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
- econf \
- --docdir="/usr/share/doc/${PF}" \
- --enable-ldscript \
- --disable-ldconfig \
- --with-fuse=external \
- $(use_enable debug)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed"
-
- prepalldocs || die "prepalldocs failed"
- dodoc AUTHORS ChangeLog CREDITS || die "dodoc failed"
-
- if use suid; then
- fperms u+s "/bin/${PN/3g-ar/-3g}" || die "could not change file permisions"
- fi
-
- 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 "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"
-
- 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."
- fi
-}