ports/152889: xorg-drivers default options kill batch install

Jason Bacon jwbacon at tds.net
Tue Dec 7 14:50:10 UTC 2010


>Number:         152889
>Category:       ports
>Synopsis:       xorg-drivers default options kill batch install
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Dec 07 14:50:08 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Jason Bacon
>Release:        8.1-release
>Organization:
Acadix Consulting, LLC
>Environment:
FreeBSD ibookbsd.jbacon.dyndns.org 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Sun Jul 18 11:09:21 UTC 2010     root at xserve.lan.xcllnt.net:/usr/obj/usr/src/sys/GENERIC  powerpc
>Description:
The default options for xorg-drivers includes the openchrome driver, which is only for x86-based architectures.  This prevents an unattended xorg installation on other architectures.
>How-To-Repeat:
Build xorg-drivers with default options on a non-x86 system.
>Fix:
See attached patch.

Patch attached with submission follows:

--- Makefile.orig	2010-12-05 07:56:28.000000000 -0600
+++ Makefile	2010-12-05 08:03:35.000000000 -0600
@@ -33,7 +33,7 @@
 
 .if ${ARCH} == "sparc64"
 VIDEO_ON+=	sunffb
-.else
+.elif ${ARCH} == "amd86" || ${ARCH} == "i386" || ${ARCH} == "ia64"
 VIDEO_ON+=	openchrome
 .endif
 


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list