Toonel.net exploits a tunneling technique combined with data compression.

It runs compressed data frames from toonel client to one of the toonel
servers and then these are forwarded to the target host. Reducing the
size of resources that are transferred between the server and the client
makes more efficient use of the user's bandwidth.

WWW:	http://toonel.net

PR:		ports/143552
Submitted by:	Gvozdikov Veniamin <g.veniamin at googlemail.com>
This commit is contained in:
Martin Wilke 2010-02-13 18:45:55 +00:00
parent 3f8fd2d404
commit fe86b5c2e9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=249789
5 changed files with 53 additions and 0 deletions

View file

@ -1010,6 +1010,7 @@
SUBDIR += tinyldap
SUBDIR += tn5250
SUBDIR += tn5250j
SUBDIR += toonel
SUBDIR += torsocks
SUBDIR += tptest
SUBDIR += traceroute

35
net/toonel/Makefile Normal file
View file

@ -0,0 +1,35 @@
# New ports collection makefile for: toonel
# Date created: 2010-02-04
# Whom: Gvozdikov Veniamin <g.veniamin@googlemail.com>
#
# $FreeBSD$
#
PORTNAME= toonel
PORTVERSION= 0.0.50.50
CATEGORIES= net java
MASTER_SITES= http://www.toonel.net/generic/005050/
DISTNAME= ${PORTNAME}
EXTRACT_SUFX= .jar
EXTRACT_ONLY= # empty
MAINTAINER= g.veniamin@googlemail.com
COMMENT= Tunneling with data compression
NO_BUILD= yes
NO_WRKSUBDIR= yes
USE_JAVA= yes
JAVA_VERSION= 1.5+
SUB_FILES= ${PORTNAME}.sh
SUB_LIST= JARNAME=${DISTNAME}${EXTRACT_SUFX}
PLIST_FILES= bin/${PORTNAME} ${JAVAJARDIR:C,${PREFIX}/?,,}/${DISTNAME}${EXTRACT_SUFX}
do-install:
${MKDIR} ${JAVAJARDIR}/
${INSTALL_DATA} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${JAVAJARDIR}/
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>

3
net/toonel/distinfo Normal file
View file

@ -0,0 +1,3 @@
MD5 (toonel.jar) = a00729ad6126933b90770eced3c37a95
SHA256 (toonel.jar) = 5d1e6665f018dea7f20fc4f9ad0c6fda3cb2f8e432cc6734302a8e020ff254ce
SIZE (toonel.jar) = 120074

View file

@ -0,0 +1,7 @@
#!/bin/sh
JAVA="%%LOCALBASE%%/bin/java"
JARPATH="%%JAVALIBDIR%%"
export JAVA_VERSION="%%JAVA_VERSION%%"
exec "${JAVA}" -jar "${JARPATH}/%%JARNAME%%" "$@"

7
net/toonel/pkg-descr Normal file
View file

@ -0,0 +1,7 @@
Toonel.net exploits a tunneling technique combined with data compression.
It runs compressed data frames from toonel client to one of the toonel
servers and then these are forwarded to the target host. Reducing the
size of resources that are transferred between the server and the client
makes more efficient use of the user's bandwidth.
WWW: http://toonel.net