45 lines
978 B
Makefile
45 lines
978 B
Makefile
# $OpenBSD: Makefile,v 1.13 2011/03/08 06:44:55 ajacoutot Exp $
|
|
|
|
ONLY_FOR_ARCHS= arm amd64 i386 powerpc
|
|
|
|
COMMENT= free, standards-compliant jvm with a small footprint
|
|
|
|
DISTNAME= jamvm-1.5.3
|
|
|
|
CATEGORIES= lang java
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=jamvm/}
|
|
|
|
HOMEPAGE= http://jamvm.sourceforge.net/
|
|
|
|
MAINTAINER= Frederick C. Druseikis <fdruseikis@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
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
BUILD_DEPENDS= lang/jikes>=1.22
|
|
BUILD_DEPENDS+= lang/classpath>=0.98
|
|
|
|
RUN_DEPENDS= lang/classpath>=0.98
|
|
|
|
WANTLIB= c m z pthread
|
|
|
|
CONFIGURE_ARGS+= --with-classpath-install-dir=${LOCALBASE}
|
|
CONFIGURE_ARGS+= --libdir=${LOCALBASE}/lib/jamvm
|
|
CONFIGURE_ARGS+= --includedir=${LOCALBASE}/include/jamvm
|
|
CONFIGURE_ARGS+= --disable-tls
|
|
|
|
post-install:
|
|
@chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share
|
|
|
|
.include <bsd.port.mk>
|