eee58d187e
Before, we had: site_perl : lib/perl5/site_perl/5.18 site_perl/perl_arch : lib/perl5/site_perl/5.18/mach perl_man3 : lib/perl5/5.18/man/man3 Now we have: site_perl : lib/perl5/site_perl site_arch : lib/perl5/site_perl/mach/5.18 perl_man3 : lib/perl5/site_perl/man/man3 Modules without any .so will be installed at the same place regardless of the Perl version, minimizing the upgrade when the major Perl version is changed. It uses a version dependent directory for modules with compiled bits. As PERL_ARCH is no longer needed in plists, it has been removed from PLIST_SUB. The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now always removed, as is perllocal.pod. The old site_perl and site_perl/arch directories have been kept in the default Perl @INC for all Perl ports, and will be phased out as these old Perl versions expire. PR: 194969 Differential Revision: https://reviews.freebsd.org/D1019 Exp-run by: antoine Reviewed by: perl@ Approved by: portmgr
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
# Created by: Lung-Pin Chang <changlp@cs.nctu.edu.tw>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= WebService-Dropbox
|
|
PORTVERSION= 1.18
|
|
PORTREVISION= 1
|
|
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
|
|
|
|
.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>
|