JamVM is a new Java Virtual Machine which conforms to the JVM specification version 2 (blue book). In comparison to most other VM's (free and commercial) it is extremely small, with a stripped executable on PowerPC of only ~135K, and Intel 100K. However, unlike other small VMs (e.g. KVM) it is designed to support the full specification, and includes support for object finalisation, the Java Native Interface (JNI) and the Reflection API. From maintainer: Frederick C. Druseikis <fredd@cse.sc.edu>
35 lines
727 B
Makefile
35 lines
727 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/04/11 01:04:15 kurt Exp $
|
|
|
|
COMMENT= "a free, standards-compilant jvm with a small footprint"
|
|
|
|
ONLY_FOR_ARCHS= i386 powerpc arm amd64
|
|
|
|
DISTNAME= jamvm-1.4.2
|
|
|
|
CATEGORIES= lang java
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=jamvm/}
|
|
|
|
HOMEPAGE= http://jamvm.sourceforge.net/
|
|
|
|
MAINTAINER= Frederick C. Druseikis <fredd@cse.sc.edu>
|
|
|
|
# GPL 2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
USE_GMAKE= Yes
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
RUN_DEPENDS= ::lang/classpath/
|
|
|
|
WANTLIB= c m z pthread
|
|
|
|
CONFIGURE_ARGS+= --with-classpath-install-dir=${LOCALBASE} \
|
|
--includedir=${LOCALBASE}/include/jamvm
|
|
|
|
.include <bsd.port.mk>
|