diff options
author | lioux <lioux@FreeBSD.org> | 2004-12-31 06:21:02 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2004-12-31 06:21:02 +0800 |
commit | a3e2a0272ef543ffca0588baeb8fc0ed4865ac0c (patch) | |
tree | 77769184010f72448f637b784e69ddabacbf229c | |
parent | 09f9029d59ecbbfc50c4df78793680bfa99481ca (diff) | |
download | freebsd-ports-gnome-a3e2a0272ef543ffca0588baeb8fc0ed4865ac0c.tar.gz freebsd-ports-gnome-a3e2a0272ef543ffca0588baeb8fc0ed4865ac0c.tar.zst freebsd-ports-gnome-a3e2a0272ef543ffca0588baeb8fc0ed4865ac0c.zip |
New port jsch version 0.1.18: A pure Java implementation of SSH2
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/jsch/Makefile | 36 | ||||
-rw-r--r-- | net/jsch/distinfo | 2 | ||||
-rw-r--r-- | net/jsch/pkg-descr | 20 |
4 files changed, 59 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 7b7f04cd6ee1..917ed9943db7 100644 --- a/net/Makefile +++ b/net/Makefile @@ -254,6 +254,7 @@ SUBDIR += javadc SUBDIR += jffnms SUBDIR += jit + SUBDIR += jsch SUBDIR += jumpgate SUBDIR += jwhois SUBDIR += kdenetwork3 diff --git a/net/jsch/Makefile b/net/jsch/Makefile new file mode 100644 index 000000000000..a9bb2ba1ca52 --- /dev/null +++ b/net/jsch/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: jsch +# Date created: Thu Dec 30 22:16:57 UTC 2004 +# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= jsch +PORTVERSION= 0.1.18 +CATEGORIES= net java +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= ${PORTNAME}-${PORTVERSION} +EXTRACT_SUFX= .jar +EXTRACT_ONLY= + +MAINTAINER= lioux@FreeBSD.org +COMMENT= A pure Java implementation of SSH2 + +USE_JAVA= 1.4+ +NO_BUILD= yes +NO_BUILD_DEPENDS_JAVA= yes + +JAVAVM= ${LOCALBASE}/bin/java +JAR_DIR= share/java/jar/${PORTNAME}/ + +JAR_FILE= ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} + +PLIST_FILES+= ${JAR_DIR}/${DISTNAME}${EXTRACT_SUFX} +PLIST_DIRS+= ${JAR_DIR} + +do-install: + @${MKDIR} ${PREFIX}/${JAR_DIR} + @${INSTALL_DATA} ${JAR_FILE} ${PREFIX}/${JAR_DIR} + +.include <bsd.port.mk> diff --git a/net/jsch/distinfo b/net/jsch/distinfo new file mode 100644 index 000000000000..e15af9bd16dc --- /dev/null +++ b/net/jsch/distinfo @@ -0,0 +1,2 @@ +MD5 (jsch-0.1.18.jar) = 1287e3b30ce0fc540d3bff0602b42e60 +SIZE (jsch-0.1.18.jar) = 105657 diff --git a/net/jsch/pkg-descr b/net/jsch/pkg-descr new file mode 100644 index 000000000000..5f73cffd08f5 --- /dev/null +++ b/net/jsch/pkg-descr @@ -0,0 +1,20 @@ +[ excerpt from developer's web site ] + +Sch is a pure Java implementation of SSH2. JSch allows you to connect +to an sshd server and use port forwarding, X11 forwarding, file +transfer, etc., and you can integrate its functionality into your +own Java programs. JSch is licensed under BSD style license. + +- Why JSch? +Our intension in developing this stuff is to enable users of our +pure java X servers, WiredX and WeirdX, to enjoy secure X sessions. +Our efforts have mostly targeted the SSH2 protocol in relation to +X window system and X11 forwarding. Of course, we are also interested +in adding other functionality - port forward, file transfer, terminal +emulation, etc. + +Visit these following web pages for more information: + +WWW: http://www.jcraft.com/jsch/ + +-- lioux@FreeBSD.org |