9aac569eaa
Where necessary add $FreeBSD$ to the file No PORTREVISION bump necessary because this is a no-op
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# Ports collection makefile for: Dante
|
|
# Date created: 20 October 1999
|
|
# Whom: Anders Nordby <anders@fix.no>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dante
|
|
PORTVERSION= 1.3.2
|
|
CATEGORIES= net security
|
|
MASTER_SITES= ftp://ftp.inet.no/pub/socks/ \
|
|
ftp://ftp.nuug.no/pub/anders/distfiles/ \
|
|
http://atreides.freenix.no/~anders/ \
|
|
ftp://ftp.inet.no/pub/socks/old/
|
|
|
|
MAINTAINER= anders@FreeBSD.org
|
|
COMMENT= A circuit-level firewall/proxy
|
|
|
|
CONFLICTS= socks5-[0-9]*
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-socks-conf=${PREFIX}/etc/socks.conf \
|
|
--with-sockd-conf=${PREFIX}/etc/sockd.conf
|
|
CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
|
|
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_RC_SUBR= sockd
|
|
|
|
LICENSE= BSD
|
|
|
|
MAN1= socksify.1
|
|
MAN5= sockd.conf.5 socks.conf.5
|
|
MAN8= sockd.8
|
|
|
|
post-install:
|
|
@${INSTALL_DATA} ${WRKSRC}/example/socks.conf ${PREFIX}/etc/socks.conf.example
|
|
@${INSTALL_DATA} ${WRKSRC}/example/sockd.conf ${PREFIX}/etc/sockd.conf.example
|
|
.if !defined(NOPORTDOCS)
|
|
${INSTALL} -d -m 555 ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/README* ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/rfc* ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/SOCKS4*.protocol ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|