diff options
author | erwin <erwin@FreeBSD.org> | 2003-09-10 00:24:44 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2003-09-10 00:24:44 +0800 |
commit | ea61d6368b76b3fc6011d58e0c421a60e09820ca (patch) | |
tree | c13f378917381e187f227a89e28f1799a5de91d9 /net | |
parent | 5afe54f25b66137d32894dd468360d842e68f298 (diff) | |
download | freebsd-ports-gnome-ea61d6368b76b3fc6011d58e0c421a60e09820ca.tar.gz freebsd-ports-gnome-ea61d6368b76b3fc6011d58e0c421a60e09820ca.tar.zst freebsd-ports-gnome-ea61d6368b76b3fc6011d58e0c421a60e09820ca.zip |
- Distfile fetch problem fixed.
- Added a patch to fix a bug with command line options
(thanks to ITO Tsuyoshi <tsuyoshi@is.s.u-tokyo.ac.jp>)
- Bump portrevision.
PR: 56587
Submitted by: maintainer
Diffstat (limited to 'net')
-rw-r--r-- | net/nc6/Makefile | 6 | ||||
-rw-r--r-- | net/nc6/files/patch-ab | 11 |
2 files changed, 14 insertions, 3 deletions
diff --git a/net/nc6/Makefile b/net/nc6/Makefile index 66b0b9ffe96c..281533b0ac9f 100644 --- a/net/nc6/Makefile +++ b/net/nc6/Makefile @@ -7,10 +7,10 @@ PORTNAME= nc6 PORTVERSION= 0.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net ipv6 -MASTER_SITES= ftp://ftp.deepspace6.net/pub/sources/nc6/ \ - http://ftp.deepspace6.net/pub/sources/nc6/ +MASTER_SITES= ftp://ftp.deepspace6.net/pub/ds6/sources/nc6/ \ + http://ftp.deepspace6.net/pub/ds6/sources/nc6/ MAINTAINER= filippo@widestore.net COMMENT= Netcat clone with IPv6 support diff --git a/net/nc6/files/patch-ab b/net/nc6/files/patch-ab new file mode 100644 index 000000000000..4f2d85d934b8 --- /dev/null +++ b/net/nc6/files/patch-ab @@ -0,0 +1,11 @@ +--- src/parser.c.orig Thu Mar 27 18:09:49 2003 ++++ src/parser.c Thu Sep 4 22:11:43 2003 +@@ -148,7 +148,7 @@ + _verbosity_level = 0; + + /* option recognition loop */ +- while ((c = getopt_long(argc, argv, "46ehlnp:q:s:uvw:x", ++ while ((c = getopt_long(argc, argv, "46e:hlnp:q:s:uvw:x", + long_options, &option_index)) >= 0) + { + switch (c) { |