mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
44 lines
956 B
Makefile
44 lines
956 B
Makefile
PORTNAME= sniproxy
|
|
DISTVERSION= 0.6.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= krion@FreeBSD.org
|
|
COMMENT= Proxy that routes based on TLS server name extension
|
|
WWW= https://github.com/dlundquist/sniproxy
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libev.so:devel/libev \
|
|
libpcre.so:devel/pcre \
|
|
libudns.so:dns/udns
|
|
|
|
USES= autoreconf:build gettext pkgconfig
|
|
|
|
SUB_FILES= pkg-message
|
|
USE_RC_SUBR= sniproxy
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= dlundquist
|
|
|
|
GNU_CONFIGURE= yes
|
|
GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_FILES= share/man/man5/sniproxy.conf.5.gz \
|
|
share/man/man8/sniproxy.8.gz \
|
|
sbin/sniproxy \
|
|
"@sample etc/sniproxy.conf.sample"
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && ${SH} autogen.sh
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/var/tmp/|/var/run/|' ${WRKSRC}/${PORTNAME}.conf
|
|
|
|
post-install::
|
|
${INSTALL_DATA} ${WRKSRC}/sniproxy.conf ${STAGEDIR}${PREFIX}/etc/sniproxy.conf.sample
|
|
|
|
.include <bsd.port.mk>
|