diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-11-24 05:20:16 +0000 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-11-24 05:20:16 +0000 |
commit | 21635e890fb32b3b37a3ab416be2c5f73be261d4 (patch) | |
tree | 0fd69d9501a8942cc140a301d4ae14523b346fb6 /net | |
parent | d0cf7356bf4e787a326f3a6a48fee95b2ce8dff6 (diff) | |
download | freebsd-ports-21635e890fb32b3b37a3ab416be2c5f73be261d4.zip |
The Dropbox API is a OAuth based API. I try to abstract as much away
as possible so you should not need to know too much about it.
WWW: http://search.cpan.org/dist/Net-Dropbox-API/
PR: ports/152406
Submitted by: Gea-Suan Lin <gslin at gslin.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/p5-Net-Dropbox-API/Makefile | 28 | ||||
-rw-r--r-- | net/p5-Net-Dropbox-API/distinfo | 2 | ||||
-rw-r--r-- | net/p5-Net-Dropbox-API/pkg-descr | 4 | ||||
-rw-r--r-- | net/p5-Net-Dropbox-API/pkg-plist | 8 |
5 files changed, 43 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 3387116e4342..3e3d2ec61654 100644 --- a/net/Makefile +++ b/net/Makefile @@ -553,6 +553,7 @@ SUBDIR += p5-Net-Delicious SUBDIR += p5-Net-Dict SUBDIR += p5-Net-Divert + SUBDIR += p5-Net-Dropbox-API SUBDIR += p5-Net-EPP SUBDIR += p5-Net-EPP-Proxy SUBDIR += p5-Net-FS-Flickr diff --git a/net/p5-Net-Dropbox-API/Makefile b/net/p5-Net-Dropbox-API/Makefile new file mode 100644 index 000000000000..95549d3c92ac --- /dev/null +++ b/net/p5-Net-Dropbox-API/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: p5-Net-Dropbox-API +# Date created: 2010-11-19 +# Whom: Gea-Suan Lin <gslin@gslin.org> +# +# $FreeBSD$ +# + +PORTNAME= Net-Dropbox-API +PORTVERSION= 0.9 +CATEGORIES= net perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= gslin@gslin.org +COMMENT= A dropbox API interface + +RUN_DEPENDS= p5-Data-Random>=0:${PORTSDIR}/devel/p5-Data-Random \ + p5-JSON>=0:${PORTSDIR}/converters/p5-JSON \ + p5-Mouse>=0:${PORTSDIR}/devel/p5-Mouse \ + p5-Net-OAuth>=0:${PORTSDIR}/net/p5-Net-OAuth \ + p5-common-sense>=0:${PORTSDIR}/devel/p5-common-sense \ + p5-libwww>=0:${PORTSDIR}/www/p5-libwww + +PERL_CONFIGURE= yes + +MAN3= Net::Dropbox::API.3 + +.include <bsd.port.mk> diff --git a/net/p5-Net-Dropbox-API/distinfo b/net/p5-Net-Dropbox-API/distinfo new file mode 100644 index 000000000000..07f568fd0562 --- /dev/null +++ b/net/p5-Net-Dropbox-API/distinfo @@ -0,0 +1,2 @@ +SHA256 (Net-Dropbox-API-0.9.tar.gz) = fe08594b94f30b1d9830aaf107db5fc437d69ebb7a339198bfee3e77927d8c4d +SIZE (Net-Dropbox-API-0.9.tar.gz) = 25613 diff --git a/net/p5-Net-Dropbox-API/pkg-descr b/net/p5-Net-Dropbox-API/pkg-descr new file mode 100644 index 000000000000..88d7e4fe33ed --- /dev/null +++ b/net/p5-Net-Dropbox-API/pkg-descr @@ -0,0 +1,4 @@ +The Dropbox API is a OAuth based API. I try to abstract as much away +as possible so you should not need to know too much about it. + +WWW: http://search.cpan.org/dist/Net-Dropbox-API/ diff --git a/net/p5-Net-Dropbox-API/pkg-plist b/net/p5-Net-Dropbox-API/pkg-plist new file mode 100644 index 000000000000..4dd776c914f8 --- /dev/null +++ b/net/p5-Net-Dropbox-API/pkg-plist @@ -0,0 +1,8 @@ +@comment $FreeBSD$ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Dropbox/API/.packlist +%%SITE_PERL%%/Net/Dropbox/API.pm +@dirrmtry %%SITE_PERL%%/Net/Dropbox +@dirrmtry %%SITE_PERL%%/Net +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Dropbox/API +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Dropbox +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net |