mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
# Created by: Bjoern Koenig <bkoenig@alpha-tierchen.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jamvm
|
|
PORTVERSION= 1.5.4
|
|
CATEGORIES= java devel
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/JamVM%20${PORTVERSION}
|
|
|
|
MAINTAINER= java@FreeBSD.org
|
|
COMMENT= A compact Java virtual machine
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/share/classpath/glibj.zip:${PORTSDIR}/java/classpath
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-classpath-install-dir=${LOCALBASE}
|
|
USE_GMAKE= yes
|
|
USES= pkgconfig
|
|
|
|
OPTIONS_DEFINE= FFI ZIP
|
|
OPTIONS_DEFAULT=FFI ZIP
|
|
FFI_DESC= use libffi to call native methods
|
|
ZIP_DESC= turn-on zip support in the bootstrap loader
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MFFI}
|
|
LIB_DEPENDS+= ffi:${PORTSDIR}/devel/libffi
|
|
CONFIGURE_ARGS+= --enable-ffi
|
|
.elif ${ARCH} == "sparc64"
|
|
IGNORE= for ${ARCH} requires libffi
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MZIP}
|
|
BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip
|
|
PLIST_SUB+= WITH_ZIP="" WITHOUT_ZIP="@comment "
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-zip
|
|
PLIST_SUB+= WITH_ZIP="@comment " WITHOUT_ZIP=""
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-extract:
|
|
@${REINPLACE_CMD} -e "s,\(^include_HEADERS = .*\)jni.h\(.*\),\1\2," ${WRKSRC}/src/Makefile.in
|
|
|
|
.include <bsd.port.post.mk>
|