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
37 lines
1.4 KiB
Makefile
37 lines
1.4 KiB
Makefile
# Created by: Gunter Wambaugh <gunter@six-two.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Net-Google-DataAPI
|
|
PORTVERSION= 0.28.01
|
|
PORTREVISION= 1
|
|
CATEGORIES= net perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E}
|
|
|
|
MAINTAINER= gunter@six-two.net
|
|
COMMENT= Base implementations for modules to negotiate with Google Data APIs
|
|
|
|
BUILD_DEPENDS= p5-Any-Moose>=0.04:${PORTSDIR}/devel/p5-Any-Moose \
|
|
p5-Digest-SHA1>=0:${PORTSDIR}/security/p5-Digest-SHA1 \
|
|
p5-LWP-Protocol-https>=0:${PORTSDIR}/www/p5-LWP-Protocol-https \
|
|
p5-Lingua-EN-Inflect-Number>=0:${PORTSDIR}/textproc/p5-Lingua-EN-Inflect-Number \
|
|
p5-Mouse>=0.51:${PORTSDIR}/devel/p5-Mouse \
|
|
p5-Net-Google-AuthSub>=0.5:${PORTSDIR}/net/p5-Net-Google-AuthSub \
|
|
p5-Net-OAuth>=0:${PORTSDIR}/net/p5-Net-OAuth \
|
|
p5-Net-OAuth2>=0.07:${PORTSDIR}/net/p5-Net-OAuth2 \
|
|
p5-Text-Glob>=0:${PORTSDIR}/textproc/p5-Text-Glob \
|
|
p5-URI>=0:${PORTSDIR}/net/p5-URI \
|
|
p5-XML-Atom>=0:${PORTSDIR}/textproc/p5-XML-Atom \
|
|
p5-libwww>=0:${PORTSDIR}/www/p5-libwww \
|
|
p5-namespace-autoclean>=0:${PORTSDIR}/devel/p5-namespace-autoclean
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \
|
|
p5-Test-MockModule>=0:${PORTSDIR}/devel/p5-Test-MockModule \
|
|
p5-Test-MockObject>=0:${PORTSDIR}/devel/p5-Test-MockObject \
|
|
p5-Test-Warn>=0:${PORTSDIR}/devel/p5-Test-Warn
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
.include <bsd.port.mk>
|