diff options
author | mm <mm@FreeBSD.org> | 2011-07-08 05:03:21 +0800 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2011-07-08 05:03:21 +0800 |
commit | 594a4611acb23105595d90109a5d243d996ff0bb (patch) | |
tree | 7e7dd85ac53cbf633ea6c693304ac15474906453 /sysutils | |
parent | 62bfca95429951618000ab45634f9b8547bfe792 (diff) | |
download | freebsd-ports-gnome-594a4611acb23105595d90109a5d243d996ff0bb.tar.gz freebsd-ports-gnome-594a4611acb23105595d90109a5d243d996ff0bb.tar.zst freebsd-ports-gnome-594a4611acb23105595d90109a5d243d996ff0bb.zip |
This package provides a Virtual File System API, with backends for:
* SQL
* FTP
* Local filesystems
* Hybrid SQL and filesystem
* Samba
* SSH2/SFTP
* IMAP (Kolab)
Reading, writing and listing of files are all supported, and there are both
object-based and array-based interfaces to directory listings.
WWW: http://pear.horde.org
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/pear-Horde_Vfs/Makefile | 26 | ||||
-rw-r--r-- | sysutils/pear-Horde_Vfs/distinfo | 2 | ||||
-rw-r--r-- | sysutils/pear-Horde_Vfs/pkg-descr | 13 |
4 files changed, 42 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index ce31574749d9..8361e99b0b59 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -626,6 +626,7 @@ SUBDIR += pear-File_Fstab SUBDIR += pear-File_Gettext SUBDIR += pear-Horde_Log + SUBDIR += pear-Horde_Vfs SUBDIR += pear-I18Nv2 SUBDIR += pear-Log SUBDIR += pear-Translation2 diff --git a/sysutils/pear-Horde_Vfs/Makefile b/sysutils/pear-Horde_Vfs/Makefile new file mode 100644 index 000000000000..2e384f433439 --- /dev/null +++ b/sysutils/pear-Horde_Vfs/Makefile @@ -0,0 +1,26 @@ +# Ports collection makefile for: pear-Horde_Vfs +# Date created: 7 July 2011 +# Whom: Martin Matuska <mm@FreeBSD.org> +# +# $FreeBSD$ + +PORTNAME= Horde_Vfs +PORTVERSION= 1.0.3 +CATEGORIES= sysutils www pear +PKGNAMEPREFIX= pear- + +MAINTAINER= mm@FreeBSD.org +COMMENT= Horde Virtual File System API + +OPTIONS= FTP "Depend on FTP PHP extension" Off + +USE_HORDE_RUN= Horde_Exception Horde_Translation Horde_Util + +.include <bsd.port.pre.mk> + +.if defined(WITH_FTP) +USE_PHP+= ftp +.endif + +.include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk" +.include <bsd.port.post.mk> diff --git a/sysutils/pear-Horde_Vfs/distinfo b/sysutils/pear-Horde_Vfs/distinfo new file mode 100644 index 000000000000..b01814da131f --- /dev/null +++ b/sysutils/pear-Horde_Vfs/distinfo @@ -0,0 +1,2 @@ +SHA256 (Horde/Horde_Vfs-1.0.3.tgz) = 28d1b185337acde4122e1d18662cdf8438b98717c3e6a8ef533d32e4056ba64e +SIZE (Horde/Horde_Vfs-1.0.3.tgz) = 56149 diff --git a/sysutils/pear-Horde_Vfs/pkg-descr b/sysutils/pear-Horde_Vfs/pkg-descr new file mode 100644 index 000000000000..48131894b09c --- /dev/null +++ b/sysutils/pear-Horde_Vfs/pkg-descr @@ -0,0 +1,13 @@ +This package provides a Virtual File System API, with backends for: +* SQL +* FTP +* Local filesystems +* Hybrid SQL and filesystem +* Samba +* SSH2/SFTP +* IMAP (Kolab) + +Reading, writing and listing of files are all supported, and there are both +object-based and array-based interfaces to directory listings. + +WWW: http://pear.horde.org |