diff options
author | rh <rh@pkgsrc.org> | 2000-10-15 17:29:14 +0000 |
---|---|---|
committer | rh <rh@pkgsrc.org> | 2000-10-15 17:29:14 +0000 |
commit | 5ef34a1319ccbc85003ea4a212297ac6e16b157f (patch) | |
tree | d2e26df8ad90c96f5e923c081037563915b6e420 /net/dante/Makefile | |
parent | 2b33f9b3a2ce2241fab093f33d5296eca4ed2059 (diff) | |
download | pkgsrc-5ef34a1319ccbc85003ea4a212297ac6e16b157f.tar.gz |
Initial import of dante-1.1.4, a BSD-licensed socks 4/5 proxy suite.
Diffstat (limited to 'net/dante/Makefile')
-rw-r--r-- | net/dante/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/net/dante/Makefile b/net/dante/Makefile new file mode 100644 index 00000000000..9ee56f306ec --- /dev/null +++ b/net/dante/Makefile @@ -0,0 +1,26 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/10/15 17:29:14 rh Exp $ +# + +DISTNAME= dante-1.1.4 +CATEGORIES= net security +MASTER_SITES= ftp://ftp.inet.no/pub/socks/ + +MAINTAINER= rh@netbsd.org +HOMEPAGE= http://www.inet.no/dante/ + +CONFLICTS= socks4-* + +GNU_CONFIGURE= YES +USE_LIBTOOL= YES + +LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig +CONFIGURE_ARGS+= --with-socks-conf=${PREFIX}/etc/socks.conf +CONFIGURE_ARGS+= --with-sockd-conf=${PREFIX}/etc/sockd.conf + +post-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/dante +.for cfg in sockd.conf socks-simple.conf socks.conf + ${INSTALL_DATA} ${WRKSRC}/example/${cfg} ${PREFIX}/share/examples/dante +.endfor + +.include "../../mk/bsd.pkg.mk" |