From owner-svn-ports-all@FreeBSD.ORG Tue Jul 1 14:21: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 D2083BE4; Tue, 1 Jul 2014 14:21: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 A54D6266E; Tue, 1 Jul 2014 14:21: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 s61ELml0004782; Tue, 1 Jul 2014 14:21:48 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s61ELlxp004775; Tue, 1 Jul 2014 14:21:47 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201407011421.s61ELlxp004775@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 1 Jul 2014 14:21:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r360016 - in head/dns: curvedns dhisd posadis py-adns 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 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, 01 Jul 2014 14:21:48 -0000 Author: bapt Date: Tue Jul 1 14:21:47 2014 New Revision: 360016 URL: http://svnweb.freebsd.org/changeset/ports/360016 QAT: https://qat.redports.org/buildarchive/r360016/ Log: Use modern LIB_DEPENDS With hat: portmgr Modified: head/dns/curvedns/Makefile head/dns/dhisd/Makefile head/dns/posadis/Makefile head/dns/py-adns/Makefile Modified: head/dns/curvedns/Makefile ============================================================================== --- head/dns/curvedns/Makefile Tue Jul 1 14:21:27 2014 (r360015) +++ head/dns/curvedns/Makefile Tue Jul 1 14:21:47 2014 (r360016) @@ -11,7 +11,7 @@ DISTNAME= curvedns-0.88-unstable MAINTAINER= freebsd@dns-lab.com COMMENT= Forwarder adding DNSCurve to an authoritative nameserver -LIB_DEPENDS= ev.4:${PORTSDIR}/devel/libev +LIB_DEPENDS= libev.so:${PORTSDIR}/devel/libev RUN_DEPENDS= setuidgid:${PORTSDIR}/sysutils/daemontools BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash Modified: head/dns/dhisd/Makefile ============================================================================== --- head/dns/dhisd/Makefile Tue Jul 1 14:21:27 2014 (r360015) +++ head/dns/dhisd/Makefile Tue Jul 1 14:21:47 2014 (r360016) @@ -10,7 +10,7 @@ MASTER_SITES= ftp://ftp.dhis.org/pub/dhi MAINTAINER= marius@FreeBSD.org COMMENT= DHIS server for dynamic updates on the server using specific engines -LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp +LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp CFLAGS+= -I${PREFIX}/include LDFLAGS+= -L${PREFIX}/lib Modified: head/dns/posadis/Makefile ============================================================================== --- head/dns/posadis/Makefile Tue Jul 1 14:21:27 2014 (r360015) +++ head/dns/posadis/Makefile Tue Jul 1 14:21:47 2014 (r360016) @@ -10,7 +10,7 @@ MASTER_SITES= SF/${PORTNAME}/OldFiles MAINTAINER= ports@FreeBSD.org COMMENT= Domain Name Server (DNS) implementation -LIB_DEPENDS= poslib.0:${PORTSDIR}/devel/poslib +LIB_DEPENDS= libposlib.so:${PORTSDIR}/devel/poslib USE_AUTOTOOLS= autoconf libltdl libtool USE_LDCONFIG= yes Modified: head/dns/py-adns/Makefile ============================================================================== --- head/dns/py-adns/Makefile Tue Jul 1 14:21:27 2014 (r360015) +++ head/dns/py-adns/Makefile Tue Jul 1 14:21:47 2014 (r360016) @@ -12,7 +12,7 @@ DISTNAME= adns-python-${PORTVERSION} MAINTAINER= m.tsatsenko@gmail.com COMMENT= Python Interface to adns, the asynchronous DNS library -LIB_DEPENDS= adns.1:${PORTSDIR}/dns/adns +LIB_DEPENDS= libadns.so:${PORTSDIR}/dns/adns PROJECTHOST= adns-python USE_PYTHON= yes