blob: 95b99a083f616b17a2683c1af417f6aa4ab1395b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: options.mk,v 1.2 2015/05/03 15:01:11 spz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.compat60
PKG_SUPPORTED_OPTIONS= x11
PKG_SUGGESTED_OPTIONS= x11
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mx11)
# there are no X11 incompatibilities for netbsd-6-0 to netbsd-6-1
# DEPENDS+= compat60-x11>=6.0:../../emulators/compat60-x11
.endif
|