pkgsrc/emulators/compat50/options.mk
spz 2263a6dd41 NetBSD compat packages. They chain each other so if you're on NetBSD-6.0
and want NetBSD-5.0 compatibility, compat50 will depend on compat51 to
bridge the gap. There is currently no need for a compat52, nor for a
compat60-x11.

The compat tarballs may be larger than strictly necessary.
Testing was 'lightly', so there's probably Room for Improvement (tm).
2013-02-17 17:24:07 +00:00

13 lines
390 B
Makefile

# $NetBSD: options.mk,v 1.1 2013/02/17 17:24:07 spz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.compat50
PKG_SUPPORTED_OPTIONS= x11
PKG_SUGGESTED_OPTIONS= x11
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mx11)
. if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "x86_64"
DEPENDS+= compat50-x11>=5.0:../../emulators/compat50-x11
. endif
.endif