From owner-svn-ports-head@FreeBSD.ORG Sun Dec 8 08:06:35 2013 Return-Path: Delivered-To: svn-ports-head@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 2BB12BEB; Sun, 8 Dec 2013 08:06:35 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 182671B02; Sun, 8 Dec 2013 08:06:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB886Y2d063245; Sun, 8 Dec 2013 08:06:34 GMT (envelope-from marcus@svn.freebsd.org) Received: (from marcus@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB886YOc063244; Sun, 8 Dec 2013 08:06:34 GMT (envelope-from marcus@svn.freebsd.org) Message-Id: <201312080806.rB886YOc063244@svn.freebsd.org> From: Joe Marcus Clarke Date: Sun, 8 Dec 2013 08:06:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335870 - head/net/netatalk3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 08:06:35 -0000 Author: marcus Date: Sun Dec 8 08:06:34 2013 New Revision: 335870 URL: http://svnweb.freebsd.org/changeset/ports/335870 Log: Add missing explicit dependency on libsunacl. PR: 184552 Submitted by: "Bradley T. Hughes" Modified: head/net/netatalk3/Makefile Modified: head/net/netatalk3/Makefile ============================================================================== --- head/net/netatalk3/Makefile Sun Dec 8 08:06:03 2013 (r335869) +++ head/net/netatalk3/Makefile Sun Dec 8 08:06:34 2013 (r335870) @@ -3,6 +3,7 @@ PORTNAME= netatalk PORTVERSION= 3.1.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= net MASTER_SITES= SF @@ -36,7 +37,7 @@ CONFIGURE_ARGS+= --enable-tcp-wrappers \ --with-libevent-header=${LOCALBASE}/include \ --with-libevent-lib=${LOCALBASE}/lib/event2 -OPTIONS_DEFINE=PAM KRB5 LDAP SENDFILE KERBEROS DTRACE DBUS MYSQL +OPTIONS_DEFINE=PAM KRB5 LDAP SENDFILE KERBEROS DTRACE DBUS MYSQL ACL OPTIONS_DEFAULT=KERBEROS DBUS OPTIONS_RADIO=ZEROCONF OPTIONS_RADIO_ZEROCONF=AVAHI MDNSRESPONDER @@ -47,6 +48,7 @@ KRB5_DESC= Enable Kerberos V UAM DTRACE_DESC= Enable DTrace support SENDFILE_DESC= Enable Sendfile support MYSQL_DESC= Enable MySQL CNID backend support +ACL_DESCR= Enable ACL support .include @@ -126,6 +128,13 @@ USE_MYSQL= yes CONFIGURE_ARGS+=--with-mysql-config=/nonexistent .endif +.if ${PORT_OPTIONS:MACL} +LIB_DEPENDS+= sunacl:${PORTSDIR}/sysutils/libsunacl +CONFIGURE_ARGS+=--with-acls +.else +CONFIGURE_ARGS+=--without-acls +.endif + .if ${OSVERSION} < 800031 PLIST_SUB+= ATFUNCS="@comment " .else