dbc3266452
Update the snapshot of the intel DDX driver for xorg. Upstream has stopped doing releases of this, but there are still code updates, so we have used snapshots of the upstream source repo for some time. PR: 232353 Submitted by: jbeich Tested by: jbeic, rkoberman@gmail.com
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# Created by: lesi@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xf86-video-intel
|
|
PORTVERSION= 2.99.917.20180906
|
|
CATEGORIES= x11-drivers
|
|
MASTER_SITES= http://cgit.freedesktop.org/xorg/${XORG_CAT}/${PORTNAME}/snapshot/
|
|
DISTNAME= ${PORTNAME}-${COMMIT_ID}
|
|
|
|
MAINTAINER= x11@FreeBSD.org
|
|
COMMENT= Driver for Intel integrated graphics chipsets
|
|
|
|
LICENSE= MIT # various
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libxcb-util.so:x11/xcb-util \
|
|
libdrm.so:graphics/libdrm
|
|
|
|
COMMIT_ID= 25c9a2fcc83ae7252a178b42262da383e59df744
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
ONLY_FOR_ARCHS_REASON= Intel integrated GPU only exists in Intel x86 processors/chipsets
|
|
|
|
USE_GL= gl
|
|
|
|
USE_LDCONFIG= yes
|
|
XORG_CAT= driver
|
|
USE_XORG= pciaccess pixman x11 xcb xext xrender xv xvmc
|
|
|
|
USES+= cpe autoreconf
|
|
CPE_VENDOR= x
|
|
|
|
OPTIONS_SINGLE= ACCEL
|
|
OPTIONS_SINGLE_ACCEL= SNA UXA
|
|
OPTIONS_DEFAULT= UXA
|
|
|
|
ACCEL_DESC= Default AccelMethod (if not specified in xorg.conf)
|
|
SNA_DESC= SandyBridge's New Acceleration
|
|
UXA_DESC= Unified Acceleration Architecture
|
|
|
|
CONFIGURE_ARGS+= --disable-udev
|
|
|
|
SNA_CONFIGURE_ON= --with-default-accel=sna
|
|
UXA_CONFIGURE_ON= --with-default-accel=uxa
|
|
|
|
.include <bsd.port.mk>
|