svn commit: r342071 - head/graphics/libdrm

Koop Mast kwm at FreeBSD.org
Fri Jan 31 21:01:58 UTC 2014


Author: kwm
Date: Fri Jan 31 21:01:57 2014
New Revision: 342071
URL: http://svnweb.freebsd.org/changeset/ports/342071
QAT: https://qat.redports.org/buildarchive/r342071/

Log:
  On ia64 [2] and powerpc [1] only the radeon bits are build. Fix the plist
  for this, while here add powerpc64 too [1].
  
  PR:		ports/184957 [1]
  		ports/184967 [2]
  Submitted by:	Andreas Tobler <andreast at FreeBSD.org> [1]
  		Anton Shterenlikht <mexas at bris.ac.uk> [2]

Modified:
  head/graphics/libdrm/Makefile

Modified: head/graphics/libdrm/Makefile
==============================================================================
--- head/graphics/libdrm/Makefile	Fri Jan 31 20:58:17 2014	(r342070)
+++ head/graphics/libdrm/Makefile	Fri Jan 31 21:01:57 2014	(r342071)
@@ -65,9 +65,12 @@ LIBDRM_REVISION=1
 PLIST_SUB+=	OLD="" NEW="@comment " NOUVEAU=""
 .endif
 
-.if ${ARCH} == "amd64" || ${ARCH} == "i386" || ${ARCH} == "ia64" || ${ARCH} == "powerpc"
+.if ${ARCH} == "amd64" || ${ARCH} == "i386"
 PLIST_SUB+=	INTEL_DRIVER=""
 PLIST_SUB+=	RADEON_DRIVERS=""
+.elif ${ARCH} == ia64 || ${ARCH} == powerpc || ${ARCH} == powerpc64
+PLIST_SUB+=	INTEL_DRIVER="@comment "
+PLIST_SUB+=	RADEON_DRIVERS=""
 .else
 PLIST_SUB+=	INTEL_DRIVER="@comment "
 PLIST_SUB+=	RADEON_DRIVERS="@comment "


More information about the svn-ports-all mailing list