diff options
author | vanilla <vanilla@FreeBSD.org> | 2007-08-06 21:37:37 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2007-08-06 21:37:37 +0800 |
commit | 44a75aa12896ca5d56b37bc08cce48895d35c11c (patch) | |
tree | dfd35b513bb1f285543b6170f66b175cc935aee8 /www | |
parent | e0b77d43129fca3931039a7faf40cb96c57c60ae (diff) | |
download | freebsd-ports-gnome-44a75aa12896ca5d56b37bc08cce48895d35c11c.tar.gz freebsd-ports-gnome-44a75aa12896ca5d56b37bc08cce48895d35c11c.tar.zst freebsd-ports-gnome-44a75aa12896ca5d56b37bc08cce48895d35c11c.zip |
Add flickcurl, it's a c library for the Flickr API.
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/flickcurl/Makefile | 22 | ||||
-rw-r--r-- | www/flickcurl/distinfo | 3 | ||||
-rw-r--r-- | www/flickcurl/files/patch-flickcurl_internal.h | 13 | ||||
-rw-r--r-- | www/flickcurl/pkg-descr | 9 | ||||
-rw-r--r-- | www/flickcurl/pkg-plist | 9 |
6 files changed, 57 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 09128a0f1138..5bdf11f33ac8 100644 --- a/www/Makefile +++ b/www/Makefile @@ -169,6 +169,7 @@ SUBDIR += firefox15 SUBDIR += flashplugin-mozilla SUBDIR += flat-frog + SUBDIR += flickcurl SUBDIR += flock SUBDIR += flood SUBDIR += fluxcms diff --git a/www/flickcurl/Makefile b/www/flickcurl/Makefile new file mode 100644 index 000000000000..10af20692e32 --- /dev/null +++ b/www/flickcurl/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: flickcurl +# Date created: 2007-07-27 +# Whom: vanilla@ +# +# $FreeBSD$ +# + +PORTNAME= flickcurl +PORTVERSION= 0.11 +CATEGORIES= www +MASTER_SITES= http://download.dajobe.org/flickcurl/ + +MAINTAINER= vanilla@FreeBSD.org +COMMENT= C library for the Flickr API + +LIB_DEPENDS= curl.4:${PORTSDIR}/ftp/curl + +USE_AUTOTOOLS= libtool:15 +USE_GNOME= gnomehack gnometarget ltverhack libxml2 pkgconfig +USE_LDCONFIG= yes + +.include <bsd.port.mk> diff --git a/www/flickcurl/distinfo b/www/flickcurl/distinfo new file mode 100644 index 000000000000..d7a3daf4270b --- /dev/null +++ b/www/flickcurl/distinfo @@ -0,0 +1,3 @@ +MD5 (flickcurl-0.11.tar.gz) = eea351e4d35e8d1c63b124cd8ee257ba +SHA256 (flickcurl-0.11.tar.gz) = 0afd5dccd757b5c06e1a6ee46da16fa4e2f5e9e65ed7698376349210186ef9af +SIZE (flickcurl-0.11.tar.gz) = 421285 diff --git a/www/flickcurl/files/patch-flickcurl_internal.h b/www/flickcurl/files/patch-flickcurl_internal.h new file mode 100644 index 000000000000..5b24d09c31eb --- /dev/null +++ b/www/flickcurl/files/patch-flickcurl_internal.h @@ -0,0 +1,13 @@ +--- flickcurl_internal.h.orig Sun Aug 5 12:24:18 2007 ++++ flickcurl_internal.h Sun Aug 5 12:24:26 2007 +@@ -22,10 +22,6 @@ + + #include <libxml/tree.h> + #include <libxml/xpath.h> +-#include <libxslt/xslt.h> +-#include <libxslt/transform.h> +-#include <libxslt/xsltutils.h> +- + + #include <curl/curl.h> + #include <curl/types.h> diff --git a/www/flickcurl/pkg-descr b/www/flickcurl/pkg-descr new file mode 100644 index 000000000000..f4799ca447d9 --- /dev/null +++ b/www/flickcurl/pkg-descr @@ -0,0 +1,9 @@ +Flickcurl is a C library for the Flickr API, handling creating the requests, +signing, token management, calling the API, marshalling request parameters +and decoding responses. It uses libcurl to call the REST web service and +libxml2 to manipulate the XML responses. The current version supports part of +the API (see Flickcurl API coverage) primarily the functions for reading +photo, people and tags description, uploading photos, changing tags and +comments. + +WWW: http://librdf.org/flickcurl/ diff --git a/www/flickcurl/pkg-plist b/www/flickcurl/pkg-plist new file mode 100644 index 000000000000..39f07ebc6e1d --- /dev/null +++ b/www/flickcurl/pkg-plist @@ -0,0 +1,9 @@ +bin/flickcurl +bin/flickcurl-config +bin/flickrdf +include/flickcurl.h +lib/libflickcurl.a +lib/libflickcurl.la +lib/libflickcurl.so +lib/libflickcurl.so.0 +libdata/pkgconfig/flickcurl.pc |