svn commit: r549964 - in head/graphics: drm-current-kmod drm-devel-kmod

Mark Linimon linimon at FreeBSD.org
Thu Sep 24 21:25:32 UTC 2020


Author: linimon
Date: Thu Sep 24 21:25:31 2020
New Revision: 549964
URL: https://svnweb.freebsd.org/changeset/ports/549964

Log:
  Allow building on powerpc64le.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/graphics/drm-current-kmod/Makefile
  head/graphics/drm-devel-kmod/Makefile

Modified: head/graphics/drm-current-kmod/Makefile
==============================================================================
--- head/graphics/drm-current-kmod/Makefile	Thu Sep 24 21:03:54 2020	(r549963)
+++ head/graphics/drm-current-kmod/Makefile	Thu Sep 24 21:25:31 2020	(r549964)
@@ -11,7 +11,7 @@ COMMENT=	DRM modules for the linuxkpi-based KMS compon
 LICENSE=	BSD2CLAUSE MIT GPLv2
 LICENSE_COMB=	multi
 
-ONLY_FOR_ARCHS=	aarch64 amd64 i386 powerpc64
+ONLY_FOR_ARCHS=	aarch64 amd64 i386 powerpc64 powerpc64le
 ONLY_FOR_ARCHS_REASON=	the new KMS components are only supported on amd64, i386, aarch64 and powerpc64
 
 RUN_DEPENDS=	gpu-firmware-kmod>=g20200914:graphics/gpu-firmware-kmod
@@ -55,7 +55,7 @@ PLIST_SUB+=	AMDGPU="@comment "
 PLIST_SUB+=	I915=""
 PLIST_SUB+=	VMWGFX=""
 PLIST_SUB+=	VBOXVIDEO=""
-.elif ${ARCH} == "aarch64" || ${ARCH} == "powerpc64"
+.elif ${ARCH} == "aarch64" || ${ARCH:Mpowerpc*}
 PLIST_SUB+=	AMDGPU=""
 PLIST_SUB+=	I915="@comment "
 PLIST_SUB+=	VBOXVIDEO="@comment "

Modified: head/graphics/drm-devel-kmod/Makefile
==============================================================================
--- head/graphics/drm-devel-kmod/Makefile	Thu Sep 24 21:03:54 2020	(r549963)
+++ head/graphics/drm-devel-kmod/Makefile	Thu Sep 24 21:25:31 2020	(r549964)
@@ -11,7 +11,7 @@ COMMENT=	DRM modules for the linuxkpi-based KMS compon
 LICENSE=	BSD2CLAUSE MIT GPLv2
 LICENSE_COMB=	multi
 
-ONLY_FOR_ARCHS=	aarch64 amd64 i386 powerpc64
+ONLY_FOR_ARCHS=	aarch64 amd64 i386 powerpc64 powerpc64le
 ONLY_FOR_ARCHS_REASON=	the new KMS components are only supported on amd64, arm64, i386 and powerpc64
 
 RUN_DEPENDS=	gpu-firmware-kmod>=g20200914:graphics/gpu-firmware-kmod
@@ -51,7 +51,7 @@ PLIST_SUB+=	AMDKFD="@comment "
 PLIST_SUB+=	I915=""
 PLIST_SUB+=	VMWGFX=""
 PLIST_SUB+=	VBOXVIDEO=""
-.elif ${ARCH} == "aarch64" || ${ARCH} == "powerpc64"
+.elif ${ARCH} == "aarch64" || ${ARCH:Mpowerpc*}
 PLIST_SUB+=	AMDGPU=""
 PLIST_SUB+=	AMDKFD="@comment " 
 PLIST_SUB+=	I915="@comment "


More information about the svn-ports-all mailing list