- include bsd.pkg.mk explicitly, rather than in Makefile.common - replace dependency on linuxppc_lib with suse_base to get a sufficiently recent glibc - teach the remaining two usages of `uname -m` output about our various powerpc platforms This makes the Blackdown JRE finally work on powerpc again. Note that suse_base requires a Linux kernel version >= 2.2. NetBSD-current's COMPAT_LINUX reports itself as 2.4.18 by default on i386 and powerpc. On NetBSD/powerpc 1.6, you'll need to override the default value of the "emul.linux.kern.osrelease" sysctl. On NetBSD < 1.6, you can try setting the sysctl, but the emulation may be insufficient to run this software properly. Also note that on powerpc, you must specify the "-green" option, because the Classic VM hangs.
24 lines
528 B
Makefile
24 lines
528 B
Makefile
# $NetBSD: Makefile,v 1.9 2002/11/25 14:07:42 schmonz Exp $
|
|
#
|
|
|
|
BASENAME= j2re
|
|
DISTNAME= ${EXTNAME}-${BLACKDOWN_ARCH}
|
|
PKGNAME= blackdown-jre13-1
|
|
COMMENT= Blackdown's Java(tm) Runtime Environment 1.3.1
|
|
|
|
.if ${MACHINE_ARCH} == "arm"
|
|
DISTNAME= ${BASENAME}-RC1-linux-arm
|
|
.endif
|
|
|
|
.include "../../lang/blackdown-jre13/Makefile.common"
|
|
|
|
ONLY_FOR_PLATFORM+= NetBSD-*-arm Linux-*-arm
|
|
|
|
PLIST_SRC= ${PKGDIR}/PLIST
|
|
.if ${BLACKDOWN_ARCH} == "i386"
|
|
PLIST_SRC+= ${PKGDIR}/PLIST.i386
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|
|
|
|
PREFIX= ${JVM_HOME}
|