mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-06 01:57:40 +00:00
a8e986e9ce
* Add accounting interval option to radtunnel and sratunnel * Document pidfile option * Handle nmsg fragments Switch back to MASTER_SITES=FARSIGHT from GitHub Sponsored by: Farsight Security, Inc.
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= axa
|
|
PORTVERSION= 1.2.1
|
|
CATEGORIES= net dns
|
|
MASTER_SITES= FARSIGHT/${PORTNAME}/${PORTVERSION} LOCAL/truckman/farsight
|
|
DISTNAME= ${PORTNAME}_${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX}
|
|
|
|
MAINTAINER= truckman@FreeBSD.org
|
|
COMMENT= AXA library and tools
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/copyright
|
|
|
|
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
|
|
RUN_DEPENDS= sie-nmsg>0:${PORTSDIR}/net/sie-nmsg
|
|
|
|
WRKSRC= ${WRKDIR}/axa-tools
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= autoreconf gmake libedit libtool pathfix pkgconfig
|
|
CONFIGURE_SHELL= ${LOCALBASE}/bin/bash
|
|
USE_LDCONFIG= yes
|
|
USE_OPENSSL= yes
|
|
WITH_OPENSSL_PORT= yes
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOXYGEN
|
|
OPTIONS_DEFAULT=DOXYGEN
|
|
|
|
ALL_TARGET= all
|
|
INSTALL_TARGET= install-strip
|
|
DOXYGEN_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen
|
|
DOXYGEN_ALL_TARGET= html-local
|
|
|
|
LDFLAGS+= -lm
|
|
|
|
post-install-DOXYGEN-on:
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|