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
59 lines
1.6 KiB
Makefile
59 lines
1.6 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= App-SD
|
|
PORTVERSION= 0.75
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel www perl5
|
|
MASTER_SITES= CPAN
|
|
MASTER_SITE_SUBDIR= CPAN:SPANG
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= App::SD is a peer-to-peer replicated distributed issue tracker
|
|
|
|
LICENSE= MIT
|
|
|
|
BUILD_DEPENDS= p5-DateTime>=:${PORTSDIR}/devel/p5-DateTime \
|
|
p5-DateTime-Format-Natural>=0:${PORTSDIR}/devel/p5-DateTime-Format-Natural \
|
|
p5-HTML-Tree>=0:${PORTSDIR}/www/p5-HTML-Tree \
|
|
p5-Prophet>=0:${PORTSDIR}/databases/p5-Prophet \
|
|
p5-Test-Script-Run>=0.02:${PORTSDIR}/devel/p5-Test-Script-Run
|
|
|
|
OPTIONS_DEFINE= GITHUB GOOGLECODE HIVEMINDER TRAC RT
|
|
OPTIONS_DEFAULT= GITHUB GOOGLECODE HIVEMINDER TRAC RT
|
|
GITHUB_DESC= Enable github sync
|
|
GOOGLECODE_DESC= Add support for google code
|
|
HIVEMINDER_DESC= Enable huveminder sync
|
|
TRAC_DESC= Enable trac sync
|
|
RT_DESC= Enable rt sync
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MGITHUB}
|
|
BUILD_DEPENDS+= p5-Net-GitHub>=0.18:${PORTSDIR}/net/p5-Net-GitHub
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGOOGLECODE}
|
|
BUILD_DEPENDS+= p5-Net-Google-Code>=0.14:${PORTSDIR}/net/p5-Net-Google-Code
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MHIVEMINDER}
|
|
BUILD_DEPENDS+= p5-Net-Jifty>=0.09:${PORTSDIR}/net/p5-Net-Jifty \
|
|
p5-Email-Address>=0:${PORTSDIR}/mail/p5-Email-Address \
|
|
p5-Email-MIME>=0:${PORTSDIR}/mail/p5-Email-MIME
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MTRAC}
|
|
BUILD_DEPENDS+= p5-Net-Trac>=0.13:${PORTSDIR}/www/p5-Net-Trac
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MRT}
|
|
BUILD_DEPENDS+= p5-RT-Client-REST>=0:${PORTSDIR}/www/p5-RT-Client-REST
|
|
.endif
|
|
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
.include <bsd.port.mk>
|