From owner-svn-ports-all@FreeBSD.ORG Sat Apr 19 16:33:48 2014 Return-Path: Delivered-To: svn-ports-all@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 EBBBBAC8; Sat, 19 Apr 2014 16:33:48 +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 D82C71304; Sat, 19 Apr 2014 16:33:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3JGXm97035527; Sat, 19 Apr 2014 16:33:48 GMT (envelope-from jpaetzel@svn.freebsd.org) Received: (from jpaetzel@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3JGXmgT035526; Sat, 19 Apr 2014 16:33:48 GMT (envelope-from jpaetzel@svn.freebsd.org) Message-Id: <201404191633.s3JGXmgT035526@svn.freebsd.org> From: Josh Paetzel Date: Sat, 19 Apr 2014 16:33:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351600 - head/dns/py-bonjour 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.17 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: Sat, 19 Apr 2014 16:33:49 -0000 Author: jpaetzel Date: Sat Apr 19 16:33:48 2014 New Revision: 351600 URL: http://svnweb.freebsd.org/changeset/ports/351600 QAT: https://qat.redports.org/buildarchive/r351600/ Log: Add needed dependancies for this port. Due to the FreeNAS build system being very....simplistic the deps weren't needed in the port there, however to work properly in FreeBSD they of course are needed. Noticed by: swills Pointyhat to: jpaetzel Modified: head/dns/py-bonjour/Makefile Modified: head/dns/py-bonjour/Makefile ============================================================================== --- head/dns/py-bonjour/Makefile Sat Apr 19 16:09:43 2014 (r351599) +++ head/dns/py-bonjour/Makefile Sat Apr 19 16:33:48 2014 (r351600) @@ -15,4 +15,19 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes +OPTIONS_SINGLE= ZEROCONF +OPTIONS_SINGLE_ZEROCONF= AVAHI MDNSRESPONDER +OPTIONS_DEFAULT= MDNSRESPONDER + +.include + +.if ${PORT_OPTIONS:MAVAHI} +BUILD_DEPENDS+= libdns_sd.so:${PORTSDIR}/net/avahi-libdns +.endif +.if ${PORT_OPTIONS:MMDNSRESPONDER} +BUILD_DEPENDS+= libdns_sd.so:${PORTSDIR}/net/mDNSResponder +.endif + +RUN_DEPENDS:= ${BUILD_DEPENDS} + .include