9b179c3549
- changes: * Do not make it a slave of xorg-server anymore so it doesn't change depending on NEW_XORG * Update to the highest version able to deal with dependencies of the oldest xorg supported
59 lines
1.5 KiB
Makefile
59 lines
1.5 KiB
Makefile
# Created by: Eric Anholt <anholt@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xorg-nestserver
|
|
PORTVERSION= 1.14.7
|
|
PORTEPOCH= 1
|
|
CATEGORIES= x11-servers
|
|
MASTER_SITES= XORG
|
|
MASTER_SITE_SUBDIR= individual/xserver
|
|
DISTNAME= xorg-server-${PORTVERSION}
|
|
DIST_SUBDIR= xorg/xserver
|
|
|
|
MAINTAINER= x11@FreeBSD.org
|
|
COMMENT= Nesting X server from X.Org
|
|
|
|
USES= tar:bzip2 pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-dmx \
|
|
--disable-xephyr \
|
|
--enable-xnest \
|
|
--disable-xfbdev \
|
|
--disable-kdrive \
|
|
--disable-xfake \
|
|
--disable-screensaver \
|
|
--disable-xwin \
|
|
--disable-xwayland \
|
|
--disable-xorg \
|
|
--without-xmlto \
|
|
--disable-docs \
|
|
--disable-devel-docs \
|
|
--localstatedir=/var \
|
|
--without-dtrace \
|
|
--without-doxygen \
|
|
--disable-libpciaccess \
|
|
--disable-glx \
|
|
--disable-dri \
|
|
--disable-config-hal \
|
|
--disable-libdrm \
|
|
--disable-glx-tls \
|
|
--disable-vbe \
|
|
--disable-vgahw \
|
|
--disable-xvfb
|
|
|
|
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
|
|
|
|
PLIST_FILES= bin/Xnest \
|
|
man/man1/Xnest.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/hw/xnest/Xnest ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/hw/xnest/man/Xnest.1 ${STAGEDIR}${PREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|