summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorspz <spz@pkgsrc.org>2015-05-03 15:01:11 +0000
committerspz <spz@pkgsrc.org>2015-05-03 15:01:11 +0000
commitc3d3a61c7a62de0cb2a6390097c2276c370e7935 (patch)
treede741d2f258de1582a6eaff9e8c1012dc9b2bed6 /mk
parent251cad6dbbf979e0dfdc2e805172a6a05810e694 (diff)
downloadpkgsrc-c3d3a61c7a62de0cb2a6390097c2276c370e7935.tar.gz
fix compat60 (and strip down a lot to a backward compatibility package
to NetBSD 6.1) introduce compat61 (and compat61-x11 with it) as a backward compatibility package to NetBSD 7 add compat61* to mk/emulator/netbsd-compat.mk and emulators/Makefile some sort of version for the binary compat packages might have been useful, maybe abusing the DIST_SUBDIR? compat61 is likely to change if/when NetBSD 6.2 is released
Diffstat (limited to 'mk')
-rw-r--r--mk/emulator/netbsd-compat.mk8
1 files changed, 6 insertions, 2 deletions
diff --git a/mk/emulator/netbsd-compat.mk b/mk/emulator/netbsd-compat.mk
index bcc5cec6139..da458d1d7b2 100644
--- a/mk/emulator/netbsd-compat.mk
+++ b/mk/emulator/netbsd-compat.mk
@@ -1,4 +1,4 @@
-# $NetBSD: netbsd-compat.mk,v 1.4 2013/02/17 17:28:42 spz Exp $
+# $NetBSD: netbsd-compat.mk,v 1.5 2015/05/03 15:01:11 spz Exp $
#
# COMPAT_* for NetBSD -- see options(4).
#
@@ -42,6 +42,7 @@ _EMUL_PKG.compat-4.0= compat40
_EMUL_PKG.compat-5.0= compat50
_EMUL_PKG.compat-5.1= compat51
_EMUL_PKG.compat-6.0= compat60
+_EMUL_PKG.compat-6.1= compat61
_EMUL_PKG.compat= # defined, but empty
# EMUL_TYPE.netbsd can be "compat" or "compat-[0-9]*". If a particular
@@ -82,9 +83,12 @@ _EMUL_PKG.compat= # defined, but empty
. elif !empty(NETBSD_VERSION_REQD:M5.[1-9]*)
. include "${PKGSRCDIR}/emulators/${_EMUL_PKG.compat-5.1}/emulator.mk"
-. elif !empty(NETBSD_VERSION_REQD:M6.*)
+. elif !empty(NETBSD_VERSION_REQD:M6.0.*)
. include "${PKGSRCDIR}/emulators/${_EMUL_PKG.compat-6.0}/emulator.mk"
+. elif !empty(NETBSD_VERSION_REQD:M6.1.*)
+. include "${PKGSRCDIR}/emulators/${_EMUL_PKG.compat-6.1}/emulator.mk"
+
. endif
.else