380b6ec244
Remove now obsolete packages.
61 lines
1.6 KiB
Makefile
61 lines
1.6 KiB
Makefile
# $NetBSD: options.mk,v 1.18 2018/03/07 11:57:38 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.modular-xorg-server
|
|
PKG_SUPPORTED_OPTIONS= inet6 debug dtrace
|
|
PKG_SUGGESTED_OPTIONS= inet6
|
|
.if ${X11_TYPE} == "modular"
|
|
PKG_SUPPORTED_OPTIONS+= dri
|
|
PKG_SUGGESTED_OPTIONS+= dri
|
|
.endif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= dri dtrace
|
|
|
|
.if !empty(PKG_OPTIONS:Mdri)
|
|
.include "../../graphics/libepoxy/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.MesaLib+= MesaLib>=11
|
|
.include "../../graphics/MesaLib/buildlink3.mk"
|
|
.include "../../x11/xorgproto/buildlink3.mk"
|
|
.include "../../x11/libdrm/buildlink3.mk"
|
|
.include "../../x11/libxshmfence/buildlink3.mk"
|
|
PLIST.dri= yes
|
|
CONFIGURE_ARGS+= --enable-dri
|
|
CONFIGURE_ARGS+= --enable-dri2
|
|
CONFIGURE_ARGS+= --enable-dri3
|
|
CONFIGURE_ARGS+= --enable-glx
|
|
CONFIGURE_ARGS+= --enable-glamor
|
|
CONFIGURE_ARGS+= --enable-present
|
|
.else
|
|
###
|
|
### XXX Perhaps we should allow for a built-in glx without dri enabled?
|
|
###
|
|
CONFIGURE_ARGS+= --disable-dri
|
|
CONFIGURE_ARGS+= --disable-dri2
|
|
CONFIGURE_ARGS+= --disable-dri3
|
|
CONFIGURE_ARGS+= --disable-glx
|
|
CONFIGURE_ARGS+= --disable-glamor
|
|
CONFIGURE_ARGS+= --disable-present
|
|
pre-build: disable-modesetting
|
|
.PHONY: disable-modesetting
|
|
disable-modesetting:
|
|
(${ECHO} "all:"; ${ECHO} "install:") > ${WRKSRC}/hw/xfree86/drivers/modesetting/Makefile
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ipv6
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
CFLAGS+= -ggdb
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdtrace)
|
|
PLIST.dtrace= yes
|
|
CONFIGURE_ARGS+= --with-dtrace
|
|
.else
|
|
CONFIGURE_ARGS+= --without-dtrace
|
|
.endif
|