diff options
author | minskim <minskim> | 2005-11-16 02:04:39 +0000 |
---|---|---|
committer | minskim <minskim> | 2005-11-16 02:04:39 +0000 |
commit | 217719dd5815a85d1db2a2a3e5a55ad60e56726f (patch) | |
tree | b1becf68805aeff4e63238b21216f8a1fd5dab80 /net | |
parent | f8798973cee1056a4e8e3cc988db896fead6584a (diff) | |
download | pkgsrc-217719dd5815a85d1db2a2a3e5a55ad60e56726f.tar.gz |
Import nstx from pkgsrc-wip. Packaged by pancake.
NSTX (the Nameserver Transfer Protocol) makes it possible to create IP
tunnels using DNS queries and replies for IP packet encapsulation
where IP traffic other than DNS isn't possible.
Diffstat (limited to 'net')
-rw-r--r-- | net/nstx/DESCR | 3 | ||||
-rw-r--r-- | net/nstx/Makefile | 19 | ||||
-rw-r--r-- | net/nstx/PLIST | 5 | ||||
-rw-r--r-- | net/nstx/distinfo | 6 | ||||
-rw-r--r-- | net/nstx/patches/patch-aa | 10 |
5 files changed, 43 insertions, 0 deletions
diff --git a/net/nstx/DESCR b/net/nstx/DESCR new file mode 100644 index 00000000000..eed59bc7e38 --- /dev/null +++ b/net/nstx/DESCR @@ -0,0 +1,3 @@ +NSTX (the Nameserver Transfer Protocol) makes it possible to create IP +tunnels using DNS queries and replies for IP packet encapsulation +where IP traffic other than DNS isn't possible. diff --git a/net/nstx/Makefile b/net/nstx/Makefile new file mode 100644 index 00000000000..83c44c6a4cd --- /dev/null +++ b/net/nstx/Makefile @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/11/16 02:04:39 minskim Exp $ +# + +DISTNAME= nstx-1.1-beta6 +CATEGORIES= net +MASTER_SITES= http://nstx.dereference.de/nstx/ +EXTRACT_SUFX= .tgz + +MAINTAINER= pancake@phreaker.net +HOMEPAGE= http://nstx.dereference.de/nstx/ +COMMENT= Nameserver Transfer Protocol + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/nstxcd ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/nstxd ${PREFIX}/bin + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/nstx + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/nstx/ + +.include "../../mk/bsd.pkg.mk" diff --git a/net/nstx/PLIST b/net/nstx/PLIST new file mode 100644 index 00000000000..ae6b893eb72 --- /dev/null +++ b/net/nstx/PLIST @@ -0,0 +1,5 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2005/11/16 02:04:39 minskim Exp $ +bin/nstxd +bin/nstxcd +share/doc/nstx/README +@dirrm share/doc/nstx diff --git a/net/nstx/distinfo b/net/nstx/distinfo new file mode 100644 index 00000000000..219b9fcc037 --- /dev/null +++ b/net/nstx/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2005/11/16 02:04:39 minskim Exp $ + +SHA1 (nstx-1.1-beta6.tgz) = 82d339f499c6e625708371f5f729b7f7bf38a6a0 +RMD160 (nstx-1.1-beta6.tgz) = 1392d7f96c9668cc40b65fa30cbaf8cf1b64feb2 +Size (nstx-1.1-beta6.tgz) = 20458 bytes +SHA1 (patch-aa) = 89d95177ab802da016d42de15bf118941e9843b0 diff --git a/net/nstx/patches/patch-aa b/net/nstx/patches/patch-aa new file mode 100644 index 00000000000..6829429848d --- /dev/null +++ b/net/nstx/patches/patch-aa @@ -0,0 +1,10 @@ +$NetBSD: patch-aa,v 1.1.1.1 2005/11/16 02:04:39 minskim Exp $ + +--- Makefile.orig 2004-06-27 14:46:38.000000000 -0700 ++++ Makefile +@@ -1,5 +1,3 @@ +-CFLAGS += -ggdb -Wall -Werror +- + NSTXD_SRCS = nstxd.c nstx_encode.c nstx_pstack.c nstx_dns.c nstx_tuntap.c nstx_queue.c + NSTXD_OBJS = ${NSTXD_SRCS:.c=.o} + |