libssh2 is a library implementing the SSH2 protocol as defined by

Internet Drafts: SECSH-TRANS(22), SECSH-USERAUTH(25), SECSH-CONNECTION(23),
SECSH-ARCH(20), SECSH-FILEXFER(06)*, SECSH-DHGEX(04), and SECSH-NUMBERS(10).
This commit is contained in:
Alexander Leidinger 2005-04-22 20:09:20 +00:00
parent e9a6b6af0c
commit d2ae1f9d87
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=133962
4 changed files with 42 additions and 0 deletions

View file

@ -191,6 +191,7 @@
SUBDIR += libparanoia
SUBDIR += libprelude
SUBDIR += libsectok
SUBDIR += libssh2
SUBDIR += libtasn1
SUBDIR += libtomcrypt
SUBDIR += libwhisker

34
security/libssh2/Makefile Normal file
View file

@ -0,0 +1,34 @@
# New ports collection makefile for: libssh2
# Date created: 2005-04-07
# Whom: Alexander Leidinger <netchild@freebsd.org>
#
# $FreeBSD$
#
PORTNAME= libssh2
PORTVERSION= 0.8
CATEGORIES= security devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= a library implementing the SSH2 protocol
GNU_CONFIGURE= yes
USE_OPENSSL= yes
USE_REINPLACE= yes
INSTALLS_SHLIB= yes
PLIST_FILES= include/libssh2.h \
include/libssh2_sftp.h \
lib/libssh2.so \
lib/libssh2.so.0
post-patch:
@${REINPLACE_CMD} -e 's:-lcrypto:-lcrypto -lm:g' ${WRKSRC}/configure
post-install:
@${MV} ${PREFIX}/lib/libssh2.so ${PREFIX}/lib/libssh2.so.0
@cd ${PREFIX}; ${LN} -s libssh2.so.0 libssh2.so
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
MD5 (libssh2-0.8.tar.gz) = 439b88328e56b3c1771d308f0550b5c9
SIZE (libssh2-0.8.tar.gz) = 123100

View file

@ -0,0 +1,5 @@
libssh2 is a library implementing the SSH2 protocol as defined by
Internet Drafts: SECSH-TRANS(22), SECSH-USERAUTH(25), SECSH-CONNECTION(23),
SECSH-ARCH(20), SECSH-FILEXFER(06)*, SECSH-DHGEX(04), and SECSH-NUMBERS(10).
WWW: http://libssh2.sourceforge.net/