summaryrefslogtreecommitdiff
path: root/net/jsch
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2004-12-30 22:21:02 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2004-12-30 22:21:02 +0000
commit75e70fa679c28434a5b368c81f45f181ab2f356a (patch)
tree37bd87b7d9c4a0ad32ee3e324fcaa107cbbc6fff /net/jsch
parentAdd p5-Net-IMAP-Simple-SSL 1.3, SSL support for Net::IMAP::Simple. (diff)
New port jsch version 0.1.18: A pure Java implementation of SSH2
Notes
Notes: svn path=/head/; revision=125567
Diffstat (limited to 'net/jsch')
-rw-r--r--net/jsch/Makefile36
-rw-r--r--net/jsch/distinfo2
-rw-r--r--net/jsch/pkg-descr20
3 files changed, 58 insertions, 0 deletions
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