diff options
author | kleink <kleink@pkgsrc.org> | 2000-06-06 07:21:46 +0000 |
---|---|---|
committer | kleink <kleink@pkgsrc.org> | 2000-06-06 07:21:46 +0000 |
commit | d62ec855f3f365950439f42d408423ba4808d969 (patch) | |
tree | c45a5d5324e32233456d813a3a4a6f26216c14d7 /net/vtun | |
parent | d02914d440d050a0bb792c308208317567b2632b (diff) | |
download | pkgsrc-d62ec855f3f365950439f42d408423ba4808d969.tar.gz |
Update to vtun-2.3; besides a vtund.conf(5) manual page, changes include:
ver 2.3:
Fixed incorrect error handling in UDP and TCP drivers. Makefile
improvements. RPM package fixes. Persist mode fixes. Fixed a
couple of memory and file descriptor leaks. Correct closing of
Solaris TUN device.
Added man page for the configuration file. Documentation update.
Team members list update.
Diffstat (limited to 'net/vtun')
-rw-r--r-- | net/vtun/Makefile | 4 | ||||
-rw-r--r-- | net/vtun/files/md5 | 4 | ||||
-rw-r--r-- | net/vtun/files/patch-sum | 4 | ||||
-rw-r--r-- | net/vtun/patches/patch-aa | 16 | ||||
-rw-r--r-- | net/vtun/pkg/PLIST | 3 |
5 files changed, 16 insertions, 15 deletions
diff --git a/net/vtun/Makefile b/net/vtun/Makefile index 0fe568d52ad..4d618265627 100644 --- a/net/vtun/Makefile +++ b/net/vtun/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.3 2000/05/25 13:08:03 kleink Exp $ +# $NetBSD: Makefile,v 1.4 2000/06/06 07:21:46 kleink Exp $ # -DISTNAME= vtun-2.2 +DISTNAME= vtun-2.3 CATEGORIES= net MASTER_SITES= http://vtun.sourceforge.net/ diff --git a/net/vtun/files/md5 b/net/vtun/files/md5 index 9bcdaffa147..375244eba20 100644 --- a/net/vtun/files/md5 +++ b/net/vtun/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.2 2000/05/25 13:08:03 kleink Exp $ +$NetBSD: md5,v 1.3 2000/06/06 07:21:46 kleink Exp $ -MD5 (vtun-2.2.tar.gz) = 652697a422dd33c27dc161e23c958978 +MD5 (vtun-2.3.tar.gz) = e0bc652994fc77e4d1d8fc998787e3cd diff --git a/net/vtun/files/patch-sum b/net/vtun/files/patch-sum index 688a17816a2..37898088a47 100644 --- a/net/vtun/files/patch-sum +++ b/net/vtun/files/patch-sum @@ -1,3 +1,3 @@ -$NetBSD: patch-sum,v 1.1.1.1 2000/02/07 01:37:34 hubertf Exp $ +$NetBSD: patch-sum,v 1.2 2000/06/06 07:21:47 kleink Exp $ -MD5 (patch-aa) = dd99bbe34bf6d787e632869334d87332 +MD5 (patch-aa) = a355bcdab4a3b776fa435513fdb018b6 diff --git a/net/vtun/patches/patch-aa b/net/vtun/patches/patch-aa index eeff5acd13b..0ab11b3beb0 100644 --- a/net/vtun/patches/patch-aa +++ b/net/vtun/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.1.1.1 2000/02/07 01:37:35 hubertf Exp $ +$NetBSD: patch-aa,v 1.2 2000/06/06 07:21:47 kleink Exp $ ---- Makefile.in.BAK Fri Feb 4 04:59:50 2000 -+++ Makefile.in Fri Feb 4 05:03:27 2000 -@@ -24,7 +24,7 @@ +--- Makefile.in.orig Mon May 29 15:35:11 2000 ++++ Makefile.in Tue Jun 6 08:58:08 2000 +@@ -36,7 +36,7 @@ SBIN_DIR = @sbindir@ MAN_DIR = @mandir@ ETC_DIR = @sysconfdir@ @@ -11,11 +11,11 @@ $NetBSD: patch-aa,v 1.1.1.1 2000/02/07 01:37:35 hubertf Exp $ PID_FILE = ${VAR_DIR}/run/vtund.pid CFG_FILE = ${ETC_DIR}/vtund.conf -@@ -110,6 +110,7 @@ +@@ -88,6 +88,7 @@ install_config: - $(INSTALL) -d -m 755 -o root -g 0 $(ETC_DIR) -+ $(INSTALL) -m 600 -o root -g 0 vtund.conf $(ETC_DIR)/vtund.conf.example; \ + $(INSTALL) -d -m 755 $(INSTALL_OWNER) $(ETC_DIR) ++ $(INSTALL) -m 600 $(INSTALL_OWNER) vtund.conf $(ETC_DIR)/vtund.conf.example; \ if [ ! -f $(ETC_DIR)/vtund.conf ]; then \ - $(INSTALL) -m 600 -o root -g 0 vtund.conf $(ETC_DIR); \ + $(INSTALL) -m 600 $(INSTALL_OWNER) vtund.conf $(ETC_DIR); \ fi diff --git a/net/vtun/pkg/PLIST b/net/vtun/pkg/PLIST index 75798fca353..0ed5de6deaa 100644 --- a/net/vtun/pkg/PLIST +++ b/net/vtun/pkg/PLIST @@ -1,6 +1,7 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2000/02/07 01:37:34 hubertf Exp $ +@comment $NetBSD: PLIST,v 1.2 2000/06/06 07:21:47 kleink Exp $ sbin/vtund etc/vtund.conf.example @exec if [ ! -f ${PREFIX}/etc/vtund.conf ]; then echo "Installing example /vtund.conf in ${PREFIX}/etc ..." ; /usr/bin/install -c -o root -g wheel -m 0600 %D/etc/vtund.conf.example ${PREFIX}/etc/vtund.conf ; fi +man/man5/vtund.conf.5 man/man8/vtund.8 man/man8/vtun.8 |