From owner-svn-ports-all@FreeBSD.ORG Mon Jul 7 13:54:25 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 70BCA32E; Mon, 7 Jul 2014 13:54:25 +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 51D4427E2; Mon, 7 Jul 2014 13:54:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s67DsPB8095956; Mon, 7 Jul 2014 13:54:25 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s67DsOO6095947; Mon, 7 Jul 2014 13:54:24 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201407071354.s67DsOO6095947@svn.freebsd.org> From: Tijl Coosemans Date: Mon, 7 Jul 2014 13:54:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361088 - in head: dns/curvedns dns/dnscrypt-proxy net-im/tox net/libzmq4 security/libsodium 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: Mon, 07 Jul 2014 13:54:25 -0000 Author: tijl Date: Mon Jul 7 13:54:23 2014 New Revision: 361088 URL: http://svnweb.freebsd.org/changeset/ports/361088 QAT: https://qat.redports.org/buildarchive/r361088/ Log: - Convert security/libsodium to USES=libtool and bump dependent ports - Run "make check" from regression-test target - dns/curvedns: white space fixes Modified: head/dns/curvedns/Makefile head/dns/dnscrypt-proxy/Makefile head/net-im/tox/Makefile head/net/libzmq4/Makefile head/security/libsodium/Makefile head/security/libsodium/pkg-plist Modified: head/dns/curvedns/Makefile ============================================================================== --- head/dns/curvedns/Makefile Mon Jul 7 13:53:40 2014 (r361087) +++ head/dns/curvedns/Makefile Mon Jul 7 13:54:23 2014 (r361088) @@ -1,14 +1,19 @@ # Created by: Leo Vandewoestijne # $FreeBSD$ -PORTNAME= curvedns -PORTVERSION= 0.88.b -PORTREVISION= 3 -CATEGORIES= dns -DISTNAME= curvedns-0.88-unstable +PORTNAME= curvedns +PORTVERSION= 0.88.b +PORTREVISION= 4 +CATEGORIES= dns +DISTNAME= curvedns-0.88-unstable MAINTAINER= vsevolod@FreeBSD.org -COMMENT= Forwarder adding DNSCurve to an authoritative nameserver +COMMENT= Forwarder adding DNSCurve to an authoritative nameserver + +LIB_DEPENDS= libev.so:${PORTSDIR}/devel/libev \ + libsodium.so:${PORTSDIR}/security/libsodium +RUN_DEPENDS= setuidgid:${PORTSDIR}/sysutils/daemontools +BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash USE_GITHUB= yes GH_ACCOUNT= vstakhov @@ -17,22 +22,15 @@ GH_COMMIT= a88e27e ALL_TARGET= targets -LIB_DEPENDS= libev.so:${PORTSDIR}/devel/libev \ - libsodium.so:${PORTSDIR}/security/libsodium -RUN_DEPENDS= setuidgid:${PORTSDIR}/sysutils/daemontools -BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash - CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -USERS= bind -GROUPS= bind -CURVE_UID= 53 -CURVE_GID= 53 - -SUB_FILES= pkg-message +USERS= bind +GROUPS= bind +CURVE_UID= 53 +CURVE_GID= 53 -.include +SUB_FILES= pkg-message do-install: ${INSTALL_PROGRAM} ${WRKSRC}/curvedns ${WRKSRC}/curvedns-keygen ${STAGEDIR}${PREFIX}/bin/ @@ -43,4 +41,4 @@ do-install: ${ECHO_CMD} ${CURVE_GID} > ${STAGEDIR}${PREFIX}/etc/curvedns/env/GID ${CHMOD} 0700 ${STAGEDIR}${PREFIX}/etc/curvedns/env -.include +.include Modified: head/dns/dnscrypt-proxy/Makefile ============================================================================== --- head/dns/dnscrypt-proxy/Makefile Mon Jul 7 13:53:40 2014 (r361087) +++ head/dns/dnscrypt-proxy/Makefile Mon Jul 7 13:54:23 2014 (r361088) @@ -3,7 +3,7 @@ PORTNAME= dnscrypt-proxy PORTVERSION= 1.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= dns MASTER_SITES= http://download.dnscrypt.org/dnscrypt-proxy/ \ http://www.dns-lab.com/downloads/dnscrypt-proxy/ Modified: head/net-im/tox/Makefile ============================================================================== --- head/net-im/tox/Makefile Mon Jul 7 13:53:40 2014 (r361087) +++ head/net-im/tox/Makefile Mon Jul 7 13:54:23 2014 (r361088) @@ -3,6 +3,7 @@ PORTNAME= toxcore PORTVERSION= 0.140630 +PORTREVISION= 1 CATEGORIES= net-im net-p2p MAINTAINER= thierry@FreeBSD.org Modified: head/net/libzmq4/Makefile ============================================================================== --- head/net/libzmq4/Makefile Mon Jul 7 13:53:40 2014 (r361087) +++ head/net/libzmq4/Makefile Mon Jul 7 13:54:23 2014 (r361088) @@ -2,7 +2,7 @@ PORTNAME= libzmq4 PORTVERSION= 4.0.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= http://download.zeromq.org/ DISTNAME= zeromq-${DISTVERSION} Modified: head/security/libsodium/Makefile ============================================================================== --- head/security/libsodium/Makefile Mon Jul 7 13:53:40 2014 (r361087) +++ head/security/libsodium/Makefile Mon Jul 7 13:54:23 2014 (r361088) @@ -2,6 +2,7 @@ PORTNAME= libsodium PORTVERSION= 0.4.5 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://download.dnscrypt.org/libsodium/releases/ @@ -11,22 +12,19 @@ COMMENT= Library to build higher-level c LICENSE= ISCL GNU_CONFIGURE= yes +USES= libtool pathfix pkgconfig USE_LDCONFIG= yes -USES= pkgconfig OPTIONS_DEFINE= DOCS PORTDOCS= AUTHORS README.markdown THANKS -post-patch: - @${REINPLACE_CMD} -e 's|$$(libdir)/pkgconfig|${PREFIX}/libdata/pkgconfig|' \ - ${WRKSRC}/Makefile.in - -post-build: - cd ${WRKSRC} && ${MAKE} check - post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}/ +regression-test: build + @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \ + ${MAKEFILE} ${MAKE_ARGS} check) + .include Modified: head/security/libsodium/pkg-plist ============================================================================== --- head/security/libsodium/pkg-plist Mon Jul 7 13:53:40 2014 (r361087) +++ head/security/libsodium/pkg-plist Mon Jul 7 13:54:23 2014 (r361088) @@ -51,8 +51,8 @@ include/sodium/randombytes_sysrandom.h include/sodium/utils.h include/sodium/version.h lib/libsodium.a -lib/libsodium.la lib/libsodium.so -lib/libsodium.so.9 +lib/libsodium.so.4 +lib/libsodium.so.4.5.0 libdata/pkgconfig/libsodium.pc @dirrmtry include/sodium