blob: 27f2f6ffd8d06c9093b35c3d60ee43a70519f7dd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Created by: Lung-Pin Chang <changlp@cs.nctu.edu.tw>
# $FreeBSD$
PORTNAME= WebService-Dropbox
PORTVERSION= 1.18
CATEGORIES= net perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:ASKADNA
PKGNAMEPREFIX= p5-
MAINTAINER= changlp@cs.nctu.edu.tw
COMMENT= Perl interface to Dropbox API
LICENSE= ART10 GPLv1
LICENSE_COMB= dual
BUILD_DEPENDS= p5-JSON>=2.53:${PORTSDIR}/converters/p5-JSON \
p5-Net-OAuth>=0.28:${PORTSDIR}/net/p5-Net-OAuth \
p5-URI>=1.60:${PORTSDIR}/net/p5-URI
RUN_DEPENDS:= ${BUILD_DEPENDS}
OPTIONS_DEFINE= LWP
LWP_DESC= Use LWP instead of Furl
USES= perl5
USE_PERL5= configure
MAN3= WebService::Dropbox.3
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MLWP}
BUILD_DEPENDS+= p5-LWP-Protocol-https>=6.03:${PORTSDIR}/www/p5-LWP-Protocol-https \
p5-libwww>=6.04:${PORTSDIR}/www/p5-libwww
RUN_DEPENDS+= p5-LWP-Protocol-https>=6.03:${PORTSDIR}/www/p5-LWP-Protocol-https \
p5-libwww>=6.04:${PORTSDIR}/www/p5-libwww
.else
BUILD_DEPENDS+= p5-Furl>=1.01:${PORTSDIR}/www/p5-Furl \
p5-IO-Socket-SSL>=1.77:${PORTSDIR}/security/p5-IO-Socket-SSL
RUN_DEPENDS+= p5-Furl>=1.01:${PORTSDIR}/www/p5-Furl \
p5-IO-Socket-SSL>=1.77:${PORTSDIR}/security/p5-IO-Socket-SSL
.endif
.include <bsd.port.mk>
|