mirror of
https://git.freebsd.org/ports.git
synced 2025-06-02 03:16:28 -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
29 lines
667 B
Makefile
29 lines
667 B
Makefile
PORTNAME= saxon-he
|
|
DISTVERSION= 10-6
|
|
CATEGORIES= textproc java
|
|
MASTER_SITES= SF/saxon/Saxon-HE/${PORTVERSION:R}/Java/
|
|
DISTNAME= SaxonHE${DISTVERSION}J
|
|
|
|
MAINTAINER= thierry@FreeBSD.org
|
|
COMMENT= XSLT 3.0 / XPath 3.1 / XQuery 3.1 processor for Java
|
|
WWW= https://www.saxonica.com/
|
|
|
|
LICENSE= MPL20
|
|
LICENSE_FILE= ${WRKSRC}/notices/LICENSE.txt
|
|
|
|
USES= java zip
|
|
|
|
NO_WRKSUBDIR= yes
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
JARFILES= jline-2.14.6.jar \
|
|
saxon-he-10.6.jar \
|
|
saxon-he-test-10.6.jar
|
|
PLIST_FILES= ${JARFILES:S,^,%%JAVAJARDIR%%/,}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${JAVAJARDIR}
|
|
${INSTALL_DATA} ${JARFILES:S,^,${WRKSRC}/,} ${STAGEDIR}${JAVAJARDIR}
|
|
|
|
.include <bsd.port.mk>
|