diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2019-08-24 22:28:34 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2019-08-24 22:28:34 +0000 |
commit | cbd18582d7379828c222d4276e6cae10ebf16a09 (patch) | |
tree | 249cabeccf1b92701564adc855dc8c02d1240dbf /java/bootstrap-openjdk11/Makefile | |
parent | science/opensim-core: Add the JAVA option that adds the Java binding (diff) |
Minor fixes
* Fix include file path
* Fix the mode for jspawnhelper so it is executable
* Sort the packing list
Diffstat (limited to 'java/bootstrap-openjdk11/Makefile')
-rw-r--r-- | java/bootstrap-openjdk11/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/java/bootstrap-openjdk11/Makefile b/java/bootstrap-openjdk11/Makefile index 33ebeea61f4e..57f53f32e62b 100644 --- a/java/bootstrap-openjdk11/Makefile +++ b/java/bootstrap-openjdk11/Makefile @@ -2,6 +2,7 @@ PORTNAME= openjdk11 PORTVERSION= 11.0.2.9.2 +PORTREVISION= 1 CATEGORIES= java devel MASTER_SITES= LOCAL/glewis/bootstrap-openjdk11 PKGNAMEPREFIX= bootstrap- @@ -26,8 +27,12 @@ JDK_ARCH= ${ARCH} INSTALLDIR= ${STAGEDIR}${PREFIX}/${JDK_ROOT} +post-extract: + -${MV} ${WRKSRC}/include/bsd ${WRKSRC}/include/freebsd + do-install: @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${INSTALLDIR} @cd ${WRKSRC} && ${COPYTREE_BIN} bin ${INSTALLDIR} + @${CHMOD} a+x ${INSTALLDIR}/lib/jspawnhelper .include <bsd.port.mk> |