diff options
author | SADA Kenji <sada@FreeBSD.org> | 2002-11-17 05:03:54 +0000 |
---|---|---|
committer | SADA Kenji <sada@FreeBSD.org> | 2002-11-17 05:03:54 +0000 |
commit | 050dd1b1031022b49cd1623dd3892f3c4be3a1ae (patch) | |
tree | 0876fb5cc1d38a316c0fbaf87137d69775f5dad0 /sysutils | |
parent | Patch for Ruby 1.7. (diff) |
Resurrection of port devel/pear
PR: ports/44473
Submitted by: Thierry Thomas <thierry@pompo.net>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 2 | ||||
-rw-r--r-- | sysutils/pear-File/Makefile | 37 | ||||
-rw-r--r-- | sysutils/pear-File/distinfo | 1 | ||||
-rw-r--r-- | sysutils/pear-File/pkg-comment | 1 | ||||
-rw-r--r-- | sysutils/pear-File/pkg-descr | 5 | ||||
-rw-r--r-- | sysutils/pear-File/pkg-plist | 5 | ||||
-rw-r--r-- | sysutils/pear-Log/Makefile | 36 | ||||
-rw-r--r-- | sysutils/pear-Log/distinfo | 1 | ||||
-rw-r--r-- | sysutils/pear-Log/pkg-comment | 1 | ||||
-rw-r--r-- | sysutils/pear-Log/pkg-descr | 6 | ||||
-rw-r--r-- | sysutils/pear-Log/pkg-plist | 10 |
11 files changed, 105 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index cac0b402c8ca..d58ec080c9fa 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -159,6 +159,8 @@ SUBDIR += p5-User SUBDIR += paicc SUBDIR += pdumpfs + SUBDIR += pear-File + SUBDIR += pear-Log SUBDIR += penv SUBDIR += perf SUBDIR += personality diff --git a/sysutils/pear-File/Makefile b/sysutils/pear-File/Makefile new file mode 100644 index 000000000000..8ccf5e68bbff --- /dev/null +++ b/sysutils/pear-File/Makefile @@ -0,0 +1,37 @@ +# Ports collection makefile for: pear-File +# Date created: 24 October 2002 +# Whom: Thierry Thomas (<thierry@pompo.net>) +# +# $FreeBSD$ +# + +PORTNAME= File +PORTVERSION= 1.0.2 +CATEGORIES= sysutils www +MASTER_SITES= http://pear.php.net/get/ +PKGNAMEPREFIX= pear- +EXTRACT_SUFX= .tgz +DIST_SUBDIR= PEAR + +MAINTAINER= ports@FreeBSD.org + +BUILD_DEPENDS= ${PEARDIR}.DIST_PHP:${PORTSDIR}/devel/pear-install +RUN_DEPENDS= ${PEARDIR}.DIST_PHP:${PORTSDIR}/devel/pear-install + +NO_BUILD= yes + +.include <bsd.port.pre.mk> + +.if exists(${LOCALBASE}/bin/php-config) +PHP_BASE!= ${LOCALBASE}/bin/php-config --prefix +.endif +LPHP_LIB= lib/php +PEARDIR= ${PHP_BASE}/${LPHP_LIB} +PLIST_SUB= PEARDIR=${LPHP_LIB} + +do-install: + @${CP} -Rp ${WRKSRC}/* ${PEARDIR} + @${CHOWN} -R root:wheel ${PEARDIR}/${PORTNAME}* + @${CHOWN} -R root:wheel ${PEARDIR}/tests + +.include <bsd.port.post.mk> diff --git a/sysutils/pear-File/distinfo b/sysutils/pear-File/distinfo new file mode 100644 index 000000000000..b1b3bc9496ba --- /dev/null +++ b/sysutils/pear-File/distinfo @@ -0,0 +1 @@ +MD5 (PEAR/File-1.0.2.tgz) = 4ce1d2880cafcbf4a84e4adc2374a30b diff --git a/sysutils/pear-File/pkg-comment b/sysutils/pear-File/pkg-comment new file mode 100644 index 000000000000..7d2b91c53b5b --- /dev/null +++ b/sysutils/pear-File/pkg-comment @@ -0,0 +1 @@ +PEAR common file and directory routines diff --git a/sysutils/pear-File/pkg-descr b/sysutils/pear-File/pkg-descr new file mode 100644 index 000000000000..7dbaaff3f463 --- /dev/null +++ b/sysutils/pear-File/pkg-descr @@ -0,0 +1,5 @@ +PEAR classes providing easy access to read/write to files along with +some common routines to deal with paths. Also provides interface for +handling CSV files. + +WWW: http://pear.php.net/manual/en/packages.file.php diff --git a/sysutils/pear-File/pkg-plist b/sysutils/pear-File/pkg-plist new file mode 100644 index 000000000000..af92a14289f3 --- /dev/null +++ b/sysutils/pear-File/pkg-plist @@ -0,0 +1,5 @@ +%%PEARDIR%%/File/CSV.php +%%PEARDIR%%/File.php +%%PEARDIR%%/tests/parser.php +%%PEARDIR%%/tests/test.csv +@dirrm %%PEARDIR%%/tests diff --git a/sysutils/pear-Log/Makefile b/sysutils/pear-Log/Makefile new file mode 100644 index 000000000000..3398734c2fe6 --- /dev/null +++ b/sysutils/pear-Log/Makefile @@ -0,0 +1,36 @@ +# Ports collection makefile for: pear-Log +# Date created: 22 October 2002 +# Whom: Thierry Thomas (<thierry@pompo.net>) +# +# $FreeBSD$ +# + +PORTNAME= Log +PORTVERSION= 1.5 +CATEGORIES= sysutils www +MASTER_SITES= http://pear.php.net/get/ +PKGNAMEPREFIX= pear- +EXTRACT_SUFX= .tgz +DIST_SUBDIR= PEAR + +MAINTAINER= ports@FreeBSD.org + +BUILD_DEPENDS= ${PEARDIR}.DIST_PHP:${PORTSDIR}/devel/pear-install +RUN_DEPENDS= ${PEARDIR}.DIST_PHP:${PORTSDIR}/devel/pear-install + +NO_BUILD= yes + +.include <bsd.port.pre.mk> + +.if exists(${LOCALBASE}/bin/php-config) +PHP_BASE!= ${LOCALBASE}/bin/php-config --prefix +.endif +LPHP_LIB= lib/php +PEARDIR= ${PHP_BASE}/${LPHP_LIB} +PLIST_SUB= PEARDIR=${LPHP_LIB} + +do-install: + @${CP} -Rp ${WRKSRC}/* ${PEARDIR} + @${CHOWN} -R root:wheel ${PEARDIR}/${PORTNAME}* + +.include <bsd.port.post.mk> diff --git a/sysutils/pear-Log/distinfo b/sysutils/pear-Log/distinfo new file mode 100644 index 000000000000..3849df423b84 --- /dev/null +++ b/sysutils/pear-Log/distinfo @@ -0,0 +1 @@ +MD5 (PEAR/Log-1.5.tgz) = 30421577a99e0837c0235abb89578697 diff --git a/sysutils/pear-Log/pkg-comment b/sysutils/pear-Log/pkg-comment new file mode 100644 index 000000000000..625e42b202c1 --- /dev/null +++ b/sysutils/pear-Log/pkg-comment @@ -0,0 +1 @@ +PEAR logging utilities diff --git a/sysutils/pear-Log/pkg-descr b/sysutils/pear-Log/pkg-descr new file mode 100644 index 000000000000..d15b0ddefb82 --- /dev/null +++ b/sysutils/pear-Log/pkg-descr @@ -0,0 +1,6 @@ +PEAR Log framework providing an abstracted logging system. + +It supports logging to console, file, syslog, SQL, mail, and mcal targets. +It also provides a subject - observer mechanism. + +WWW: http://pear.php.net/manual/en/packages.log.php diff --git a/sysutils/pear-Log/pkg-plist b/sysutils/pear-Log/pkg-plist new file mode 100644 index 000000000000..51c492c0b71a --- /dev/null +++ b/sysutils/pear-Log/pkg-plist @@ -0,0 +1,10 @@ +%%PEARDIR%%/Log/composite.php +%%PEARDIR%%/Log/console.php +%%PEARDIR%%/Log/file.php +%%PEARDIR%%/Log/mail.php +%%PEARDIR%%/Log/mcal.php +%%PEARDIR%%/Log/observer.php +%%PEARDIR%%/Log/sql.php +%%PEARDIR%%/Log/syslog.php +%%PEARDIR%%/Log.php +@dirrm %%PEARDIR%%/Log |