mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-06 11:41:52 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
# Ports collection makefile for: Dante
|
|
# Date created: 20 October 1999
|
|
# Whom: Anders Nordby <anders@fix.no>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dante
|
|
PORTVERSION= 1.1.19
|
|
CATEGORIES= net security
|
|
MASTER_SITES= ftp://ftp.inet.no/pub/socks/ \
|
|
ftp://ftp.nuug.no/pub/anders/distfiles/ \
|
|
http://atreides.freenix.no/~anders/
|
|
|
|
MAINTAINER= anders@FreeBSD.org
|
|
COMMENT= A circuit-level firewall/proxy
|
|
|
|
CONFLICTS= socks5-[0-9]*
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --with-socks-conf=${PREFIX}/etc/socks.conf \
|
|
--with-sockd-conf=${PREFIX}/etc/sockd.conf
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
|
|
LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_RC_SUBR= sockd.sh
|
|
|
|
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}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/faq.tex ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|