f18538b989
Changes: https://github.com/libevent/libevent/releases/tag/release-2.1.11-stable ABI: https://abi-laboratory.pro/tracker/timeline/libevent/ PR: 239599 Reported by: GitHub (watch releases) Approved by: zeising (maintainer) MFH: 2019Q3 (maybe security, partially restores 2.1.8 ABI) Differential Revision: https://reviews.freebsd.org/D21133
34 lines
752 B
Makefile
34 lines
752 B
Makefile
# Created by: Clement Laforet <clement@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dnsproxy
|
|
PORTVERSION= 1.17
|
|
PORTREVISION= 3
|
|
CATEGORIES= dns
|
|
MASTER_SITES= http://www.wolfermann.org/
|
|
|
|
MAINTAINER= krion@FreeBSD.org
|
|
COMMENT= Proxy for DNS queries
|
|
|
|
LICENSE= MIT
|
|
|
|
LIB_DEPENDS= libevent.so:devel/libevent
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USES= groff
|
|
USE_RC_SUBR= dnsproxy
|
|
|
|
PLIST_FILES= sbin/dnsproxy etc/${PORTNAME}/dnsproxy.conf.sample \
|
|
man/man1/dnsproxy.1.gz
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
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>
|