diff options
author | rpaulo <rpaulo@pkgsrc.org> | 2006-02-28 01:29:39 +0000 |
---|---|---|
committer | rpaulo <rpaulo@pkgsrc.org> | 2006-02-28 01:29:39 +0000 |
commit | 56db98aa9488dcb602afe5a64cbf40486b89ea48 (patch) | |
tree | 30491fea186be51026e2848b5a4bcedbceafee77 /net/miredo/Makefile | |
parent | 58d4b906acc8ab6035c00007679b869688a38e2d (diff) | |
download | pkgsrc-56db98aa9488dcb602afe5a64cbf40486b89ea48.tar.gz |
Miredo is an Unix daemon program which mostly implements the
"Teredo: Tunneling IPv6 over UDP through NATs" Internet proposed
standard (RFC 4380). It can provide either client or relay
functionality. A separate program, miredo-server is also included in
the package; it consists of a Teredo server.
Miredo can be used to provide IPv6 connectivity to users behind NAT
which do not support IPv6, and not even proto-41 forwarding. For this
to work, users need to have a Teredo client running on their system.
That can be Miredo itself on Linux/FreeBSD/OpenBSD/NetBSD.
--
Will (maybe) only work on NetBSD-current of an hour ago.
Thanks to Hubert and Amitai for help with this one.
Diffstat (limited to 'net/miredo/Makefile')
-rw-r--r-- | net/miredo/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/net/miredo/Makefile b/net/miredo/Makefile new file mode 100644 index 00000000000..daec624b179 --- /dev/null +++ b/net/miredo/Makefile @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.1.1.1 2006/02/28 01:29:39 rpaulo Exp $ + +DISTNAME= miredo-0.8.0 +CATEGORIES= net +MASTER_SITES= http://www.remlab.net/files/miredo/v0.8/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= rpaulo@NetBSD.org +HOMEPAGE= http://www.simphalempin.com/dev/miredo/ +COMMENT= Teredo IPv6 tunneling + +GNU_CONFIGURE= yes + +EGDIR= ${PREFIX}/share/examples/miredo +CONF_FILES= ${EGDIR}/miredo.conf-dist ${PKG_SYSCONFDIR}/miredo.conf + +INSTALLATION_DIRS= share/examples/miredo + +post-install: + ${INSTALL_DATA} ${WRKSRC}/misc/miredo.conf-dist ${EGDIR} + ${INSTALL_DATA} ${WRKSRC}/misc/miredo-server.conf-dist ${EGDIR} + +.include "../../net/libpcap/buildlink3.mk" +.include "../../mk/pthread.buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |