New port: PEAR class for representing XML data in a tree structure
Represent XML data in a tree structure. Allows for the building of XML data structures using a tree representation, without the need for an extension like DOMXML. PR: ports/56444 Submitted by: Alex Miller <asm@asm.kiev.ua>
This commit is contained in:
parent
a804e7d6c4
commit
d0f2cfa533
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=88719
@ -804,6 +804,7 @@
|
||||
SUBDIR += pear-I18N
|
||||
SUBDIR += pear-PEAR
|
||||
SUBDIR += pear-XML_Parser
|
||||
SUBDIR += pear-XML_Tree
|
||||
SUBDIR += pear-XML_Util
|
||||
SUBDIR += pedisassem
|
||||
SUBDIR += perforce
|
||||
|
28
devel/pear-XML_Tree/Makefile
Normal file
28
devel/pear-XML_Tree/Makefile
Normal file
@ -0,0 +1,28 @@
|
||||
# Ports collection makefile for: pear-XML_Tree
|
||||
# Date created: 04 September 2003
|
||||
# Whom: Alex Miller (<asm@asm.kiev.ua>)
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= XML_Tree
|
||||
PORTVERSION= 1.1
|
||||
CATEGORIES= devel www
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= PEAR class for representing XML data in a tree structure
|
||||
|
||||
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear-PEAR
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
.include "${.CURDIR}/../../devel/pear-PEAR/Makefile.common"
|
||||
|
||||
do-install:
|
||||
@${MKDIR} ${PEARDIR}/XML/Tree
|
||||
@${CP} -p ${WRKSRC}/Tree.php ${PEARDIR}/XML
|
||||
@${CP} -p ${WRKSRC}/Tree/Node.php ${PEARDIR}/XML/Tree
|
||||
@${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PEARDIR}/XML/Tree.php
|
||||
@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PEARDIR}/XML/Tree
|
||||
|
||||
.include <bsd.port.post.mk>
|
1
devel/pear-XML_Tree/distinfo
Normal file
1
devel/pear-XML_Tree/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (PEAR/XML_Tree-1.1.tgz) = 372f7655df0d34e9f1a82d45c10931f6
|
5
devel/pear-XML_Tree/pkg-descr
Normal file
5
devel/pear-XML_Tree/pkg-descr
Normal file
@ -0,0 +1,5 @@
|
||||
Represent XML data in a tree structure. Allows for the building
|
||||
of XML data structures using a tree representation, without the
|
||||
need for an extension like DOMXML.
|
||||
|
||||
WWW: http://pear.php.net/package-info.php?package=XML_Tree
|
6
devel/pear-XML_Tree/pkg-plist
Normal file
6
devel/pear-XML_Tree/pkg-plist
Normal file
@ -0,0 +1,6 @@
|
||||
%%PEARDIR%%/XML/Tree.php
|
||||
%%PEARDIR%%/XML/Tree/Node.php
|
||||
%%PKGREGDIR%%/package.xml
|
||||
@dirrm %%PEARDIR%%/XML/Tree
|
||||
@unexec rmdir %D/%%PEARDIR%%/XML 2>/dev/null || true
|
||||
@dirrm %%PKGREGDIR%%
|
Loading…
Reference in New Issue
Block a user