85fe6fdd99
exist in NetBSD 8.0, but which either doesn't exist or exist with a new major version in NetBSD 9.0_BETA. The distributions and PLISTs produced by modifying the gencompat.sh script (will be committed shortly), and running it over the complete 8.0 and 9.0_BETA release binaries. This package does not attempt to separate out the X11 libraries affected in a separate compat80-x11 package (since gencompat.sh didn't do it...). The list of different arm variants is possibly a bit too long, but better to err on that side than it being too short. The package is otherwise patterned after the compat61 package.
29 lines
752 B
Makefile
29 lines
752 B
Makefile
# $NetBSD: emulator.mk,v 1.1 2019/10/15 12:01:22 he Exp $
|
|
#
|
|
# This file is included by netbsd-compat.mk in the emulator framework.
|
|
#
|
|
# Variables set by this file:
|
|
#
|
|
# EMUL_DISTRO
|
|
# The NetBSD distribution used to provide the files.
|
|
#
|
|
# EMUL_EXEC_FMT
|
|
# The executable format of the emulated operating system.
|
|
#
|
|
# EMULSUBDIR
|
|
# Path relative to ${PREFIX} where the files and directories are
|
|
# located, e.g. emul/aout.
|
|
#
|
|
# DEPENDS_${EMUL_DISTRO}.*
|
|
# A table that maps "modules" to NetBSD package dependencies.
|
|
#
|
|
|
|
EMUL_DISTRO= netbsd-6.1
|
|
|
|
EMUL_EXEC_FMT= ELF
|
|
EMULSUBDIR= emul/netbsd
|
|
OPSYS_EMULDIR= ${_OPSYS_EMULDIR.netbsd}
|
|
|
|
.if empty(OS_VERSION:M[0-5].*) && empty(OS_VERSION:M6.1*)
|
|
DEPENDS_netbsd-6.1.base?= compat61>=6.1:../../emulators/compat61
|
|
.endif
|