diff options
author | garga <garga@FreeBSD.org> | 2005-10-06 19:50:34 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2005-10-06 19:50:34 +0800 |
commit | 38c471b07e07eb966506e7e792eeb4ec8ab61322 (patch) | |
tree | 9a43d834df5918a3e293f9dfc38148f291391c2c | |
parent | 607417e796eb258d02d13b8fa7517da5f786e2f2 (diff) | |
download | freebsd-ports-gnome-38c471b07e07eb966506e7e792eeb4ec8ab61322.tar.gz freebsd-ports-gnome-38c471b07e07eb966506e7e792eeb4ec8ab61322.tar.zst freebsd-ports-gnome-38c471b07e07eb966506e7e792eeb4ec8ab61322.zip |
xboxproxy is an xbox system link proxy that bridges xbox network traffic
across multiple separate networks. This allows an XBox to communicate via
system link across multiple networks (eg. two people in different states).
It also supports bridging of the Apple Rendezvous protocol for sharing of
iTunes music shares across different Layer 3 networks..
WWW: http://www.csh.rit.edu/~psionic/projects/xboxproxy/
PR: ports/86969
Submitted by: Antony Mawer <ports@mawer.org>
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/xboxproxy/Makefile | 30 | ||||
-rw-r--r-- | net/xboxproxy/distinfo | 2 | ||||
-rw-r--r-- | net/xboxproxy/pkg-descr | 7 |
4 files changed, 40 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 4c588214a272..c7b86112bbe3 100644 --- a/net/Makefile +++ b/net/Makefile @@ -909,6 +909,7 @@ SUBDIR += xbms SUBDIR += xbone SUBDIR += xbone-gui + SUBDIR += xboxproxy SUBDIR += xferstats SUBDIR += xicq SUBDIR += xipdump diff --git a/net/xboxproxy/Makefile b/net/xboxproxy/Makefile new file mode 100644 index 000000000000..4587e5ea1109 --- /dev/null +++ b/net/xboxproxy/Makefile @@ -0,0 +1,30 @@ +# New ports collection makefile for: xboxproxy +# Date created: 6 October 2005 +# Whom: Antony Mawer <ports@mawer.org> +# +# $FreeBSD$ + +PORTNAME= xboxproxy +PORTVERSION= 1.9 +CATEGORIES= net +MASTER_SITES= http://www.csh.rit.edu/~psionic/projects/xboxproxy/ +DISTNAME= proxy-${PORTVERSION} + +MAINTAINER= ports@mawer.org +COMMENT= A proxy for the XBox system link protocol + +BUILD_DEPENDS= ${LOCALBASE}/lib/libnet.a:${PORTSDIR}/net/libnet + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --program-prefix=xbox +USE_GMAKE= yes + +PLIST_FILES= bin/xboxproxy + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Doesn't build on FreeBSD < 5.x" +.endif + +.include <bsd.port.post.mk> diff --git a/net/xboxproxy/distinfo b/net/xboxproxy/distinfo new file mode 100644 index 000000000000..95646a607a8f --- /dev/null +++ b/net/xboxproxy/distinfo @@ -0,0 +1,2 @@ +MD5 (proxy-1.9.tar.gz) = ac9bbf18833959399b0214bf97899221 +SIZE (proxy-1.9.tar.gz) = 119703 diff --git a/net/xboxproxy/pkg-descr b/net/xboxproxy/pkg-descr new file mode 100644 index 000000000000..848573631868 --- /dev/null +++ b/net/xboxproxy/pkg-descr @@ -0,0 +1,7 @@ +xboxproxy is an xbox system link proxy that bridges xbox network traffic +across multiple separate networks. This allows an XBox to communicate via +system link across multiple networks (eg. two people in different states). +It also supports bridging of the Apple Rendezvous protocol for sharing of +iTunes music shares across different Layer 3 networks.. + +WWW: http://www.csh.rit.edu/~psionic/projects/xboxproxy/ |