From owner-svn-ports-all@FreeBSD.ORG Thu Nov 22 12:28:09 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A66BE59F; Thu, 22 Nov 2012 12:28:09 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 731508FC13; Thu, 22 Nov 2012 12:28:09 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAMCS9Pk075607; Thu, 22 Nov 2012 12:28:09 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAMCS9Cx075604; Thu, 22 Nov 2012 12:28:09 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201211221228.qAMCS9Cx075604@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 22 Nov 2012 12:28:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r307648 - in head/dns: . ldns py-ldns 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.14 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: Thu, 22 Nov 2012 12:28:09 -0000 Author: ehaupt Date: Thu Nov 22 12:28:09 2012 New Revision: 307648 URL: http://svnweb.freebsd.org/changeset/ports/307648 Log: - Add dns/py-ldns, a stub port of dns/ldns with python bindings enabled. This is required for the upcoming dns/sshfp update - Register CONFLICTS and PKGNAMEPREFIX in dns/ldns Feature safe: yes Added: head/dns/py-ldns/ head/dns/py-ldns/Makefile (contents, props changed) Modified: head/dns/Makefile head/dns/ldns/Makefile Modified: head/dns/Makefile ============================================================================== --- head/dns/Makefile Thu Nov 22 12:27:50 2012 (r307647) +++ head/dns/Makefile Thu Nov 22 12:28:09 2012 (r307648) @@ -137,6 +137,7 @@ SUBDIR += py-dnspython SUBDIR += py-easyzone SUBDIR += py-idnkit2 + SUBDIR += py-ldns SUBDIR += py-namebench SUBDIR += py-publicsuffix SUBDIR += py-twistedNames Modified: head/dns/ldns/Makefile ============================================================================== --- head/dns/ldns/Makefile Thu Nov 22 12:27:50 2012 (r307647) +++ head/dns/ldns/Makefile Thu Nov 22 12:28:09 2012 (r307648) @@ -29,6 +29,10 @@ PYLDNS_DESC= ${PYTHON_DESC} .if ${PORT_OPTIONS:MPYLDNS} USE_PYTHON= yes +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +CONFLICTS= ldns-[0-9]* +.else +CONFLICTS= py*-ldns-[0-9]* .endif ALL_TARGET= all Added: head/dns/py-ldns/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/py-ldns/Makefile Thu Nov 22 12:28:09 2012 (r307648) @@ -0,0 +1,8 @@ +# Created by: Emanuel Haupt +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../../dns/ldns + +WITH_PYLDNS= yes + +.include "${MASTERDIR}/Makefile"