mod_flickr is a apache module (for apache 2.0 and above) that makes call to

flickr via flickr API's to get a users (configured in httpd.conf) public photo
sets, photos in sets and recent photos uploaded in flickr etc...

Currently only 4 api calls have been implmeneted (all are GET calls). These
API's return data in XML format. The XML can then be parsed by the calling code
(e.g. front end Javascript/php) to display thumbnails of the images say in a
scrollbar. (Code for front end is not distributed as yet)

This module can be used by web developers who want to show their photos/albums
uploaded in flickr on their website and/or access to metadata of their photos
for their own needs/purposes.

WWW: http://www.vshank.com/code/mod_flickr

PR:		ports/138299
Submitted by:	vshankar
This commit is contained in:
Martin Wilke 2009-09-13 12:34:31 +00:00
parent bad12b112d
commit 94670b07da
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=241333
4 changed files with 52 additions and 0 deletions

View file

@ -458,6 +458,7 @@
SUBDIR += mod_fcgid
SUBDIR += mod_fileiri
SUBDIR += mod_filter
SUBDIR += mod_flickr
SUBDIR += mod_geoip
SUBDIR += mod_geoip2
SUBDIR += mod_gzip

34
www/mod_flickr/Makefile Normal file
View file

@ -0,0 +1,34 @@
# New ports collection makefile for: mod_flickr
# Date created: 2009-08-24
# Whom: vshankar
#
# $FreeBSD$
#
PORTNAME= mod_flickr
PORTVERSION= 1.0
CATEGORIES= www
MASTER_SITES= http://www.vshank.com/modcode/
MAINTAINER= venkyshankar@yahoo.com
COMMENT= Apache module for Flickr API access
LIB_DEPENDS= curl.5:${PORTSDIR}/ftp/curl
XTRA_FLAGS= -lcurl
AP_INC= ${LOCALBASE}/include
AP_LIB= ${LOCALBASE}/lib
.if defined(WITH_DEBUG)
XTRA_FLAGS+= -DDEBUG
.endif
AP_EXTRAS= ${XTRA_FLAGS}
USE_LDCONFIG= yes
USE_APACHE= 2.0+
AP_FAST_BUILD= yes
AP_GENPLIST= yes
.include <bsd.port.mk>

3
www/mod_flickr/distinfo Normal file
View file

@ -0,0 +1,3 @@
MD5 (mod_flickr-1.0.tar.gz) = 029e7263043de04252d683a91185ff79
SHA256 (mod_flickr-1.0.tar.gz) = b43ab4cc9332462e6d4c37dbe3aa8ed0d9d9e3fb87a405d8d9c264c2b039aab6
SIZE (mod_flickr-1.0.tar.gz) = 10634

14
www/mod_flickr/pkg-descr Normal file
View file

@ -0,0 +1,14 @@
mod_flickr is a apache module (for apache 2.0 and above) that makes call to
flickr via flickr API's to get a users (configured in httpd.conf) public photo
sets, photos in sets and recent photos uploaded in flickr etc...
Currently only 4 api calls have been implmeneted (all are GET calls). These
API's return data in XML format. The XML can then be parsed by the calling code
(e.g. front end Javascript/php) to display thumbnails of the images say in a
scrollbar. (Code for front end is not distributed as yet)
This module can be used by web developers who want to show their photos/albums
uploaded in flickr on their website and/or access to metadata of their photos
for their own needs/purposes.
WWW: http://www.vshank.com/code/mod_flickr