XML_GRDDL is a PHP library for dealing with GRDDL.
It can use Different XSLT engines. WWW: http://pear.php.net/package/XML_GRDDL/ PR: ports/124923 Submitted by: Wen Heping <wenheping at gmail.com>
This commit is contained in:
parent
2d91f40c87
commit
5e0451ffb7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=215832
4 changed files with 103 additions and 0 deletions
|
@ -1050,6 +1050,7 @@
|
|||
SUBDIR += pear-Services_urlTea
|
||||
SUBDIR += pear-Text_Wiki
|
||||
SUBDIR += pear-UDDI
|
||||
SUBDIR += pear-XML_GRDDL
|
||||
SUBDIR += pecl-APC
|
||||
SUBDIR += pecl-amfext
|
||||
SUBDIR += pecl-mnogosearch
|
||||
|
|
95
www/pear-XML_GRDDL/Makefile
Normal file
95
www/pear-XML_GRDDL/Makefile
Normal file
|
@ -0,0 +1,95 @@
|
|||
# Ports collection makefile for: pear-XML_GRDDL
|
||||
# Date created: 23 June 2008
|
||||
# Whom: Wen Heping <wenheping@gmail.com>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= XML_GRDDL
|
||||
PORTVERSION= 0.1.1
|
||||
CATEGORIES= www pear
|
||||
|
||||
MAINTAINER= wenheping@gmail.com
|
||||
COMMENT= A PHP library for dealing with GRDDL
|
||||
|
||||
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear \
|
||||
${PEARDIR}/HTTP/Request.php:${PORTSDIR}/www/pear-HTTP_Request \
|
||||
${PEARDIR}/Net/URL.php:${PORTSDIR}/net/pear-Net_URL \
|
||||
${PEARDIR}/Log.php:${PORTSDIR}/sysutils/pear-Log \
|
||||
${PEARDIR}/Validate.php:${PORTSDIR}/devel/pear-Validate
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
USE_PHP+= xsl tidy
|
||||
|
||||
CATEGORY= XML
|
||||
FILES= XML/GRDDL.php \
|
||||
XML/GRDDL/Driver.php XML/GRDDL/Exception.php \
|
||||
XML/GRDDL/Driver/Xsl.php
|
||||
|
||||
DOCS= an-hcard-profile.php atomttl1.php \
|
||||
danc-hcal.php digg-rdfa.php \
|
||||
discover-grddl.php flickr-linkedin.php \
|
||||
grddl-base.rdf grddl-tests-normative.rdf \
|
||||
grddl-tests.rdf grddlProfileBase1.php \
|
||||
htmlbase1.php namespace-documents1.php \
|
||||
namespace-documents2.php pear-package.php \
|
||||
php-conferences.php two-transforms.php \
|
||||
xhtmlWithGrddlEnabledProfile.php \
|
||||
scripts/debug-grddl.php scripts/process-grddl.php \
|
||||
scripts/testft.py README.txt
|
||||
|
||||
TESTS= 44225.php ambiguous.php \
|
||||
example.php library.php \
|
||||
local.php namespaces.php \
|
||||
data/baseURI.rdf data/card-output.rdf \
|
||||
data/card5n-output.rdf data/embedded-rdf1-output.rdf \
|
||||
data/embedded-rdf2-output.rdf \
|
||||
data/embedded-rdf3-output.rdf \
|
||||
data/embedded-rdf4-output.rdf \
|
||||
data/embedded-rdf5-output.rdf \
|
||||
data/embedded-rdf6-output.rdf \
|
||||
data/embedded-rdf8-output.rdf \
|
||||
data/embedded-rdf9-output.rdf \
|
||||
data/four-transforms-output.rdf \
|
||||
data/grddlProfileWithBaseElement-output.rdf \
|
||||
data/grddlonrdf-output3.rdf \
|
||||
data/grddlonrdf-xmlmediatype-output3.rdf \
|
||||
data/hcard-output.rdf data/inline.rdf \
|
||||
data/loop-output.rdf data/loopx-output.rdf \
|
||||
data/loopx-output1.rdf data/loopx-output2.rdf \
|
||||
data/loopx-output3.rdf \
|
||||
data/multipleRepresentationsBoth-output.rdf \
|
||||
data/multipleRepresentationsHtml-output.rdf \
|
||||
data/multipleRepresentationsSvg-output.rdf \
|
||||
data/multiprofile-output.rdf data/noxinclude1.rdf \
|
||||
data/profile-with-spaces-in-rel-output.rdf \
|
||||
data/projects.rdf data/rdf_sem-output.rdf \
|
||||
data/spaces-in-rel-output.rdf \
|
||||
data/sq1-output.rdf data/sq2-output.rdf \
|
||||
data/three-transforms-output.rdf \
|
||||
data/titleauthor-output.rdf \
|
||||
data/two-transforms-output.rdf \
|
||||
data/xhtmlProfileBase1-output.rdf \
|
||||
data/xhtmlWithBaseElement-output.rdf \
|
||||
data/xhtmlWithGrddlEnabledProfile-output.rdf \
|
||||
data/xhtmlWithGrddlEnabledProfileAndADisabledInBodyTransform-output.rdf \
|
||||
data/xhtmlWithGrddlEnabledProfileAndInBodyTransform-output.rdf \
|
||||
data/xhtmlWithGrddlProfile-output.rdf \
|
||||
data/xhtmlWithGrddlTransformationInBody-output.rdf \
|
||||
data/xhtmlWithTwoTransformations-output.rdf \
|
||||
data/xhtmlWithoutBaseElement-output.rdf \
|
||||
data/xinclude1.rdf data/xmlWithBase-output.rdf \
|
||||
data/xmlWithGrddlAttribute-output.rdf \
|
||||
data/xmlWithGrddlAttributeAndNonXMLNamespaceDocument-output.rdf \
|
||||
data/xmlWithoutBase-output.rdf
|
||||
|
||||
DATA= glean-profile grokAlternate grokPEAR \
|
||||
inline-rdf xml-attributes
|
||||
_DATADIR= data/grddl-library
|
||||
|
||||
post-extract:
|
||||
@${MV} ${WRKSRC}/README.txt ${WRKSRC}/docs
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
|
||||
.include <bsd.port.post.mk>
|
3
www/pear-XML_GRDDL/distinfo
Normal file
3
www/pear-XML_GRDDL/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (PEAR/XML_GRDDL-0.1.1.tgz) = 8f7a10bb71f4b1244c6a47e2b786a551
|
||||
SHA256 (PEAR/XML_GRDDL-0.1.1.tgz) = 73bfc1ef9c900d461ac1908f2fbb7e0baa141084368e84033f3f8747af013e5d
|
||||
SIZE (PEAR/XML_GRDDL-0.1.1.tgz) = 50149
|
4
www/pear-XML_GRDDL/pkg-descr
Normal file
4
www/pear-XML_GRDDL/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
XML_GRDDL is a PHP library for dealing with GRDDL.
|
||||
It can use Different XSLT engines.
|
||||
|
||||
WWW: http://pear.php.net/package/XML_GRDDL/
|
Loading…
Reference in a new issue