Date: Mon, 7 Jul 2014 13:54:24 +0000 (UTC) From: Tijl Coosemans <tijl@FreeBSD.org> 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 Message-ID: <201407071354.s67DsOO6095947@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@dns-lab.com> # $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 <bsd.port.pre.mk> +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 <bsd.port.post.mk> +.include <bsd.port.mk> 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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407071354.s67DsOO6095947>