mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
66a4783dc8
From pkg/COMMENT: A circuit-level firewall/proxy. From kris@FreeBSD.org: It's a BSD-licensed SOCKS4/5/MS_PROXY server/client, which exceeds in functionality the (restrictively licensed) NEC SOCKS5 referenece implementation. PR: 14442 Submitted by: Anders Nordby <anders@fix.no>
34 lines
1.0 KiB
Makefile
34 lines
1.0 KiB
Makefile
# Ports collection makefile for: Dante
|
|
# Version required: 1.1.0
|
|
# Date created: 20 October 1999
|
|
# Whom: Anders Nordby <anders@fix.no>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= dante-1.1.0
|
|
CATEGORIES= security net
|
|
MASTER_SITES= ftp://ftp.inet.no/pub/socks/ \
|
|
http://www.freenix.no/~anders/ \
|
|
ftp://totem.fix.no/pub/mirrors/misc/
|
|
|
|
MAINTAINER= anders@fix.no
|
|
|
|
USE_LIBTOOL= yes
|
|
CONFIGURE_ARGS= --with-socks-conf=${PREFIX}/etc/socks.conf \
|
|
--with-sockd-conf=${PREFIX}/etc/sockd.conf
|
|
|
|
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
|
|
${INSTALL} -d -m 555 ${PREFIX}/share/doc/dante
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/README* ${PREFIX}/share/doc/dante
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/rfc* ${PREFIX}/share/doc/dante
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/FAQ ${PREFIX}/share/doc/dante
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/SOCKS4.protocol ${PREFIX}/share/doc/dante
|
|
|
|
.include <bsd.port.mk>
|