diff options
author | Thomas Sachau <tommy@gentoo.org> | 2009-08-11 21:44:41 +0000 |
---|---|---|
committer | Thomas Sachau <tommy@gentoo.org> | 2009-08-11 21:44:41 +0000 |
commit | 4357ee0e1383164bdcf3c1d10acd8d6a95c9237c (patch) | |
tree | e69a597c6a70558d979f72775fa5f92fda07a278 /sys-fs | |
parent | x11-wm/i3: Add doc flag in i3-9999,remove obsolete code in i3-3b, thanks to i... (diff) | |
download | sunrise-4357ee0e1383164bdcf3c1d10acd8d6a95c9237c.tar.gz sunrise-4357ee0e1383164bdcf3c1d10acd8d6a95c9237c.tar.bz2 sunrise-4357ee0e1383164bdcf3c1d10acd8d6a95c9237c.zip |
sys-fs/ntfs3g-ar: Simplify, build with external fuse, if not on linux
svn path=/sunrise/; revision=8981
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/ntfs3g-ar/ChangeLog | 4 | ||||
-rw-r--r-- | sys-fs/ntfs3g-ar/ntfs3g-ar-2009.4.4_pre16.ebuild | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sys-fs/ntfs3g-ar/ChangeLog b/sys-fs/ntfs3g-ar/ChangeLog index c96566a32..04e4e114c 100644 --- a/sys-fs/ntfs3g-ar/ChangeLog +++ b/sys-fs/ntfs3g-ar/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 11 Aug 2009; Thomas Sachau (Tommy[D]) <tommy@gentoo.org> + ntfs3g-ar-2009.4.4_pre16.ebuild: + Simplify, build with external fuse, if not on linux + 06 Aug 2009; P. Levine <plevine457@verizon.net> ntfs3g-ar-2009.4.4_pre16.ebuild: Fixups for pipe statements, fuse dependencies, and use flag handling. 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 index dac8fd2d8..12e9ac372 100644 --- a/sys-fs/ntfs3g-ar/ntfs3g-ar-2009.4.4_pre16.ebuild +++ b/sys-fs/ntfs3g-ar/ntfs3g-ar-2009.4.4_pre16.ebuild @@ -19,7 +19,7 @@ IUSE="debug hal suid" RDEPEND="hal? ( sys-apps/hal ) !kernel_linux? ( sys-fs/fuse ) - kernel_linux? ( fuse? ( sys-fs/fuse ) )" + fuse? ( sys-fs/fuse )" DEPEND="${RDEPEND}" @@ -37,7 +37,7 @@ pkg_setup() { src_compile() { local myconf - use kernel_linux && use fuse && myconf="--with-fuse=external" + ( !kernel_linux || use fuse ) && myconf="--with-fuse=external" econf \ --docdir="/usr/share/doc/${PF}" \ @@ -70,7 +70,7 @@ pkg_postinst() { ewarn "http://pagesperso-orange.fr/b.andre/advanced-ntfs-3g.html" ewarn - if ! use kernel_linux || use kernel_linux && use fuse ; then + if ! use kernel_linux || use fuse ; 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," |