diff options
author | netchild <netchild@FreeBSD.org> | 2005-04-23 04:11:13 +0800 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2005-04-23 04:11:13 +0800 |
commit | 4d6ba21a27a822b839f6e8df8295d6ab32f7a709 (patch) | |
tree | 46c3f226f65bbac9eef631fd4b06338fb3076328 /security/pecl-ssh2 | |
parent | 7e7ac7c590aef838feef2132bf447e94b646d7ef (diff) | |
download | freebsd-ports-gnome-4d6ba21a27a822b839f6e8df8295d6ab32f7a709.tar.gz freebsd-ports-gnome-4d6ba21a27a822b839f6e8df8295d6ab32f7a709.tar.zst freebsd-ports-gnome-4d6ba21a27a822b839f6e8df8295d6ab32f7a709.zip |
PHP bindings to the libssh2 library which provide access to resources
(shell, remote exec, tunneling, file transfer) on a remote machine using a
secure cryptographic transport.
Diffstat (limited to 'security/pecl-ssh2')
-rw-r--r-- | security/pecl-ssh2/Makefile | 28 | ||||
-rw-r--r-- | security/pecl-ssh2/distinfo | 2 | ||||
-rw-r--r-- | security/pecl-ssh2/files/patch-config.m4 | 11 | ||||
-rw-r--r-- | security/pecl-ssh2/pkg-descr | 5 |
4 files changed, 46 insertions, 0 deletions
diff --git a/security/pecl-ssh2/Makefile b/security/pecl-ssh2/Makefile new file mode 100644 index 000000000000..7c561f66e1d5 --- /dev/null +++ b/security/pecl-ssh2/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: pecl-ssh2 +# Date created: 20050407 +# Whom: Alexander Leidinger <netchild@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= ssh2 +PORTVERSION= 0.7 +CATEGORIES= security pear +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +DISTNAME= ssh2-${PORTVERSION} +EXTRACT_SUFX= .tgz +DIST_SUBDIR= PECL + +MAINTAINER= ports@FreeBSD.org +COMMENT= A PECL extension to the libssh2 library + +LIB_DEPENDS= ssh2:${PORTSDIR}/security/libssh2 + +USE_PHP= yes +USE_PHPEXT= yes + +#post-install: +# @${MV} ${PREFIX}/lib/ + +.include <bsd.port.mk> diff --git a/security/pecl-ssh2/distinfo b/security/pecl-ssh2/distinfo new file mode 100644 index 000000000000..2de44d8bc82b --- /dev/null +++ b/security/pecl-ssh2/distinfo @@ -0,0 +1,2 @@ +MD5 (PECL/ssh2-0.7.tgz) = 8b13b2d28e9f77c88dabf17007aeac06 +SIZE (PECL/ssh2-0.7.tgz) = 18359 diff --git a/security/pecl-ssh2/files/patch-config.m4 b/security/pecl-ssh2/files/patch-config.m4 new file mode 100644 index 000000000000..1f2ca029a794 --- /dev/null +++ b/security/pecl-ssh2/files/patch-config.m4 @@ -0,0 +1,11 @@ +--- config.m4.orig Thu Apr 7 11:18:20 2005 ++++ config.m4 Thu Apr 7 11:19:10 2005 +@@ -36,7 +36,7 @@ + ],[ + AC_MSG_ERROR([libssh2 version >= 0.4 not found]) + ],[ +- -L$SSH2_DIR/lib -lm -ldl ++ -L$SSH2_DIR/lib -lm + ]) + + PHP_CHECK_LIBRARY($LIBNAME,libssh2_channel_forward_listen_ex, diff --git a/security/pecl-ssh2/pkg-descr b/security/pecl-ssh2/pkg-descr new file mode 100644 index 000000000000..dc86cdfdaa3f --- /dev/null +++ b/security/pecl-ssh2/pkg-descr @@ -0,0 +1,5 @@ +PHP bindings to the libssh2 library which provide access to resources +(shell, remote exec, tunneling, file transfer) on a remote machine using a +secure cryptographic transport. + +WWW: http://pecl.php.net/package/Fileinfo/ |