summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2008-04-19 21:34:07 +0000
committerMartin Wilke <miwi@FreeBSD.org>2008-04-19 21:34:07 +0000
commit984cd6a1647b5796528552122822fdc4505ba15e (patch)
treef3ad4299c20df34b21844c8a033b54552f6315e0
parentpear-Services_Google is a pear class that (diff)
pear-Services_Facebook is an interface for accessing Facebook's web services
API at http://api.facebook.com. WWW: http://pear.php.net/package/Services_Facebook/ PR: ports/122705 Submitted by: Wen heping <wenheping at gmail.com>)
Notes
Notes: svn path=/head/; revision=211613
-rw-r--r--www/Makefile1
-rw-r--r--www/pear-Services_Facebook/Makefile70
-rw-r--r--www/pear-Services_Facebook/distinfo3
-rw-r--r--www/pear-Services_Facebook/pkg-descr4
4 files changed, 78 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile
index 8dcf44a8c213..383ccb536873 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -1018,6 +1018,7 @@
SUBDIR += pear-Services_Compete
SUBDIR += pear-Services_Delicious
SUBDIR += pear-Services_Digg
+ SUBDIR += pear-Services_Facebook
SUBDIR += pear-Services_Google
SUBDIR += pear-Services_SharedBook
SUBDIR += pear-Services_TinyURL
diff --git a/www/pear-Services_Facebook/Makefile b/www/pear-Services_Facebook/Makefile
new file mode 100644
index 000000000000..79db80c2a502
--- /dev/null
+++ b/www/pear-Services_Facebook/Makefile
@@ -0,0 +1,70 @@
+# Ports collection makefile for: pear-Services_Facebook
+# Date created: 13 April 2008
+# Whom: Wen heping <wenheping@gmail.com>)
+#
+# $FreeBSD$
+#
+
+PORTNAME= Services_Facebook
+PORTVERSION= 0.1.0
+CATEGORIES= www pear
+
+MAINTAINER= wenheping@gmail.com
+COMMENT= PHP interface to Facebook's API
+
+USE_PHP= curl
+CATEGORY= Services
+
+FILES= Services/Facebook.php \
+ Services/Facebook/Users.php Services/Facebook/Share.php \
+ Services/Facebook/Profile.php \
+ Services/Facebook/Photos.php \
+ Services/Facebook/Pages.php \
+ Services/Facebook/Notifications.php \
+ Services/Facebook/MarketPlace.php \
+ Services/Facebook/Groups.php \
+ Services/Facebook/Friends.php \
+ Services/Facebook/FQL.php Services/Facebook/Feed.php \
+ Services/Facebook/FBML.php \
+ Services/Facebook/Exception.php \
+ Services/Facebook/Events.php \
+ Services/Facebook/Common.php \
+ Services/Facebook/Auth.php \
+ Services/Facebook/Application.php \
+ Services/Facebook/Admin.php \
+ Services/Facebook/MarketPlace/Listing.php
+
+TESTS= 010-users-isAppAdded.phpt \
+ 012-users-getInfo.phpt \
+ 014-users-getLoggedInUser.phpt \
+ 020-profile-setFBML.phpt \
+ 022-profile-getFBML.phpt \
+ 030-friends-areFriends.phpt \
+ 032-friends-get.phpt \
+ 034-friends-getAppUsers.phpt \
+ 040-fql-query.phpt \
+ 050-feed-publishStoryToUser.phpt \
+ 052-feed-publishActionOfUser.phpt \
+ 060-photos-createAlbum.phpt \
+ 062-photos-upload.phpt \
+ 080-application-getPublicInfoById.phpt \
+ 081-application-getPublicInfoByApiKey.phpt \
+ 082-application-getPublicInfoByCanvasName.phpt \
+ 090-admin-getNotificationsPerDay.phpt \
+ 091-admin-getRequestsPerDay.phpt \
+ 092-admin-getAppProperties.phpt \
+ 110-pages-isAdmin.phpt \
+ 111-pages-isFan.phpt \
+ 112-pages-isAppAdded.phpt \
+ 120-marketplace-createListing.phpt \
+ 121-marketplace-getCategories.phpt \
+ 122-marketplace-getSubCategory.phpt \
+ 123-marketplace-getListings.phpt \
+ 124-marketplace-removeListing.phpt \
+ 125-marketplace-search.phpt \
+ test-image.jpg \
+ tests-config.php.example
+
+.include <bsd.port.pre.mk>
+.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
+.include <bsd.port.post.mk>
diff --git a/www/pear-Services_Facebook/distinfo b/www/pear-Services_Facebook/distinfo
new file mode 100644
index 000000000000..ae70839a66f6
--- /dev/null
+++ b/www/pear-Services_Facebook/distinfo
@@ -0,0 +1,3 @@
+MD5 (PEAR/Services_Facebook-0.1.0.tgz) = a10593a2e0180bab54b5705e78aecb51
+SHA256 (PEAR/Services_Facebook-0.1.0.tgz) = c35a4cc0dc25187abbffce06bfe4c1d69116d1d6eab15e943069867564804024
+SIZE (PEAR/Services_Facebook-0.1.0.tgz) = 384531
diff --git a/www/pear-Services_Facebook/pkg-descr b/www/pear-Services_Facebook/pkg-descr
new file mode 100644
index 000000000000..1d1f5e4804eb
--- /dev/null
+++ b/www/pear-Services_Facebook/pkg-descr
@@ -0,0 +1,4 @@
+pear-Services_Facebook is an interface for accessing Facebook's web services
+API at http://api.facebook.com.
+
+WWW: http://pear.php.net/package/Services_Facebook/