From owner-freebsd-x11@FreeBSD.ORG Wed May 12 01:57:53 2004 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8178316A4CE for ; Wed, 12 May 2004 01:57:53 -0700 (PDT) Received: from ares.wolfpond.org (ns1.wolfpond.org [62.212.96.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D34843D49 for ; Wed, 12 May 2004 01:57:51 -0700 (PDT) (envelope-from ftigeot@wolfpond.org) Received: from aoi.wolfpond.org (aoi.wolfpond.org [IPv6:2001:7a8:24db:1:20c:76ff:feb4:27e1]) by ares.wolfpond.org (8.12.10/8.12.10) with ESMTP id i4C8vnxJ075885; Wed, 12 May 2004 10:57:49 +0200 (CEST) (envelope-from ftigeot@aoi.wolfpond.org) Received: from aoi.wolfpond.org (localhost [127.0.0.1]) by aoi.wolfpond.org (8.12.10/8.12.10) with ESMTP id i4C8vrVp011133; Wed, 12 May 2004 10:57:53 +0200 (CEST) (envelope-from ftigeot@aoi.wolfpond.org) Received: (from ftigeot@localhost) by aoi.wolfpond.org (8.12.10/8.12.10/Submit) id i4C8vqhr011132; Wed, 12 May 2004 10:57:52 +0200 (CEST) (envelope-from ftigeot) Date: Wed, 12 May 2004 10:57:52 +0200 From: Francois Tigeot To: Eric Anholt Message-ID: <20040512085752.GA7347@aoi.wolfpond.org> References: <200405082350.i48NoTeN014588@freefall.freebsd.org> <20040509070925.GA16043@aoi.wolfpond.org> <1084090864.1492.40.camel@leguin> <20040509084228.GB16043@aoi.wolfpond.org> <1084168333.54825.31.camel@leguin> <20040511070309.GA22234@aoi.wolfpond.org> <1084263634.757.103.camel@leguin> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="5vNYLRcllDrimb99" Content-Disposition: inline In-Reply-To: <1084263634.757.103.camel@leguin> User-Agent: Mutt/1.4.2.1i cc: x11@freebsd.org Subject: Re: New port: xorg-server X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 May 2004 08:57:53 -0000 --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, May 11, 2004 at 01:20:35AM -0700, Eric Anholt wrote: > On Tue, 2004-05-11 at 00:03, Francois Tigeot wrote: > > > > I believe you forgot some bits: I tried to compile a full X11 environment > > without XFree86-libraries and some ports failed due to a missing > > X11/Intrinsic.h file. > > This should be installed by x11-toolkits/libXt. Perhaps you deinstalled > XFree86-4-libraries after installing that port, causing the header to > get removed but not the .pc file that gets depended on. You're right, my /usr/X11R6 was full of junk. > > > > > - Check xorg-server build on non-x86 > > > > > > > > This should not be a problem: my primary workstation is an amd64 machine > > > > and the server is working nicely on it. > > > > I believe I only had to add a small patch for pci stuff. > > > > > > Excellent, I'd be happy to get patches for it. > > > > Patch attached. > > Thanks. Committed. Cool :-) I have attached an other one to make the port package itself correctly on non-i386 architectures... -- Francois Tigeot --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="xorg-server.diff" diff -urN xorg-server.orig/Makefile xorg-server/Makefile --- xorg-server.orig/Makefile Mon May 10 18:50:39 2004 +++ xorg-server/Makefile Wed May 12 06:59:23 2004 @@ -30,8 +30,7 @@ getconfig.1 \ gtf.1 \ kbd_mode.1 \ - pcitweak.1 \ - scanpci.1 + pcitweak.1 MAN4= citron.4 \ dynapro.4 \ elographics.4 \ diff -urN xorg-server.orig/pkg-plist xorg-server/pkg-plist --- xorg-server.orig/pkg-plist Mon May 10 07:04:59 2004 +++ xorg-server/pkg-plist Wed May 12 06:58:00 2004 @@ -117,7 +117,7 @@ %%I386%%lib/modules/drivers/tseng_drv.o %%I386%%lib/modules/drivers/vesa_drv.o %%SPARC64_NA%%lib/modules/drivers/vga_drv.o -lib/modules/drivers/via_drv.o +%%I386%%lib/modules/drivers/via_drv.o %%I386%%lib/modules/drivers/vmware_drv.o lib/modules/extensions/libGLcore.a lib/modules/extensions/libdbe.a --5vNYLRcllDrimb99--