29e347e197
The Xorg Team is pleased to announce the next round of Xorg updates. The team created a new flag called WITH_NEW_XORG that users can include in /etc/make.conf. This was created for the intel KMS work being done althouthough It probably works for other chips. Unfortunately, the intel KMS driver will only work on FreeBSD 9(RELENG|STABLE) or 10/HEAD users. Older version of FreeBSD will not be supported. Intel users will need to patch their source manually with Konstantin?s KMS kernel patch to get the newer chips to work. Please carefully read UPDATING entry. Changes: - libdrm 2.4.31 (including KMS support) - mesa 7.11.2 - xorg-server 1.10.6 - a lot of new Graphic Drivers. I would like to thank: Koop Mast Eitan Adler Niclas Zeising and all helpers and testers from x11@.
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
# New ports collection makefile for: xorg-nestserver
|
|
# Date created: 21 July 2004
|
|
# Whom: anholt@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xorg-nestserver
|
|
PORTREVISION= 1
|
|
|
|
COMMENT= Nesting X server from X.Org
|
|
|
|
MASTERDIR= ${.CURDIR}/../xorg-server
|
|
DESCR= ${.CURDIR}/pkg-descr
|
|
USE_XORG= x11 xf86driproto glproto randrproto renderproto fixesproto \
|
|
damageproto xcmiscproto xextproto xf86miscproto inputproto \
|
|
xf86vidmodeproto xf86bigfontproto scrnsaverproto bigreqsproto \
|
|
dri2proto resourceproto fontsproto xf86dgaproto videoproto \
|
|
compositeproto trapproto recordproto resourceproto \
|
|
xineramaproto xinerama evieproto xkbfile xfont fontenc xkbui \
|
|
xxf86misc xxf86vm xaw7 xmu xpm xext pixman xtrans
|
|
|
|
CONFIGURE_ARGS= --disable-dmx --disable-xvfb --disable-xorg \
|
|
--without-xmlto --disable-docs --disable-devel-docs \
|
|
--localstatedir=/var --without-dtrace
|
|
|
|
SLAVE_PORT= yes
|
|
PLIST_FILES= bin/Xnest
|
|
MAN1= Xnest.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/hw/xnest/Xnest ${PREFIX}/bin/
|
|
.if defined(WITH_NEW_XORG)
|
|
${INSTALL_MAN} ${WRKSRC}/hw/xnest/man/Xnest.1 ${PREFIX}/man/man1/
|
|
.else
|
|
${INSTALL_MAN} ${WRKSRC}/hw/xnest/Xnest.1 ${PREFIX}/man/man1/
|
|
.endif
|
|
|
|
.include "${MASTERDIR}/Makefile"
|