Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

7
net/jumpgate/DESCR Normal file
View File

@@ -0,0 +1,7 @@
Jumpgate is a TCP connection forwarder that provides many enhancements
and improvements over the existing programs that do the same thing. It
provides an interactive mode that queries the connected party for the
forwarding information it needs. Also, there is the option to log the
entire forwarded session in a file for later inspection. Furthermore,
it can log information about the forwarded session via the syslog(3)
facility.

20
net/jumpgate/Makefile Normal file
View File

@@ -0,0 +1,20 @@
# $NetBSD: Makefile,v 1.6 2012/10/23 17:18:30 asau Exp $
#
DISTNAME= jumpgate-0.7
CATEGORIES= net
MASTER_SITES= http://jumpgate.sourceforge.net/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= ${MASTER_SITES}
COMMENT= TCP connection forwarder with capture and syslog support
GNU_CONFIGURE= YES
INSTALLATION_DIRS= ${PKGMANDIR}/man8 sbin
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/jumpgate ${DESTDIR}${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/jumpgate.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8
.include "../../mk/bsd.pkg.mk"

3
net/jumpgate/PLIST Normal file
View File

@@ -0,0 +1,3 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2003/03/05 03:43:50 grant Exp $
sbin/jumpgate
man/man8/jumpgate.8

6
net/jumpgate/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.3 2005/11/03 17:11:34 tv Exp $
SHA1 (jumpgate-0.7.tar.gz) = 2edfe95746b94d30e325dc06fa489f3352107808
RMD160 (jumpgate-0.7.tar.gz) = 1414be6f18e8dc4b335bd96dfa35ed56e7bf805d
Size (jumpgate-0.7.tar.gz) = 40789 bytes
SHA1 (patch-aa) = 6d51f954f0ee02a255c1493de8d33d4838bec964

10
net/jumpgate/hacks.mk Normal file
View File

@@ -0,0 +1,10 @@
# $NetBSD: hacks.mk,v 1.1 2005/11/03 17:11:34 tv Exp $
###
### Define socklen_t on platforms without it, until maintainer adds
### this check to autoconf tests
###
.if ${OPSYS} == "Interix"
PKG_HACKS+= socklen-int
CPPFLAGS+= -Dsocklen_t=int
.endif

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-aa,v 1.1 2005/11/03 17:11:34 tv Exp $
--- jumpgate.h.orig 2002-11-29 16:00:12.000000000 -0500
+++ jumpgate.h
@@ -17,6 +17,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
+#include <sys/time.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>