blob: 498dbf113c92e56bd84301a79d3735f8d9149d7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $OpenBSD: Makefile.bsd-wrapper,v 1.7 2011/01/02 14:23:40 matthieu Exp $
.include <bsd.xconf.mk>
_SRCDIR= ${.CURDIR}/../xserver
CONFIGURE_ARGS= --localstatedir=/var --sysconfdir=/etc/X11 \
--with-xkb-path=/etc/X11/xkb \
--with-xkb-output=/var/db/xkb \
--with-default-xkb-rules=xorg \
--with-dri-driver-path=${LIBDIR}/modules/dri \
--enable-dri \
--disable-xorg \
--disable-xace \
--enable-kdrive \
--disable-dmx \
--disable-xnest \
--disable-xvfb
realinstall:
(cd hw/kdrive/ephyr ; make install)
.include <bsd.xorg.mk>
|