3c9a1d11c2
This knob was turned on for all version of FreeBSD in r369875 (2014-10-03) and officially deprecated. Since then, it was gradually removed from many ports when they needed an update. x11-servers/xorg-server was the last major user of this knob. The port was updated to xserver 1.14 in r374982 (2014-12-19). The update got rid of the knob, clearing the path to the final removal. This commit changes ports who were checking for WITH_NEW_XORG and remove its handling from bsd.port.mk. While here, two sanity checks are added to warn user about WITH_KMS and WITH_NEW_XORG which have no effect now. Differential Revision: https://reviews.freebsd.org/D1351 Reviewed by: antoine, bapt, kwm Approved by: portmgr (antoine, bapt), kwm
29 lines
952 B
Makefile
29 lines
952 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= xephyr
|
|
|
|
COMMENT= X server from X.Org based on kdrive
|
|
|
|
MASTERDIR= ${.CURDIR}/../xorg-server
|
|
DESCR= ${.CURDIR}/pkg-descr
|
|
USE_XORG= x11 xf86driproto glproto randrproto renderproto fixesproto \
|
|
dri2proto damageproto xcmiscproto xtrans inputproto \
|
|
xf86bigfontproto scrnsaverproto bigreqsproto \
|
|
resourceproto fontsproto videoproto \
|
|
compositeproto trapproto recordproto \
|
|
xineramaproto xinerama evieproto xkbfile xfont \
|
|
xau xdmcp xext fontenc xv pixman
|
|
|
|
CONFIGURE_ARGS= --enable-kdrive --enable-xephyr --disable-dmx --disable-xvfb \
|
|
--without-xmlto --disable-docs --disable-devel-docs \
|
|
--disable-xnest --localstatedir=/var --without-dtrace
|
|
|
|
SLAVE_PORT= yes
|
|
PLIST_FILES= bin/Xephyr man/man1/Xephyr.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/hw/kdrive/ephyr/Xephyr ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/hw/kdrive/ephyr/man/Xephyr.1 ${STAGEDIR}${PREFIX}/man/man1/
|
|
|
|
.include "${MASTERDIR}/Makefile"
|