freebsd-ports/dns/autotrust/Makefile
Sergey A. Osokin 69a365881d Fix build on 6.4-STABLE by add pthread's compiler/linker flags.
Bump PORTREVISION.

Reported by:	pointyhat via erwin@
Approved by:	maintainer aka jaap at NLnetLabs dot nl
2010-01-18 20:02:27 +00:00

44 lines
1.1 KiB
Makefile

# New ports collection makefile for: autotrust
# Date created: 2010-01-09
# Whom: Jaap Akkerhuis <jaap@nlnetlabs.nl>
#
# $FreeBSD$
#
PORTNAME= autotrust
PORTVERSION= 0.3.1
PORTREVISION= 2
CATEGORIES= dns
MASTER_SITES= http://www.nlnetlabs.nl/downloads/autotrust/
MAINTAINER= jaap@bartok.nlnetlabs.nl
COMMENT= A tool to automatically update DNSSEC trust anchors
LIB_DEPENDS+= ldns.1:${PORTSDIR}/dns/ldns \
unbound.2:${PORTSDIR}/dns/unbound
GNU_CONFIGURE= yes
CONFIGURE_ENV= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
CFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
MAN8= autotrust.8
PLIST_FILES= sbin/autotrust \
etc/autotrust/autotrust.conf.sample
PLIST_DIRS= etc/autotrust
do-patch:
${REINPLACE_CMD} \
'45s!=!\?=!; \
46s!^\(CFLAGS \)\(= -I.\) @CFLAGS@!\1+\2!' \
${WRKSRC}/Makefile.in
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin
${MKDIR} ${ETCDIR}
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf.sample ${ETCDIR}
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${PREFIX}/man/man8
.include <bsd.port.mk>