1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00

Support staging.

This commit is contained in:
Jung-uk Kim 2014-06-09 23:03:07 +00:00
parent a2a619a3d8
commit 566905fff2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=357219
2 changed files with 10 additions and 7 deletions

View File

@ -32,7 +32,6 @@ OPTIONS_DEFINE= JDK
OPTIONS_DEFAULT=JDK
JDK_DESC= Build with native JDK
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MJDK}
@ -58,10 +57,14 @@ post-patch:
${WRKSRC}/configure ${WRKSRC}/src/mm/boehm-gc/configure
do-install:
${MKDIR} ${DATADIR}
${INSTALL_PROGRAM} ${WRKSRC}/src/cacao/cacao ${PREFIX}/bin
${INSTALL_LIB} ${WRKSRC}/src/cacao/.libs/libjvm.so ${PREFIX}/lib
${INSTALL_DATA} ${WRKSRC}/src/classes/vm.zip ${DATADIR}
${INSTALL_MAN} ${WRKSRC}/man/cacao.1 ${MANPREFIX}/man/man1
${MKDIR} ${STAGEDIR}${DATADIR}
${INSTALL_PROGRAM} ${WRKSRC}/src/cacao/cacao \
${STAGEDIR}${PREFIX}/bin
${INSTALL_LIB} ${WRKSRC}/src/cacao/.libs/libjvm.so \
${STAGEDIR}${PREFIX}/lib
${INSTALL_DATA} ${WRKSRC}/src/classes/vm.zip \
${STAGEDIR}${DATADIR}
${INSTALL_MAN} ${WRKSRC}/man/cacao.1 \
${STAGEDIR}${MANPREFIX}/man/man1
.include <bsd.port.mk>

View File

@ -1,4 +1,4 @@
CACAO is a Java Virtual Machine (JVM) which uses Just-In-Time (JIT)
compilation to execute Java methods natively.
WWW: http://www.cacaojvm.org/
WWW: http://www.cacaojvm.org/