b760897dde
Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10845
36 lines
801 B
Makefile
36 lines
801 B
Makefile
# $FreeBSD$
|
|
|
|
# this port is for future amdgpu kernel support testing.
|
|
|
|
PORTNAME= xf86-video-amdgpu
|
|
PORTVERSION= 1.3.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-drivers
|
|
|
|
MAINTAINER= x11@FreeBSD.org
|
|
COMMENT= X.Org amdgpu display driver
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libdrm_amdgpu.so:graphics/libdrm
|
|
|
|
USE_GL= gbm
|
|
XORG_CAT= driver
|
|
# No amdgpu kernel driver on non-x86 and PC98.
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
ONLY_FOR_ARCHS_REASON= KMS is required and currently only available on x86
|
|
|
|
CONFIGURE_ARGS+=--disable-udev
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if (${OSVERSION} < 1200019)
|
|
IGNORE= not supported on 11.x or older, no kernel support
|
|
.endif
|
|
|
|
PLIST_FILES= lib/xorg/modules/drivers/amdgpu_drv.so \
|
|
man/man4/amdgpu.4x.gz \
|
|
share/X11/xorg.conf.d/10-amdgpu.conf
|
|
|
|
.include <bsd.port.mk>
|