1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00
freebsd-ports/dns/dnsproxy/Makefile
Baptiste Daroussin b564653452 Only use libevent2
Remove libevent as libevent2 is providing a good compatibility interface as well
as providing better performances.
Remove custom patches from libevent2 and install libevent2 the regular way
Mark ports abusing private fields of the libevent1 API as broken
Import a patch from fedora to have honeyd working with libevent2
Remove most of the patches necessary to find the custom installation we used to
have for libevent2

With hat:	portmgr
2014-07-24 13:32:58 +00:00

32 lines
761 B
Makefile

# Created by: Clement Laforet <clement@FreeBSD.org>
# $FreeBSD$
PORTNAME= dnsproxy
PORTVERSION= 1.16
PORTREVISION= 1
CATEGORIES= dns
MASTER_SITES= http://www.wolfermann.org/
MAINTAINER= ports@FreeBSD.org
COMMENT= proxy for DNS queries
LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2
GNU_CONFIGURE= yes
USE_RC_SUBR= dnsproxy
PLIST_FILES= sbin/dnsproxy etc/${PORTNAME}/dnsproxy.conf.sample \
man/man1/dnsproxy.1.gz
SUB_FILES= pkg-message
PLIST_DIRS= %%ETCDIR%%
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/dnsproxy ${STAGEDIR}${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/dnsproxy.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
@${MKDIR} ${STAGEDIR}${ETCDIR}
${INSTALL_DATA} ${WRKSRC}/dnsproxy.conf ${STAGEDIR}${ETCDIR}/dnsproxy.conf.sample
.include <bsd.port.mk>