Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Mar 2013 16:52:02 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r313527 - in head: Mk Mk/Uses audio/uade devel/gvfs devel/libewf devel/libregf devel/libvshadow devel/py-fusefs emulators/open-vm-tools graphics/fusefs-gphotofs net/openafs security/tru...
Message-ID:  <201303061652.r26Gq2OD093842@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Wed Mar  6 16:52:02 2013
New Revision: 313527
URL: http://svnweb.freebsd.org/changeset/ports/313527

Log:
  Convert USE_FUSE macros into USES feature.
  
  While here trim headers
  Convert some USE_GNOME= gnomehack -> USES= pathfix

Added:
  head/Mk/Uses/fuse.mk   (contents, props changed)
Modified:
  head/Mk/bsd.port.mk
  head/audio/uade/Makefile
  head/devel/gvfs/Makefile
  head/devel/libewf/Makefile
  head/devel/libregf/Makefile
  head/devel/libvshadow/Makefile
  head/devel/py-fusefs/Makefile
  head/emulators/open-vm-tools/Makefile
  head/graphics/fusefs-gphotofs/Makefile
  head/net/openafs/Makefile
  head/security/truecrypt/Makefile
  head/sysutils/afflib/Makefile
  head/sysutils/archivemount/Makefile
  head/sysutils/avfs/Makefile
  head/sysutils/djmount/Makefile
  head/sysutils/fusefs-afuse/Makefile
  head/sysutils/fusefs-chironfs/Makefile
  head/sysutils/fusefs-cryptofs/Makefile
  head/sysutils/fusefs-curlftpfs/Makefile
  head/sysutils/fusefs-encfs/Makefile
  head/sysutils/fusefs-exfat/Makefile
  head/sysutils/fusefs-ext4fuse/Makefile
  head/sysutils/fusefs-funionfs/Makefile
  head/sysutils/fusefs-fur/Makefile
  head/sysutils/fusefs-fusexmp_fh/Makefile
  head/sysutils/fusefs-gnome-vfs/Makefile
  head/sysutils/fusefs-gstfs/Makefile
  head/sysutils/fusefs-gunzip/Makefile
  head/sysutils/fusefs-httpfs/Makefile
  head/sysutils/fusefs-ifuse/Makefile
  head/sysutils/fusefs-mhddfs/Makefile
  head/sysutils/fusefs-mp3fs/Makefile
  head/sysutils/fusefs-ntfs/Makefile
  head/sysutils/fusefs-pod/Makefile
  head/sysutils/fusefs-rar2fs/Makefile
  head/sysutils/fusefs-s3fs/Makefile
  head/sysutils/fusefs-smbnetfs/Makefile
  head/sysutils/fusefs-sqlfs/Makefile
  head/sysutils/fusefs-sshfs/Makefile
  head/sysutils/fusefs-unionfs/Makefile
  head/sysutils/fusefs-wdfs/Makefile
  head/sysutils/fusefs-wikipediafs/Makefile
  head/sysutils/fusefs-zip/Makefile
  head/sysutils/moosefs-client/Makefile
  head/sysutils/mtpfs/Makefile
  head/sysutils/ntfsprogs/Makefile
  head/sysutils/p5-Fuse/Makefile
  head/sysutils/udfclient/Makefile
  head/x11-wm/compiz/Makefile

Added: head/Mk/Uses/fuse.mk
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/Mk/Uses/fuse.mk	Wed Mar  6 16:52:02 2013	(r313527)
@@ -0,0 +1,15 @@
+# $FreeBSD$
+#
+# handle dependency on the fuse port
+#
+# MAINTAINER: portmgr@FreeBSD.org
+#
+.if !defined(_INCLUDE_FUSE_MK)
+_INCLUDE_FUSE_MK=	yes
+
+LIB_DEPENDS+=	fuse:${PORTSDIR}/sysutils/fusefs-libs
+.if !exists(/sbin/mount_fusefs)
+RUN_DEPENDS+=	mount_fusefs:${PORTSDIR}/sysutils/fusefs-kmod
+.endif
+
+.endif

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/Mk/bsd.port.mk	Wed Mar  6 16:52:02 2013	(r313527)
@@ -408,9 +408,6 @@ FreeBSD_MAINTAINER=	portmgr@FreeBSD.org
 #				- Legal values are: gamin (default),fam
 #				  If set to an unknown value, the port is marked IGNORE.
 ##
-# USE_FUSE		- If set, make sure necessary components unavailable in base
-#				  are installed from ports.
-##
 # USE_AUTOTOOLS	- If set, this port uses various GNU autotools
 #				  (libtool, autoconf, autoheader, automake et al.)
 #				  See bsd.autotools.mk for more details.
@@ -1854,13 +1851,6 @@ IGNORE=		cannot be built with unknown FA
 .endif
 .endif # USE_FAM
 
-.if defined(USE_FUSE)
-LIB_DEPENDS+=	fuse:${PORTSDIR}/sysutils/fusefs-libs
-.if !exists(/sbin/mount_fusefs)
-RUN_DEPENDS+=	mount_fusefs:${PORTSDIR}/sysutils/fusefs-kmod
-.endif
-.endif
-
 .if defined(USE_RC_SUBR) && ${USE_RC_SUBR:U} != "YES"
 SUB_FILES+=	${USE_RC_SUBR}
 .endif

Modified: head/audio/uade/Makefile
==============================================================================
--- head/audio/uade/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/audio/uade/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -44,7 +44,7 @@ CONFIGURE_ARGS+=--with-text-scope
 .endif
 
 .if ${PORT_OPTIONS:MFUSE}
-USE_FUSE=	yes
+USES+=		fuse
 MAN1+=		uadefs.1
 PLIST_SUB+=	FUSE=""
 .else

Modified: head/devel/gvfs/Makefile
==============================================================================
--- head/devel/gvfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/devel/gvfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,7 +1,4 @@
-# New ports collection makefile for:	gvfs
-# Date created:		2007-11-06
-# Whom:			Michael Johnson <ahze@FreeBSD.org>
-#
+# Created by: Michael Johnson <ahze@FreeBSD.org>
 # $FreeBSD$
 #   $MCom: ports/devel/gvfs/Makefile,v 1.70 2011/01/31 19:06:42 kwm Exp $
 #
@@ -40,7 +37,7 @@ OPTIONS=	FUSE "Enable fuse" off \
 .include <bsd.port.pre.mk>
 
 .if defined(WITH_FUSE)
-USE_FUSE=	yes
+USES+=		fuse
 PLIST_SUB+=	FUSE=""
 .else
 CONFIGURE_ARGS+=	--disable-fuse

Modified: head/devel/libewf/Makefile
==============================================================================
--- head/devel/libewf/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/devel/libewf/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	libewf
-# Date created:		31 May 2012
-# Whom:			MANTANI Nobutaka <nobutaka@FreeBSD.org>
-#
+# Created by: MANTANI Nobutaka <nobutaka@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	libewf
 PORTVERSION=	20120813
@@ -18,7 +14,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	uuid:${PORTSDIR}/misc/e2fsprogs-libuuid \
 
-USE_FUSE=	yes
+USES=		fuse
 USE_GETTEXT=	yes
 USE_ICONV=	yes
 USE_LDCONFIG=	yes

Modified: head/devel/libregf/Makefile
==============================================================================
--- head/devel/libregf/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/devel/libregf/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -13,9 +13,8 @@ LICENSE=	LGPL3
 
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--enable-python
-USE_FUSE=	yes
+USES=		fuse pathfix
 USE_GETTEXT=	yes
-USE_GNOME=	gnomehack
 USE_ICONV=	yes
 USE_PYTHON=	yes
 USE_LDCONFIG=	yes

Modified: head/devel/libvshadow/Makefile
==============================================================================
--- head/devel/libvshadow/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/devel/libvshadow/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	libvshadow
-# Date created:		31 May 2012
-# Whom:			MANTANI Nobutaka <nobutaka@FreeBSD.org>
-#
+# Created by: MANTANI Nobutaka <nobutaka@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	libvshadow
 PORTVERSION=	20130113
@@ -17,9 +13,8 @@ COMMENT=	A library to support the Volume
 LICENSE=	LGPL3
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USE_FUSE=	yes
+USES=		fuse pathfix
 USE_GETTEXT=	yes
-USE_GNOME=	gnomehack
 USE_ICONV=	yes
 USE_PYTHON=	yes
 USE_LDCONFIG=	yes

Modified: head/devel/py-fusefs/Makefile
==============================================================================
--- head/devel/py-fusefs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/devel/py-fusefs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	py-fusefs
-# Date created:		22 July 2006
-# Whom:			Andrew Pantyukhin <infofarmer@FreeBSD.org>
-#
+# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	fusefs
 DISTVERSION=	0.2.1
@@ -15,7 +11,7 @@ DISTNAME=	fuse-python-${DISTVERSION}
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	FUSE Python bindings
 
-USE_FUSE=	yes
+USES=		fuse
 USE_PYTHON=	yes
 USE_PKGCONFIG=	yes
 USE_PYDISTUTILS=easy_install

Modified: head/emulators/open-vm-tools/Makefile
==============================================================================
--- head/emulators/open-vm-tools/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/emulators/open-vm-tools/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -49,7 +49,7 @@ CONFLICTS=		open-vm-tools-nox11-[0-9]*
 .endif
 
 .if !defined(WITHOUT_FUSE)
-USE_FUSE=	yes
+USES=		fuse
 PLIST_SUB+=	FUSE=""
 .else
 PLIST_SUB+=	FUSE="@comment "

Modified: head/graphics/fusefs-gphotofs/Makefile
==============================================================================
--- head/graphics/fusefs-gphotofs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/graphics/fusefs-gphotofs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	gphotofs
-# Date created:				21 June 2006
-# Whom:					Pav Lucistnik <pav@FreeBSD.org>
-#
+# Created by: Pav Lucistnik <pav@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	gphotofs
 PORTVERSION=	0.4.0
@@ -17,8 +13,8 @@ COMMENT=	Mount PTP camera as a file syst
 
 LIB_DEPENDS=	gphoto2.2:${PORTSDIR}/graphics/libgphoto2
 
+USES=		fuse
 USE_BZIP2=	yes
-USE_FUSE=	yes
 USE_GNOME=	glib20
 GNU_CONFIGURE=	yes
 

Modified: head/net/openafs/Makefile
==============================================================================
--- head/net/openafs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/net/openafs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -75,7 +75,7 @@ CONFIGURE_ARGS=	--prefix=${PREFIX} \
 	${CONFIGURE_TARGET}
 
 .if ${PORT_OPTIONS:MFUSE}
-USE_FUSE=	yes
+USES+=		fuse
 PLIST_SUB+=	FUSE=""
 .else
 CONFIGURE_ARGS+=	--disable-fuse-client

Modified: head/security/truecrypt/Makefile
==============================================================================
--- head/security/truecrypt/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/security/truecrypt/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -22,7 +22,7 @@ RUN_DEPENDS=	sudo:${PORTSDIR}/security/s
 
 WRKSRC=		${WRKDIR}/truecrypt-${PORTVERSION}-source
 
-USE_FUSE=	yes
+USES=		fuse
 USE_GMAKE=	yes
 USE_ICONV=	yes
 RESTRICTED=	Downloading requires acceptance of license agreement

Modified: head/sysutils/afflib/Makefile
==============================================================================
--- head/sysutils/afflib/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/afflib/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,10 +1,5 @@
-# Ports collection makefile for: afflib
-#
-# Date created: 	15/02/2008
-# Whom: 		Chris Calvey <chris@securityforensics.co.uk>
-#
+# Created by: Chris Calvey <chris@securityforensics.co.uk>
 # $FreeBSD$
-#
 
 PORTNAME=	afflib
 PORTVERSION=	3.7.1
@@ -23,10 +18,9 @@ LIB_DEPENDS=	expat:${PORTSDIR}/textproc/
 USE_LDCONFIG=	yes
 USE_OPENSSL=	yes
 USE_ICONV=	yes
-USE_FUSE=	yes
+USES=		fuse pathfix
 USE_GMAKE=	yes
 GNU_CONFIGURE=	yes
-USE_GNOME=	gnomehack
 USE_AUTOTOOLS=	autoconf
 CONFIGURE_ARGS=	--enable-s3=yes --libdir=${PREFIX}
 CPPFLAGS+=	-DFUSE_USE_VERSION=26

Modified: head/sysutils/archivemount/Makefile
==============================================================================
--- head/sysutils/archivemount/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/archivemount/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for: archivemount
-# Date created: 2008-06-20
-# Whom: Evgeny Zhirnov <jirnov@gmail.com>
-#
+# Created by: Evgeny Zhirnov <jirnov@gmail.com>
 # $FreeBSD$
-#
 
 PORTNAME=	archivemount
 PORTVERSION=	0.6.1
@@ -19,7 +15,7 @@ MAN1=		archivemount.1
 GNU_CONFIGURE=	yes
 
 NO_INSTALL_MANPAGES=	yes
-USE_FUSE=	yes
+USES=		fuse
 USE_GMAKE=	yes
 USE_ICONV=	yes
 USE_PKGCONFIG=	yes

Modified: head/sysutils/avfs/Makefile
==============================================================================
--- head/sysutils/avfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/avfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	avfs
-# Date created:				2008-06-14
-# Whom:					Evgeny Zhirnov <jirnov@gmail.com>
-#
+# Created by: Evgeny Zhirnov <jirnov@gmail.com>
 # $FreeBSD$
-#
 
 PORTNAME=	avfs
 PORTVERSION=	0.9.9
@@ -22,7 +18,7 @@ NO_INSTALL_MANPAGES=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include -L${LOCALBASE}/lib -liconv
 
 GNU_CONFIGURE=	yes
-USE_FUSE=	yes
+USES=		fuse
 USE_GMAKE=	yes
 USE_BZIP2=	yes
 USE_LDCONFIG=	yes

Modified: head/sysutils/djmount/Makefile
==============================================================================
--- head/sysutils/djmount/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/djmount/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -15,7 +15,7 @@ BUILD_DEPENDS=	iconv:${PORTSDIR}/convert
 
 PLIST_FILES=	bin/${PORTNAME}
 GNU_CONFIGURE=	yes
-USE_FUSE=	yes
+USES=		fuse
 USE_GNOME=	pkgconfig
 CONFIGURE_ARGS=	--with-libiconv-prefix=${LOCALBASE} \
 		--with-fuse-prefix=${LOCALBASE} \

Modified: head/sysutils/fusefs-afuse/Makefile
==============================================================================
--- head/sysutils/fusefs-afuse/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-afuse/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,8 +1,5 @@
-# New ports collection makefile for:	afuse
-# Date created: 			03 March 2009
-# Whom:					Alexander Logvinov <ports@logvinov.com>
+# Created by: Alexander Logvinov <ports@logvinov.com>
 # $FreeBSD$
-#
 
 PORTNAME=	afuse
 PORTVERSION=	0.2
@@ -20,7 +17,7 @@ GNU_CONFIGURE=	yes
 PORTDOCS=	AUTHORS ChangeLog README
 PLIST_FILES=	bin/${PORTNAME}
 
-USE_FUSE=	yes
+USES=		fuse
 USE_PKGCONFIG=	yes
 
 MAN1=		afuse.1

Modified: head/sysutils/fusefs-chironfs/Makefile
==============================================================================
--- head/sysutils/fusefs-chironfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-chironfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	fusefs-chironfs
-# Date created:				2008-04-06
-# Whom:					Yen-Ming Lee <leeym@FreeBSD.org>
-#
+# Created by: Yen-Ming Lee <leeym@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	chironfs
 PORTVERSION=	1.1.1
@@ -18,7 +14,7 @@ COMMENT=	A FUSE based filesystem with re
 GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
-USE_FUSE=	yes
+USES=		fuse
 
 PLIST_FILES=	bin/chironfs bin/chirctl
 PORTDOCS=	*

Modified: head/sysutils/fusefs-cryptofs/Makefile
==============================================================================
--- head/sysutils/fusefs-cryptofs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-cryptofs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	fusefs-cryptofs
-# Date created:				2008-05-21
-# Whom:					Yen-Ming Lee <leeym@FreeBSD.org>
-#
+# Created by: Yen-Ming Lee <leeym@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	cryptofs
 PORTVERSION=	0.6.0
@@ -20,7 +16,7 @@ LIB_DEPENDS=	gcrypt.18:${PORTSDIR}/secur
 
 USE_BZIP2=	yes
 GNU_CONFIGURE=	yes
-USE_FUSE=	yes
+USES=		fuse
 
 PLIST_FILES=	bin/cryptofs
 

Modified: head/sysutils/fusefs-curlftpfs/Makefile
==============================================================================
--- head/sysutils/fusefs-curlftpfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-curlftpfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	fusefs-curlftpfs
-# Date created:		25 May 2006
-# Whom:			Andrew Pantyukhin <infofarmer@FreeBSD.org>
-#
+# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	curlftpfs
 PORTVERSION=	0.9.2
@@ -18,7 +14,7 @@ COMMENT=	Mount remote ftp directories
 LIB_DEPENDS=	curl.6:${PORTSDIR}/ftp/curl
 
 GNU_CONFIGURE=	yes
-USE_FUSE=	yes
+USES=		fuse
 USE_GNOME=	glib20
 MAN1=		${PORTNAME}.1
 PLIST_FILES=	bin/curlftpfs

Modified: head/sysutils/fusefs-encfs/Makefile
==============================================================================
--- head/sysutils/fusefs-encfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-encfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -23,7 +23,7 @@ CONFIGURE_ARGS=	--with-boost-serializati
 		--with-boost-filesystem=boost_filesystem
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
-USE_FUSE=	yes
+USES=		fuse
 USE_GMAKE=	yes
 USE_LDCONFIG=	yes
 

Modified: head/sysutils/fusefs-exfat/Makefile
==============================================================================
--- head/sysutils/fusefs-exfat/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-exfat/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -15,7 +15,7 @@ LICENSE=	GPLv3
 
 LIB_DEPENDS=	ublio:${PORTSDIR}/devel/libublio
 
-USE_FUSE=	yes
+USES=		fuse
 USE_ICONV=	yes
 USE_SCONS=	yes
 

Modified: head/sysutils/fusefs-ext4fuse/Makefile
==============================================================================
--- head/sysutils/fusefs-ext4fuse/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-ext4fuse/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -14,7 +14,7 @@ LICENSE=	GPLv2
 
 LIB_DEPENDS=	execinfo:${PORTSDIR}/devel/libexecinfo
 
-USE_FUSE=	yes
+USES=		fuse
 USE_GMAKE=	yes
 USE_PKGCONFIG=	build
 USE_GITHUB=	yes

Modified: head/sysutils/fusefs-funionfs/Makefile
==============================================================================
--- head/sysutils/fusefs-funionfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-funionfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	fusefs-funionfs
-# Date created:		2006-07-16
-# Whom:			Gea-Suan Lin <gslin@gslin.org>
-#
+# Created by: Gea-Suan Lin <gslin@gslin.org>
 # $FreeBSD$
-#
 
 PORTNAME=	funionfs
 PORTVERSION=	0.4.3
@@ -17,7 +13,7 @@ COMMENT=	Union filesystem for the FUSE d
 LDFLAGS+=	-L${LOCALBASE}/lib
 CFLAGS+=	-I${LOCALBASE}/include
 GNU_CONFIGURE=	yes
-USE_FUSE=	yes
+USES=		fuse
 
 MAN1=		funionfs.1
 PLIST_FILES=	bin/funionfs

Modified: head/sysutils/fusefs-fur/Makefile
==============================================================================
--- head/sysutils/fusefs-fur/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-fur/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -20,7 +20,7 @@ VCHMOD_DESC=	Fake hook for chmod that ju
 MAKE_JOBS_SAFE=	yes
 
 GNU_CONFIGURE=	yes
-USE_FUSE=	yes
+USES=		fuse
 USE_GMAKE=	yes
 USE_ICONV=	yes
 USE_PKGCONFIG=	build

Modified: head/sysutils/fusefs-fusexmp_fh/Makefile
==============================================================================
--- head/sysutils/fusefs-fusexmp_fh/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-fusexmp_fh/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,8 +1,5 @@
-# New ports collection makefile for:    fusefs-fusexmp_fh
-# Date created:         22 August 2010
-# Whom:                 buganini@gmail.com
+# Created by: buganini@gmail.com
 # $FreeBSD$
-#
 
 PORTNAME=	fusexmp_fh
 PORTVERSION=	2.7.4
@@ -17,8 +14,7 @@ COMMENT=	Dummy driver from fusefs-libs e
 
 
 USE_AUTOTOOLS=	libtool
-USE_FUSE=	yes
-USE_GNOME=	pkgconfig
+USES=		fuse pathfix
 USE_LDCONFIG=	yes
 USE_ICONV=	yes
 GNU_CONFIGURE=	yes

Modified: head/sysutils/fusefs-gnome-vfs/Makefile
==============================================================================
--- head/sysutils/fusefs-gnome-vfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-gnome-vfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	fusefs-gnome-vfs
-# Date created:		2006-12-23
-# Whom:			Michael Johnson <ahze@FreeBSD.org>
-#
+# Created by: Michael Johnson <ahze@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	fusefs-gnome-vfs
 PORTVERSION=	0.1
@@ -17,7 +13,7 @@ COMMENT=	Interface between FUSE and the 
 
 RPORTNAME=	gnome-vfs-fuse
 WRKSRC=		${WRKDIR}/${RPORTNAME}
-USE_FUSE=	yes
+USES=		fuse
 USE_GNOME=	gnomevfs2
 USE_GMAKE=	yes
 USE_PKGCONFIG=	yes

Modified: head/sysutils/fusefs-gstfs/Makefile
==============================================================================
--- head/sysutils/fusefs-gstfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-gstfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	fusefs-gstfs
-# Date created:		2008-12-26
-# Whom:			Dennis Herrmann <adox@mcx2.org>
-#
+# Created by: Dennis Herrmann <adox@mcx2.org>
 # $FreeBSD$
-#
 
 PORTNAME=	gstfs
 PORTVERSION=	0.1
@@ -15,7 +11,7 @@ PKGNAMEPREFIX=	fusefs-
 MAINTAINER=	dhn@FreeBSD.org
 COMMENT=	On-demand, transcoding filesystem (using GStreamer pipeline)
 
-USE_FUSE=	yes
+USES=		fuse
 USE_GNOME=	pkgconfig
 USE_GSTREAMER=	yes
 

Modified: head/sysutils/fusefs-gunzip/Makefile
==============================================================================
--- head/sysutils/fusefs-gunzip/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-gunzip/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	fusefs-gunzip
-# Date created:				2008-06-16
-# Whom:					Evgeny Zhirnov <jirnov@gmail.com>
-#
+# Created by: Evgeny Zhirnov <jirnov@gmail.com>
 # $FreeBSD$
-#
 
 PORTNAME=	fuse.gunzip
 PORTVERSION=	20070320
@@ -14,7 +10,7 @@ MAINTAINER=	jirnov@gmail.com
 COMMENT=	Fuse.gunzip provides transparent decompression of gzip compressed files
 
 WRKSRC=		${WRKDIR}/fuse.gunzip
-USE_FUSE=	yes
+USES=		fuse
 
 PLIST_FILES=	bin/fuse.gunzip
 

Modified: head/sysutils/fusefs-httpfs/Makefile
==============================================================================
--- head/sysutils/fusefs-httpfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-httpfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -15,7 +15,7 @@ COMMENT=	Fuse-based http filesystem
 WRKSRC=		${WRKDIR}/${PORTNAME}2-${VERSION}
 
 VERSION=	0.1.5
-USE_FUSE=	yes
+USES=		fuse
 USE_PKGCONFIG=	yes
 USE_GMAKE=	yes
 CFLAGS+=	-D__BSD_VISIBLE

Modified: head/sysutils/fusefs-ifuse/Makefile
==============================================================================
--- head/sysutils/fusefs-ifuse/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-ifuse/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:    fusefs-ifuse
-# Date created:                         09 October 2011
-# Whom:                                 Gabor Zahemszky
-#
+# Created by: Gabor Zahemszky
 # $FreeBSD$
-#
 
 PORTNAME=	ifuse
 PORTVERSION=	1.1.1
@@ -23,7 +19,7 @@ RUN_DEPENDS=	usbmuxd:${PORTSDIR}/comms/u
 
 SUB_FILES=	pkg-message
 USE_BZIP2=	yes
-USE_FUSE=	yes
+USES=		fuse
 USE_GNOME=	glib20 pkgconfig
 
 GNU_CONFIGURE=	yes

Modified: head/sysutils/fusefs-mhddfs/Makefile
==============================================================================
--- head/sysutils/fusefs-mhddfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-mhddfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	fusefs-mhddfs
-# Date created:		2009-06-25
-# Whom:			Oleg Alexeenkov <proler@gmail.com>
-#
+# Created by: Oleg Alexeenkov <proler@gmail.com>
 # $FreeBSD$
-#
 
 PORTNAME=	mhddfs
 PORTVERSION=	0.1.37
@@ -15,7 +11,7 @@ DISTNAME=	${PORTNAME}_${PORTVERSION}
 MAINTAINER=	proler@gmail.com
 COMMENT=	Multi HDD [FUSE] File System
 
-USE_FUSE=	yes
+USES=		fuse
 USE_GMAKE=	yes
 USE_PKGCONFIG=	build
 MAKE_ARGS=	WITHOUT_XATTR=1

Modified: head/sysutils/fusefs-mp3fs/Makefile
==============================================================================
--- head/sysutils/fusefs-mp3fs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-mp3fs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -18,7 +18,7 @@ FETCH_CMD=	fetch -Fpr
 
 CFLAGS+=	-L${LOCALBASE}/lib -I${LOCALBASE}/include
 GNU_CONFIGURE=	yes
-USE_FUSE=	yes
+USES=		fuse
 MAN1=		mp3fs.1
 PLIST_FILES=	bin/mp3fs
 

Modified: head/sysutils/fusefs-ntfs/Makefile
==============================================================================
--- head/sysutils/fusefs-ntfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-ntfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -16,9 +16,9 @@ LICENSE=	GPLv2
 
 CONFLICTS_BUILD=	bonobo-1.*
 CONFLICTS_INSTALL=	ntfsprogs-*
+USES=		fuse
 USE_LDCONFIG=	yes
 USE_AUTOTOOLS=	libtool
-USE_FUSE=	yes
 USE_ICONV=	yes
 USE_PKGCONFIG=	yes
 CONFIGURE_ARGS=	--exec-prefix=${PREFIX} --disable-mount-helper \

Modified: head/sysutils/fusefs-pod/Makefile
==============================================================================
--- head/sysutils/fusefs-pod/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-pod/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,8 +1,5 @@
-# New ports collection makefile for:	fusefs-pod
-# Date created: 			22 Aug 2007
-# Whom:					Max Khon
+# Created by: Max Khon
 # $FreeBSD$
-#
 
 PORTNAME=	pod
 PORTVERSION=	0.5.2
@@ -19,7 +16,7 @@ LIB_DEPENDS=	gpod.7:${PORTSDIR}/audio/li
 		tag.1:${PORTSDIR}/audio/taglib
 
 USE_BZIP2=	yes
-USE_FUSE=	yes
+USES=		fuse
 GNU_CONFIGURE=	yes
 MAN1=		fusepod.1
 PLIST_FILES=	bin/fusepod

Modified: head/sysutils/fusefs-rar2fs/Makefile
==============================================================================
--- head/sysutils/fusefs-rar2fs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-rar2fs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection Makefile for: rar2fs
-# Date created:        30 May 2011
-# Whom:                Joris Vandalon
-#
+# Created by: Joris Vandalon
 # $FreeBSD$
-#
 
 PORTNAME=	rar2fs
 PORTVERSION=	1.15.1
@@ -27,7 +23,7 @@ CONFIGURE_ARGS=	--with-fuse-lib=${LOCALB
 
 PLIST_FILES=	bin/${PORTNAME}
 MAN1=		rar2fs.1
-USE_FUSE=	yes
+USES=		fuse
 USE_GMAKE=	yes
 
 do-install:

Modified: head/sysutils/fusefs-s3fs/Makefile
==============================================================================
--- head/sysutils/fusefs-s3fs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-s3fs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -14,7 +14,7 @@ LIB_DEPENDS=	curl:${PORTSDIR}/ftp/curl \
 
 GNU_CONFIGURE=	yes
 PLIST_FILES=	bin/s3fs
-USE_FUSE=	yes
+USES=		fuse
 
 MAN1=		s3fs.1
 

Modified: head/sysutils/fusefs-smbnetfs/Makefile
==============================================================================
--- head/sysutils/fusefs-smbnetfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-smbnetfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -19,7 +19,7 @@ LIB_DEPENDS=	smbclient.0:${PORTSDIR}/net
 DOCSDIR+=	${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION}
 
 USE_BZIP2=	yes
-USE_FUSE=	yes
+USES=		fuse
 
 GNU_CONFIGURE=	yes
 CFLAGS+=	-I${LOCALBASE}/include

Modified: head/sysutils/fusefs-sqlfs/Makefile
==============================================================================
--- head/sysutils/fusefs-sqlfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-sqlfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,10 +1,6 @@
-# New ports collection makefile for:	fusefs-sqlfs
-# Date created:		2006-08-19
-# Whom:			Stanislav Sedov <ssedov@mbsd.msk.ru>
-#
+# Created by: Stanislav Sedov <ssedov@mbsd.msk.ru>
 # $MBSDlabs$
 # $FreeBSD$
-#
 
 PORTNAME=	sqlfs
 PORTVERSION=	1.1
@@ -18,7 +14,7 @@ DISTNAME=	lib${PORTNAME}-${PORTVERSION}
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	SQLite backed FUSE file system
 
-USE_FUSE=	yes
+USES=		fuse
 USE_SQLITE=	3
 
 .if !defined(NOPORTDOCS)

Modified: head/sysutils/fusefs-sshfs/Makefile
==============================================================================
--- head/sysutils/fusefs-sshfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-sshfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,8 +1,5 @@
-# New ports collection makefile for:	fusefs-sshfs
-# Date created: 			01 October 2005
-# Whom:					Anish Mistry
+# Created by: Anish Mistry
 # $FreeBSD$
-#
 
 PORTNAME=	sshfs
 PORTVERSION=	2.4
@@ -17,7 +14,7 @@ COMMENT=	Mount remote directories over s
 KMODDIR?=	${LOCALBASE}/modules
 
 GNU_CONFIGURE=	yes
-USE_FUSE=	yes
+USES=		fuse
 USE_GNOME=	glib20
 
 MAN1=	sshfs.1

Modified: head/sysutils/fusefs-unionfs/Makefile
==============================================================================
--- head/sysutils/fusefs-unionfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-unionfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	fusefs-unionfs
-# Date created:		2006-07-16
-# Whom:			Gea-Suan Lin <gslin@gslin.org>
-#
+# Created by: Gea-Suan Lin <gslin@gslin.org>
 # $FreeBSD$
-#
 
 PORTNAME=	unionfs
 PORTVERSION=	0.24
@@ -17,7 +13,7 @@ COMMENT=	FUSE based implementation of th
 
 PLIST_FILES=	bin/unionfs
 
-USE_FUSE=	yes
+USES=		fuse
 USE_BZIP2=	yes
 
 do-build:

Modified: head/sysutils/fusefs-wdfs/Makefile
==============================================================================
--- head/sysutils/fusefs-wdfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-wdfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	fusefs-wdfs
-# Date created:				13 June 2006
-# Whom:					Gyorgy Teubel <tgyurci@freemail.hu>
-#
+# Created by: Gyorgy Teubel <tgyurci@freemail.hu>
 # $FreeBSD$
-#
 
 PORTNAME=	wdfs
 PORTVERSION=	1.4.2
@@ -18,7 +14,7 @@ COMMENT=	Mount remote WedDAV directories
 LIB_DEPENDS=	neon.27:${PORTSDIR}/www/neon29
 
 GNU_CONFIGURE=	yes
-USE_FUSE=	yes
+USES=		fuse
 USE_GNOME=	glib20
 
 PLIST_FILES=	bin/wdfs

Modified: head/sysutils/fusefs-wikipediafs/Makefile
==============================================================================
--- head/sysutils/fusefs-wikipediafs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-wikipediafs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	fusefs-wikipediafs
-# Date created:		10 August 2007
-# Whom:			Andrew Pantyukhin <infofarmer@FreeBSD.org>
-#
+# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	wikipediafs
 PORTVERSION=	0.4
@@ -16,7 +12,7 @@ COMMENT=	Mount mediawikis
 
 RUN_DEPENDS=	py*-fusefs>=0.2:${PORTSDIR}/devel/py-fusefs
 
-USE_FUSE=	yes
+USES=		fuse
 USE_PYTHON=	yes
 USE_PYDISTUTILS=yes
 PORTDOCS=	AUTHORS ChangeLog HACKING NEWS README TODO

Modified: head/sysutils/fusefs-zip/Makefile
==============================================================================
--- head/sysutils/fusefs-zip/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/fusefs-zip/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -14,7 +14,7 @@ LIB_DEPENDS=	zip:${PORTSDIR}/archivers/l
 
 USE_GMAKE=	yes
 USE_PKGCONFIG=	build
-USE_FUSE=	yes
+USES=		fuse
 
 PLIST_FILES=	bin/${PORTNAME}
 MAN1=		${PORTNAME}.1

Modified: head/sysutils/moosefs-client/Makefile
==============================================================================
--- head/sysutils/moosefs-client/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/moosefs-client/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:    moosefs-client
-# Date created:         1 April 2010
-# Whom:                 Chifeng Qu <chifeng@gmail.com>
-#
+# Created by: Chifeng Qu <chifeng@gmail.com>
 # $FreeBSD$
-#
 
 PORTNAME=	moosefs
 PORTREVISION=	#
@@ -16,7 +12,7 @@ COMMENT=	Moosefs client tools
 
 DISTINFO_FILE=	${.CURDIR}/../moosefs-master/distinfo
 
-USE_FUSE=	yes
+USES=		fuse
 USE_PKGCONFIG=	yes
 
 MAN1=		mfstools.1 mfscheckfile.1 mfsdirinfo.1 mfsfileinfo.1 \

Modified: head/sysutils/mtpfs/Makefile
==============================================================================
--- head/sysutils/mtpfs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/mtpfs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -14,7 +14,7 @@ LIB_DEPENDS=	mtp:${PORTSDIR}/audio/libmt
 		id3tag:${PORTSDIR}/audio/libid3tag \
 		mad:${PORTSDIR}/audio/libmad
 
-USE_FUSE=	yes
+USES=		fuse
 USE_GNOME=	glib20
 GNU_CONFIGURE=	yes
 PLIST_FILES=	bin/mtpfs

Modified: head/sysutils/ntfsprogs/Makefile
==============================================================================
--- head/sysutils/ntfsprogs/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/ntfsprogs/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -15,7 +15,7 @@ CONFLICTS_INSTALL=	fusefs-ntfs-*
 
 USE_PKGCONFIG=	build
 USE_BZIP2=	yes
-USE_FUSE=	yes
+USES=		fuse
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include

Modified: head/sysutils/p5-Fuse/Makefile
==============================================================================
--- head/sysutils/p5-Fuse/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/p5-Fuse/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -15,7 +15,7 @@ COMMENT=	Write filesystems in Perl using
 PERL_CONFIGURE=	yes
 PORTSCOUT=	skipv:0.09_4
 
-USE_FUSE=	yes
+USES=		fuse
 USE_PKGCONFIG=	build
 
 MAN3=		Fuse.3

Modified: head/sysutils/udfclient/Makefile
==============================================================================
--- head/sysutils/udfclient/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/sysutils/udfclient/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:   udfclient
-# Date created:        3 January 2005
-# Whom:                Andriy Gapon <avg@icyb.net.ua>
-#
+# Created by: Andriy Gapon <avg@icyb.net.ua>
 # $FreeBSD$
-#
 
 PORTNAME=	udfclient
 PORTVERSION=	0.7.5
@@ -44,7 +40,7 @@ MASTER_SITES+=	http://www.icyb.net.ua/~a
 DISTFILES+=	${UDFCLIENTFS_NAME}-${UDFCLIENTFS_VERSION}.tgz:fuse
 EXTRA_PATCHES+=	${UDFCLIENTFS_DIR}/${UDFCLIENTFS_NAME}.patch
 
-USE_FUSE=	yes
+USES+=		fuse
 
 PLIST_FILES+=	bin/${UDFCLIENTFS_NAME}
 .endif

Modified: head/x11-wm/compiz/Makefile
==============================================================================
--- head/x11-wm/compiz/Makefile	Wed Mar  6 16:15:30 2013	(r313526)
+++ head/x11-wm/compiz/Makefile	Wed Mar  6 16:52:02 2013	(r313527)
@@ -144,7 +144,7 @@ PLIST_SUB+=	DBUS="@comment "
 
 .if ${PORT_OPTIONS:MFUSE}
 CONFIGURE_ARGS+=	--enable-fuse
-USE_FUSE=		yes
+USES+=			fuse
 PLIST_SUB+=		FUSE=""
 .else
 CONFIGURE_ARGS+=	--disable-fuse



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303061652.r26Gq2OD093842>