pkgsrc/x11/xterm/options.mk
joerg 58c3144236 Mechanically replace all includes of buildlink3.mk of the following
packages with the modular Xorg equivalent. Those are falling back
to the old location by default, so this commmit doesn't change
dependencies.

graphics/xpm ==> x11/libXpm
fonts/Xft2 ==> x11/libXft
x11/Xfixes ==> x11/libXfixes
x11/xcursor ==> x11/libXcursor
x11/Xrender ==> x11/libXrender
x11/Xrandr ==> libXrandr
2006-12-15 20:32:52 +00:00

28 lines
675 B
Makefile

# $NetBSD: options.mk,v 1.4 2006/12/15 20:33:06 joerg Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.xterm
PKG_SUPPORTED_OPTIONS= xterm-luit freetype
PKG_OPTIONS_OPTIONAL_GROUPS= color
PKG_OPTIONS_GROUP.color= xterm-88color xterm-256color
PKG_SUGGESTED_OPTIONS= xterm-256color xterm-luit
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mxterm-88color)
CONFIGURE_ARGS+= --enable-88-color
.endif
.if !empty(PKG_OPTIONS:Mxterm-256color)
CONFIGURE_ARGS+= --enable-256-color
.endif
.if !empty(PKG_OPTIONS:Mxterm-luit)
CONFIGURE_ARGS+= --enable-luit
.endif
.if !empty(PKG_OPTIONS:Mfreetype)
CONFIGURE_ARGS+= --enable-freetype
.include "../../x11/libXft/buildlink3.mk"
.endif