]> Pileus Git - ~andy/sunrise/commitdiff
sys-fs/ntfs3g-ar: Simplify, build with external fuse, if not on linux
authorThomas Sachau <tommy@gentoo.org>
Tue, 11 Aug 2009 21:44:41 +0000 (21:44 +0000)
committerThomas Sachau <tommy@gentoo.org>
Tue, 11 Aug 2009 21:44:41 +0000 (21:44 +0000)
svn path=/sunrise/; revision=8981

sys-fs/ntfs3g-ar/ChangeLog
sys-fs/ntfs3g-ar/ntfs3g-ar-2009.4.4_pre16.ebuild

index c96566a324bdd558c2820a9d2ccb49d74d0ddd40..04e4e114c7e89df71cfb0b7507ae940433cc4f96 100644 (file)
@@ -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.
index dac8fd2d87e05e531a87581260dfaff781967583..12e9ac372d3fb847cc84e07260732316bde1dcbd 100644 (file)
@@ -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,"