From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 8 22:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E1291BF for ; Thu, 8 May 2014 22:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 495A1AD7 for ; Thu, 8 May 2014 22:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s48MA0qc062204 for ; Thu, 8 May 2014 22:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s48MA0IE062203; Thu, 8 May 2014 22:10:00 GMT (envelope-from gnats) Resent-Date: Thu, 8 May 2014 22:10:00 GMT Resent-Message-Id: <201405082210.s48MA0IE062203@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC7FAF37 for ; Thu, 8 May 2014 22:04:51 +0000 (UTC) Received: from smtpout6.timeweb.ru (smtpout6.timeweb.ru [92.53.117.39]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 83A46A9C for ; Thu, 8 May 2014 22:04:51 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1WiWQq-00033Y-52; Fri, 09 May 2014 02:04:48 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id C37EB136; Fri, 9 May 2014 02:04:47 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 259E61E85E; Fri, 9 May 2014 02:04:46 +0400 (MSK) Message-Id: <20140508220447.259E61E85E@hades.panopticon> Date: Fri, 9 May 2014 02:04:46 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/189486: [PATCH] sysutils/automount: disable EXFAT by default Cc: vermaden@interia.pl X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 May 2014 22:10:01 -0000 >Number: 189486 >Category: ports >Synopsis: [PATCH] sysutils/automount: disable EXFAT by default >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu May 08 22:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 10.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260807: Fri Jan 17 13:14:28 MSK >Description: - Use new options features - Disable EXFAT by default: fusefs-exfat has license restrictions which prevents distribution it package and, while EXFAT option is enabled in automount, would prevent automount package distribution as well. Disabling it by default would fix this, still allowing users building from ports to enable exfat option (or install fusefs-exfat by hand) Port maintainer (vermaden@interia.pl) is cc'd. Generated with FreeBSD Port Tools 1.02 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- automount-1.4.3.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 353359) +++ Makefile (working copy) @@ -17,25 +17,14 @@ 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 +EXFAT_RUN_DEPENDS= fusefs-exfat>=0:${PORTSDIR}/sysutils/fusefs-exfat -.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 - do-install: ${INSTALL_SCRIPT} ${WRKSRC}/automount ${STAGEDIR}${PREFIX}/sbin ${INSTALL_DATA} ${WRKSRC}/automount_devd.conf ${STAGEDIR}${PREFIX}/etc/devd/automount_devd.conf --- automount-1.4.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: