1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Add pear-VFS 0.0.4, PEAR Virtual File System API.

It is required by Horde-3 (to be released).

Approved by:	mat (mentor).
This commit is contained in:
Thierry Thomas 2004-04-04 17:38:57 +00:00
parent 3b247f9b41
commit 7ba967779f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=106134
4 changed files with 50 additions and 0 deletions

View File

@ -955,6 +955,7 @@
SUBDIR += pear-OLE
SUBDIR += pear-PEAR
SUBDIR += pear-PHPUnit
SUBDIR += pear-VFS
SUBDIR += pear-XML_Parser
SUBDIR += pear-XML_RPC
SUBDIR += pear-XML_RSS

36
devel/pear-VFS/Makefile Normal file
View File

@ -0,0 +1,36 @@
# Ports collection makefile for: pear-VFS
# Date created: 04 April 2004
# Whom: Thierry Thomas (<thierry@FreeBSD.org>)
#
# $FreeBSD$
#
PORTNAME= VFS
PORTVERSION= 0.0.4
CATEGORIES= devel pear
MAINTAINER= ports@FreeBSD.org
COMMENT= PEAR Virtual File System API
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear-PEAR
RUN_DEPENDS= ${BUILD_DEPENDS}
FILES= VFS.php
VFS_FILES= Browser.php GC.php ListItem.php Object.php \
file.php ftp.php musql.php sql.php sql_file.php
pre-everything::
.for cat_file in ${VFS_FILES}
FILES+= VFS/${cat_file}
.endfor
post-extract:
@${MKDIR} ${WRKSRC}/VFS
.for cat_file in ${VFS_FILES}
@${MV} ${WRKSRC}/${cat_file} ${WRKSRC}/VFS
.endfor
@${MV} ${WRKDIR}/VFS.php ${WRKSRC}
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common"
.include <bsd.port.post.mk>

2
devel/pear-VFS/distinfo Normal file
View File

@ -0,0 +1,2 @@
MD5 (PEAR/VFS-0.0.4.tgz) = 90dca2a531e82b162cd8e2e2c248490c
SIZE (PEAR/VFS-0.0.4.tgz) = 21675

11
devel/pear-VFS/pkg-descr Normal file
View File

@ -0,0 +1,11 @@
This PEAR package provides a Virtual File System API, with backends for:
* SQL
* FTP
* Local filesystems
* Hybrid SQL and filesystem
... and more planned. Reading/writing/listing of files are all
supported, and there are both object-based and array-based interfaces
to directory listings.
WWW: http://pear.php.net/package/VFS