Import of pkgsrc-2015Q1

This commit is contained in:
2016-01-21 23:40:00 +01:00
committed by sambuc
parent 9a8c06dafb
commit 4af1cdf7a9
25114 changed files with 870539 additions and 795424 deletions
+4 -3
View File
@@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.49 2014/02/12 23:18:27 tron Exp $
# $NetBSD: Makefile,v 1.51 2015/01/25 15:54:30 wiedi Exp $
DISTNAME= vtun-3.0.2
PKGREVISION= 2
DISTNAME= vtun-3.0.3
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=vtun/}
@@ -19,6 +18,8 @@ CONFIGURE_ARGS+= --with-lzo-headers=${BUILDLINK_PREFIX.lzo}/include/lzo
CONFIGURE_ARGS+= --with-lzo-lib=${BUILDLINK_PREFIX.lzo}/lib
BUILD_TARGET= vtund
USE_TOOLS+= yacc
DOCDIR= ${PREFIX}/share/doc/vtun
EGDIR= ${PREFIX}/share/examples/vtun
LOCKDIR= /var/run/vtund
+7 -5
View File
@@ -1,8 +1,10 @@
$NetBSD: distinfo,v 1.11 2011/03/18 10:39:07 adam Exp $
$NetBSD: distinfo,v 1.13 2015/01/19 16:10:23 wiedi Exp $
SHA1 (vtun-3.0.2.tar.gz) = 6e2da196c70475e5d3750903b2dad032a7b1e8ac
RMD160 (vtun-3.0.2.tar.gz) = 6592251871f7e6b9a7e12b7e07ab0a700d816f57
Size (vtun-3.0.2.tar.gz) = 125777 bytes
SHA1 (patch-aa) = eb5326966d76ae0ad36e3f3b85380e59875a121e
SHA1 (vtun-3.0.3.tar.gz) = 7937e46420b5c2323f36774ab22e75e11c12da6c
RMD160 (vtun-3.0.3.tar.gz) = 4df179b523798930927103a4d91b428f941e25ed
Size (vtun-3.0.3.tar.gz) = 130051 bytes
SHA1 (patch-aa) = 2f570c4599923edeef31c6a2e7153f1fe05887c9
SHA1 (patch-ab) = 0af65f6b6d061d8beb8b2ac6a676ca095c057ccf
SHA1 (patch-ac) = 0f39700ab729d9481fe29e2d7e53566eff6add96
SHA1 (patch-configure) = 591ecb4242b0d3bb2eb0087a37315a322222312d
SHA1 (patch-vtun.h) = 832d3b97094885c8a10e752c7c8f5c86e08de967
+6 -8
View File
@@ -1,24 +1,22 @@
$NetBSD: patch-aa,v 1.5 2011/03/18 10:39:08 adam Exp $
$NetBSD: patch-aa,v 1.6 2014/04/20 21:03:25 adam Exp $
--- Makefile.in.orig 2008-01-07 22:35:55.000000000 +0000
--- Makefile.in.orig 2012-07-09 04:55:38.000000000 +0000
+++ Makefile.in
@@ -19,6 +19,6 @@
@@ -19,5 +19,5 @@
#
CC = @CC@
-CFLAGS = @CFLAGS@ @CPPFLAGS@
-LDFLAGS = @LIBS@
+CFLAGS = @CFLAGS@ @CPPFLAGS@ ${DEFS}
+LDFLAGS = @LDFLAGS@ @LIBS@
LDFLAGS = @LDFLAGS@ @LIBS@
YACC = @YACC@
@@ -42,5 +42,5 @@ PID_FILE = ${VAR_DIR}/run/vtund.pid
@@ -43,5 +43,5 @@ PID_FILE = ${VAR_DIR}/run/vtund.pid
CFG_FILE = ${ETC_DIR}/vtund.conf
STAT_DIR = ${VAR_DIR}/log/vtund
-LOCK_DIR = ${VAR_DIR}/lock/vtund
+LOCK_DIR = ${VAR_DIR}/run/vtund
DEFS = -DVTUN_CONFIG_FILE=\"$(CFG_FILE)\" -DVTUN_PID_FILE=\"$(PID_FILE)\" \
@@ -55,7 +55,4 @@ OBJS = main.o cfg_file.tab.o cfg_file.le
@@ -56,7 +56,4 @@ OBJS = main.o cfg_file.tab.o cfg_file.le
CONFIGURE_FILES = Makefile config.status config.cache config.h config.log
-%.o: %.c vtun.h lib.h
+14
View File
@@ -0,0 +1,14 @@
$NetBSD: patch-configure,v 1.1 2015/01/19 16:10:23 wiedi Exp $
help configure find blowfish headers from openssl
--- configure.orig 2009-03-29 10:08:48.000000000 +0000
+++ configure
@@ -5680,7 +5680,7 @@ echo "$as_me: checking for blowfish Libr
echo "$as_me:$LINENO: checking \"for blowfish.h\"" >&5
echo $ECHO_N "checking \"for blowfish.h\"... $ECHO_C" >&6
ac_hdr_found=no
- for p in $BLOWFISH_HDR_DIR /usr/include/ssl /usr/include/openssl /usr/include /usr/local/include /usr/local/ssl/include /usr/include/crypto; do
+ for p in $BLOWFISH_HDR_DIR $SSL_HDR_DIR /usr/include/ssl /usr/include/openssl /usr/include /usr/local/include /usr/local/ssl/include /usr/include/crypto; do
if test -n "$p"; then
dir="$p"
else
+14
View File
@@ -0,0 +1,14 @@
$NetBSD: patch-vtun.h,v 1.1 2014/04/20 21:03:25 adam Exp $
Fix for C99 standard.
--- vtun.h.orig 2014-04-20 20:52:19.000000000 +0000
+++ vtun.h
@@ -231,6 +231,6 @@ void client(struct vtun_host *host);
int tunnel(struct vtun_host *host);
int read_config(char *file);
struct vtun_host * find_host(char *host);
-inline void clear_nat_hack_flags(int svr);
+void clear_nat_hack_flags(int svr);
#endif