From owner-svn-ports-head@FreeBSD.ORG Mon Dec 15 22:38:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA8527DB; Mon, 15 Dec 2014 22:38:17 +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 D610F6A3; Mon, 15 Dec 2014 22:38:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBFMcHTW051734; Mon, 15 Dec 2014 22:38:17 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBFMcG7B051728; Mon, 15 Dec 2014 22:38:16 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201412152238.sBFMcG7B051728@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Mon, 15 Dec 2014 22:38:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374771 - in head/net: . axa X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Dec 2014 22:38:18 -0000 Author: pawel Date: Mon Dec 15 22:38:15 2014 New Revision: 374771 URL: https://svnweb.freebsd.org/changeset/ports/374771 QAT: https://qat.redports.org/buildarchive/r374771/ Log: Advanced Exchange Access (AXA) is a suite of tools and library code that brings the capabilities of the Farsight Security Information Exchange (SIE) right to a remote user's network. WWW: https://github.com/farsightsec/axa PR: 195695 Submitted by: truckman@FreeBSD.org Added: head/net/axa/ head/net/axa/Makefile (contents, props changed) head/net/axa/distinfo (contents, props changed) head/net/axa/pkg-descr (contents, props changed) head/net/axa/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Mon Dec 15 22:25:25 2014 (r374770) +++ head/net/Makefile Mon Dec 15 22:38:15 2014 (r374771) @@ -38,6 +38,7 @@ SUBDIR += avahi-libdns SUBDIR += avahi-qt4 SUBDIR += avahi-sharp + SUBDIR += axa SUBDIR += babeld SUBDIR += beacon SUBDIR += beanstalkd Added: head/net/axa/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/axa/Makefile Mon Dec 15 22:38:15 2014 (r374771) @@ -0,0 +1,49 @@ +# $FreeBSD$ + +PORTNAME= axa +PORTVERSION= 1.0.0 +CATEGORIES= net dns + +MAINTAINER= truckman@FreeBSD.org +COMMENT= AXA library and tools + +LICENSE= APACHE20 + +BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash \ + sie-nmsg>0:${PORTSDIR}/net/sie-nmsg +LIB_DEPENDS= libprotobuf-c.so:${PORTSDIR}/devel/protobuf-c \ + libnmsg.so:${PORTSDIR}/net/nmsg \ + libwdns.so:${PORTSDIR}/dns/wdns + +USE_GITHUB= yes +GH_ACCOUNT= farsightsec +GH_COMMIT= bf9c038 +GH_TAGNAME= ${GH_COMMIT} + +GNU_CONFIGURE= yes +USES= gmake libtool pathfix pkgconfig +USE_AUTOTOOLS= aclocal autoconf autoheader automake libtoolize +AUTOMAKE_ARGS= --add-missing +CONFIGURE_SHELL= ${LOCALBASE}/bin/bash +INSTALL_TARGET= install-strip +USE_LDCONFIG= yes + +PORTDOCS= * + +OPTIONS_DEFINE= DOXYGEN +OPTIONS_DEFAULT=DOXYGEN + +.include + +ALL_TARGET= all +.if ${PORT_OPTIONS:MDOXYGEN} +BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen +ALL_TARGET+= html-local +.endif + +.if ${PORT_OPTIONS:MDOXYGEN} +post-install: + (cd ${WRKSRC}/doc/doxygen && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR}) +.endif + +.include Added: head/net/axa/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/axa/distinfo Mon Dec 15 22:38:15 2014 (r374771) @@ -0,0 +1,2 @@ +SHA256 (axa-1.0.0.tar.gz) = fe118b1270a3d39c967070f57873911fc4369927848f8565368afea9e6ea4fde +SIZE (axa-1.0.0.tar.gz) = 150904 Added: head/net/axa/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/axa/pkg-descr Mon Dec 15 22:38:15 2014 (r374771) @@ -0,0 +1,5 @@ +Advanced Exchange Access (AXA) is a suite of tools and library code +that brings the capabilities of the Farsight Security Information +Exchange (SIE) right to a remote user's network. + +WWW: https://github.com/farsightsec/axa Added: head/net/axa/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/axa/pkg-plist Mon Dec 15 22:38:15 2014 (r374771) @@ -0,0 +1,24 @@ +bin/radtool +bin/sratool +bin/sratunnel +%%ETCDIR%%/fields +include/axa/axa.h +include/axa/axa_endian.h +include/axa/bits.h +include/axa/client.h +include/axa/dns_walk.h +include/axa/fields.h +include/axa/open_nmsg_out.h +include/axa/protocol.h +include/axa/rad_mod.h +include/axa/socket.h +include/axa/trie.h +include/axa/wire.h +lib/libaxa.a +lib/libaxa.so +lib/libaxa.so.0 +lib/libaxa.so.0.0.0 +libdata/pkgconfig/libaxa.pc +man/man1/radtool.1.gz +man/man1/sratool.1.gz +man/man1/sratunnel.1.gz