mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 01:56:37 -04:00
The following features have been added or changed: - Instead of USE_JAVA use USES=java. This defaults to USES=java:build,run if NO_BUILD is undefined. Else it defaults to USES=java:run - Instead of USE_ANT=yes use USES=java:ant which also implies USES=java:build - Instead of JAVA_BUILD=yes use USES=java:build. Does not imply run or extract - Instead of JAVA_EXTRACT=yes use USES=java:extract does not imply build or run - Instead of JAVA_RUN=yes use USES=java:run does not imply extract or build - Instead of USE_JAVA=<version> use USES=java and JAVA_VERSION=<version> Approved by: mat (portmgr), glewis Differential Revision: https://reviews.freebsd.org/D48201
22 lines
491 B
Makefile
22 lines
491 B
Makefile
PORTNAME= Java
|
|
PORTVERSION= 4.7
|
|
PORTREVISION= 5
|
|
CATEGORIES= devel java perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= numisemis@yahoo.com
|
|
COMMENT= Perl extension for accessing a JVM remotely or locally
|
|
|
|
USES= java perl5
|
|
USE_RC_SUBR= javaserver
|
|
USE_PERL5= configure
|
|
|
|
post-patch:
|
|
${RM} ${WRKSRC}/java_server_install.pl
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/p5-Java
|
|
${INSTALL_DATA} ${WRKSRC}/JavaServer.jar ${STAGEDIR}${PREFIX}/share/p5-Java
|
|
|
|
.include <bsd.port.mk>
|