diff options
author | jadawin <jadawin@FreeBSD.org> | 2008-05-03 17:20:44 +0800 |
---|---|---|
committer | jadawin <jadawin@FreeBSD.org> | 2008-05-03 17:20:44 +0800 |
commit | d5a5ce1e2b530c1482a0367227337576ad9b99cd (patch) | |
tree | df233bb57551674c76646607a5988b07ef22c072 /net | |
parent | 5cb0411b6caa9f72e8efff18af106e1e13a40ae2 (diff) | |
download | freebsd-ports-graphics-d5a5ce1e2b530c1482a0367227337576ad9b99cd.tar.gz freebsd-ports-graphics-d5a5ce1e2b530c1482a0367227337576ad9b99cd.tar.zst freebsd-ports-graphics-d5a5ce1e2b530c1482a0367227337576ad9b99cd.zip |
scnc is a SSL Capable Netcat with SSL support, TCP and UDP
proxying and IPV4/IPV6 proxying features.
WWW: http://gomor.org/bin/view/GomorOrg/SslNetcat
PR: ports/123300
Submitted by: Sofian Brabez <sbrabez at gmail.com>
Approved by: tabthorpe (mentor)
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/scnc/Makefile | 36 | ||||
-rw-r--r-- | net/scnc/distinfo | 3 | ||||
-rw-r--r-- | net/scnc/pkg-descr | 4 |
4 files changed, 44 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index a798cea3a9f..aee6a984bcd 100644 --- a/net/Makefile +++ b/net/Makefile @@ -812,6 +812,7 @@ SUBDIR += scamper SUBDIR += scand SUBDIR += scapy + SUBDIR += scnc SUBDIR += scr_ipfm SUBDIR += sdl_net SUBDIR += seda diff --git a/net/scnc/Makefile b/net/scnc/Makefile new file mode 100644 index 00000000000..a2739b1289e --- /dev/null +++ b/net/scnc/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: scnc +# Date created: 27 April 2008 +# Whom: Sofian Brabez <sbrabez@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= scnc +PORTVERSION= 1.00 +CATEGORIES= net security +MASTER_SITES= http://gomor.org/files/ \ + http://knkorp.info/patches/freebsd/ +#DISTFILES= ${PORTNAME} +DISTNAME= ${PORTNAME} +EXTRACT_SUFX= # none +DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= sbrabez@gmail.com +COMMENT= SSL Capable Netcat + +RUN_DEPENDS= ${SITE_PERL}/IO/Socket/SSL.pm:${PORTSDIR}/security/p5-IO-Socket-SSL \ + ${SITE_PERL}/Net/Telnet.pm:${PORTSDIR}/net/p5-Net-Telnet \ + ${SITE_PERL}/IO/Socket/INET6.pm:${PORTSDIR}/net/p5-IO-INET6 +BUILD_DEPENDS= ${RUN_DEPENDS} + +PLIST_FILES= bin/${PORTNAME} +NO_BUILD= yes + +do-extract: + @${MKDIR} ${WRKSRC} + @${CP} ${_DISTDIR}/scnc ${WRKSRC} + +do-install: + @${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/${PORTNAME} + +.include <bsd.port.mk> diff --git a/net/scnc/distinfo b/net/scnc/distinfo new file mode 100644 index 00000000000..51b1d82e59b --- /dev/null +++ b/net/scnc/distinfo @@ -0,0 +1,3 @@ +MD5 (scnc-1.00/scnc) = 1a465d90c6788de1da6a1932cc16c6ab +SHA256 (scnc-1.00/scnc) = c5c02a373c31c3a2ef0d5c3a1d5066713bddb2997518fbb1972bc4118343eb96 +SIZE (scnc-1.00/scnc) = 14620 diff --git a/net/scnc/pkg-descr b/net/scnc/pkg-descr new file mode 100644 index 00000000000..ffa181fca9b --- /dev/null +++ b/net/scnc/pkg-descr @@ -0,0 +1,4 @@ +scnc is a SSL Capable Netcat with SSL support, TCP and UDP +proxying and IPV4/IPV6 proxying features. + +WWW: http://gomor.org/bin/view/GomorOrg/SslNetcat |