- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
64 lines
1.6 KiB
Makefile
64 lines
1.6 KiB
Makefile
# Created by: Eric Anholt <anholt@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xorg-vfbserver
|
|
PORTVERSION= 1.14.7
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= x11-servers
|
|
MASTER_SITES= XORG/individual/xserver
|
|
DISTNAME= xorg-server-${PORTVERSION}
|
|
DIST_SUBDIR= xorg/xserver
|
|
|
|
MAINTAINER= x11@FreeBSD.org
|
|
COMMENT= X virtual framebuffer server from X.Org
|
|
|
|
USES= tar:bzip2 pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-dmx \
|
|
--disable-xephyr \
|
|
--disable-xnest \
|
|
--disable-kdrive \
|
|
--disable-xfbdev \
|
|
--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 \
|
|
--enable-xvfb \
|
|
--with-fontrootdir=${PREFIX}/share/fonts
|
|
|
|
USE_XORG= pixman x11 fixesproto damageproto xcmiscproto xtrans \
|
|
bigreqsproto randrproto renderproto xextproto inputproto \
|
|
videoproto compositeproto recordproto \
|
|
fontsproto resourceproto xf86driproto glproto \
|
|
presentproto xineramaproto xkbfile xfont
|
|
|
|
PLIST_FILES= bin/Xvfb \
|
|
man/man1/Xvfb.1.gz
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == armv6
|
|
EXTRA_PATCHES+= ${.CURDIR}/../xorg-server/files/extra-arm-patch-hw__xfree86__os-support__bsd__Makefile.in
|
|
EXTRA_PATCHES+= ${.CURDIR}/../xorg-server/files/extra-arm-patch-include__servermd.h
|
|
.endif
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/hw/vfb; DESTDIR=${STAGEDIR} ${MAKE} install
|
|
|
|
.include <bsd.port.post.mk>
|