diff options
author | miwi <miwi@FreeBSD.org> | 2008-11-09 04:00:31 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-11-09 04:00:31 +0800 |
commit | cd479c368f470d6dc39a7b671b9004e2e4a20cfa (patch) | |
tree | 9738b2c1d9c6468b1ae4aa7df9f82da9d49a02b5 /net/pear-Services_Twitter | |
parent | ff586bee3cfa4ce2730dca905876c97ebbefa8f6 (diff) | |
download | freebsd-ports-gnome-cd479c368f470d6dc39a7b671b9004e2e4a20cfa.tar.gz freebsd-ports-gnome-cd479c368f470d6dc39a7b671b9004e2e4a20cfa.tar.zst freebsd-ports-gnome-cd479c368f470d6dc39a7b671b9004e2e4a20cfa.zip |
An interface for communicating with Twitter's public API.
Send status updates, fetch information, add friends, etc.
WWW: http://pear.php.net/package/Services_Twitter/
PR: ports/128647
Submitted by: Wen Heping <wenheping at gmail.com>
Diffstat (limited to 'net/pear-Services_Twitter')
-rw-r--r-- | net/pear-Services_Twitter/Makefile | 62 | ||||
-rw-r--r-- | net/pear-Services_Twitter/distinfo | 3 | ||||
-rw-r--r-- | net/pear-Services_Twitter/pkg-descr | 4 |
3 files changed, 69 insertions, 0 deletions
diff --git a/net/pear-Services_Twitter/Makefile b/net/pear-Services_Twitter/Makefile new file mode 100644 index 000000000000..7da27122f947 --- /dev/null +++ b/net/pear-Services_Twitter/Makefile @@ -0,0 +1,62 @@ +# Ports collection makefile for: pear-Services_Twitter +# Date created: 2008-11-06 +# Whom: Wen Heping <wenheping@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= Services_Twitter +PORTVERSION= 0.2.0 +CATEGORIES= net www pear + +MAINTAINER= wenheping@gmail.com +COMMENT= PHP interface to Twitter's API + +BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear \ + ${PEARDIR}/Validate.php:${PORTSDIR}/devel/pear-Validate +RUN_DEPENDS= ${BUILD_DEPENDS} + +USE_PHP= curl + +CATEGORY= Net +FILES= Services/Twitter.php Services/Twitter/Account.php \ + Services/Twitter/Common.php \ + Services/Twitter/DirectMessages.php \ + Services/Twitter/Exception.php \ + Services/Twitter/Favorites.php \ + Services/Twitter/Friendships.php \ + Services/Twitter/Notifications.php \ + Services/Twitter/Search.php \ + Services/Twitter/Statuses.php \ + Services/Twitter/Users.php +TESTS= 005-services-twitter-statuses-public-timeline.phpt \ + 006-services-twitter-statuses-friends-timeline.phpt \ + 007-services-twitter-statuses-user-timeline.phpt \ + 010-services-twitter-statuses-show.phpt \ + 015-services-twitter-statuses-replies.phpt \ + 020-services-twitter-statuses-update.phpt \ + 025-services-twitter-statuses-destroy.phpt \ + 026-services-twitter-statuses-friends.phpt \ + 027-services-twitter-statuses-followers.phpt \ + 028-services-twitter-statuses-featured.phpt \ + 030-services-twitter-exception.phpt \ + 100-services-twitter-users-show.phpt \ + 200-services-twitter-direct-messages.phpt \ + 205-services-twitter-direct-messages-sent.phpt \ + 210-services-twitter-direct-messages-new.phpt \ + 215-services-twitter-direct-messages-destroy.phpt \ + 300-services-twitter-friendships-create.phpt \ + 305-services-twitter-friendships-destroy.phpt \ + 400-services-twitter-account-verify-credentials.phpt \ + 405-services-twitter-account-end-session.phpt \ + 410-services-twitter-account-archive.phpt \ + 500-services-twitter-favorites.phpt \ + 505-services-twitter-favorites-create.phpt \ + 510-services-twitter-favorites-destroy.phpt \ + 600-services-twitter-notifications-leave.phpt \ + 605-services-twitter-notifications-follow.phpt \ + tests-config.php.example + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include <bsd.port.post.mk> diff --git a/net/pear-Services_Twitter/distinfo b/net/pear-Services_Twitter/distinfo new file mode 100644 index 000000000000..33acd965855b --- /dev/null +++ b/net/pear-Services_Twitter/distinfo @@ -0,0 +1,3 @@ +MD5 (PEAR/Services_Twitter-0.2.0.tgz) = 6d43a0d450157832614730c432e371c7 +SHA256 (PEAR/Services_Twitter-0.2.0.tgz) = 11229dd17e68d2f3c96311fe5669f3f1418de531d910af24f83ec24c8f99d899 +SIZE (PEAR/Services_Twitter-0.2.0.tgz) = 13870 diff --git a/net/pear-Services_Twitter/pkg-descr b/net/pear-Services_Twitter/pkg-descr new file mode 100644 index 000000000000..1e4ebfb0ccba --- /dev/null +++ b/net/pear-Services_Twitter/pkg-descr @@ -0,0 +1,4 @@ +An interface for communicating with Twitter's public API. +Send status updates, fetch information, add friends, etc. + +WWW: http://pear.php.net/package/Services_Twitter/ |