From owner-svn-ports-all@FreeBSD.ORG Tue Oct 7 12:14:43 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4D0D1B2; Tue, 7 Oct 2014 12:14:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C11576EF; Tue, 7 Oct 2014 12:14:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CEh8Q051066; Tue, 7 Oct 2014 12:14:43 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CEhlt051065; Tue, 7 Oct 2014 12:14:43 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410071214.s97CEhlt051065@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 7 Oct 2014 12:14:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370313 - head/sysutils/automount X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:14:43 -0000 Author: amdmi3 Date: Tue Oct 7 12:14:43 2014 New Revision: 370313 URL: https://svnweb.freebsd.org/changeset/ports/370313 QAT: https://qat.redports.org/buildarchive/r370313/ Log: - Disable EXFAT by default to allow package building (not possible otherwise due to sysutils/fusefs-exfat licensing restrictions) - Use options helpers PR: 189486 Submitted by: amdmi3 Approved by: vermaden@interia.pl Modified: head/sysutils/automount/Makefile Modified: head/sysutils/automount/Makefile ============================================================================== --- head/sysutils/automount/Makefile Tue Oct 7 12:10:39 2014 (r370312) +++ head/sysutils/automount/Makefile Tue Oct 7 12:14:43 2014 (r370313) @@ -17,24 +17,13 @@ PLIST_FILES= sbin/automount etc/devd/aut NO_BUILD= yes OPTIONS_DEFINE= NTFS3G EXT4 EXFAT -OPTIONS_DEFAULT= NTFS3G EXT4 EXFAT +OPTIONS_DEFAULT= NTFS3G EXT4 NTFS3G_DESC= Enable NTFS write support with ntfs-3g over FUSE +NTFS3G_RUN_DEPENDS= fusefs-ntfs>=0:${PORTSDIR}/sysutils/fusefs-ntfs EXT4_DESC= Support EXT4 filesystem +EXT4_RUN_DEPENDS= fusefs-ext4fuse>=0:${PORTSDIR}/sysutils/fusefs-ext4fuse EXFAT_DESC= Support Microsoft exFAT filesystem - -.include - -.if ${PORT_OPTIONS:MNTFS3G} -RUN_DEPENDS+= fusefs-ntfs>=0:${PORTSDIR}/sysutils/fusefs-ntfs -.endif - -.if ${PORT_OPTIONS:MEXT4} -RUN_DEPENDS+= fusefs-ext4fuse>=0:${PORTSDIR}/sysutils/fusefs-ext4fuse -.endif - -.if ${PORT_OPTIONS:MEXFAT} -RUN_DEPENDS+= fusefs-exfat>=0:${PORTSDIR}/sysutils/fusefs-exfat -.endif +EXFAT_RUN_DEPENDS= fusefs-exfat>=0:${PORTSDIR}/sysutils/fusefs-exfat do-install: ${INSTALL_SCRIPT} ${WRKSRC}/automount ${STAGEDIR}${PREFIX}/sbin