1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00

pear-Services_Blogging provides a unified API to post and read blog entries,

independent of the API supported by the server software hosting the blog.
It uses a driver-based approach to communicate with different APIs out there.
If a new blogging API is invented, someone just needs to write a driver for
the Services_Blogging package, and everyone can access also this blogs.

WWW: http://pear.php.net/package/Services_Blogging/

PR:		ports/124910
Submitted by:	Wen Heping <wenheping at gmail.com>
This commit is contained in:
Martin Wilke 2008-06-27 12:31:07 +00:00
parent 5e0451ffb7
commit 50b63bb4cb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=215833
4 changed files with 49 additions and 0 deletions

View File

@ -1037,6 +1037,7 @@
SUBDIR += pear-HTTP_Server
SUBDIR += pear-HTTP_Session2
SUBDIR += pear-HTTP_Upload
SUBDIR += pear-Services_Blogging
SUBDIR += pear-Services_Compete
SUBDIR += pear-Services_Delicious
SUBDIR += pear-Services_Digg

View File

@ -0,0 +1,38 @@
# Ports collection makefile for: pear-Services_Blogging
# Date created: 23 June 2008
# Whom: Wen Heping <wenheping@gmail.com>
#
# $FreeBSD$
#
PORTNAME= Services_Blogging
PORTVERSION= 0.2.1
CATEGORIES= www pear
MAINTAINER= wenheping@gmail.com
COMMENT= PHP interface to Blog
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear \
${PEARDIR}/XML/RPC.php:${PORTSDIR}/net/pear-XML_RPC
RUN_DEPENDS= ${BUILD_DEPENDS}
CATEGORY= Services
FILES= Services/Blogging.php \
Services/Blogging/Blog.php \
Services/Blogging/MediaObject.php \
Services/Blogging/MultipleBlogsInterface.php \
Services/Blogging/Driver.php \
Services/Blogging/Post.php \
Services/Blogging/Exception.php \
Services/Blogging/XmlRpc.php \
Services/Blogging/ExtendedDriver.php \
Services/Blogging/Driver/Blogger.php \
Services/Blogging/Driver/Exception.php \
Services/Blogging/Driver/LiveJournal.php \
Services/Blogging/Driver/MetaWeblog.php
EXAMPLES= autodiscover.php blogger.cw.php livejournal.cw.php
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
.include <bsd.port.post.mk>

View File

@ -0,0 +1,3 @@
MD5 (PEAR/Services_Blogging-0.2.1.tgz) = 49a88be4bb55b815679364b0c250a4a3
SHA256 (PEAR/Services_Blogging-0.2.1.tgz) = e873032e3037de9558fd3a0cf9cda13dd1e27c1e0cd470294378bdf38baf3a2d
SIZE (PEAR/Services_Blogging-0.2.1.tgz) = 13053

View File

@ -0,0 +1,7 @@
pear-Services_Blogging provides a unified API to post and read blog entries,
independent of the API supported by the server software hosting the blog.
It uses a driver-based approach to communicate with different APIs out there.
If a new blogging API is invented, someone just needs to write a driver for
the Services_Blogging package, and everyone can access also this blogs.
WWW: http://pear.php.net/package/Services_Blogging/