From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 1 17:40:20 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB4C516A4CE for ; Sat, 1 May 2004 17:40:20 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D26D43D1F for ; Sat, 1 May 2004 17:40:20 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i420eKC8052883 for ; Sat, 1 May 2004 17:40:20 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i420eKub052882; Sat, 1 May 2004 17:40:20 -0700 (PDT) (envelope-from gnats) Resent-Date: Sat, 1 May 2004 17:40:20 -0700 (PDT) Resent-Message-Id: <200405020040.i420eKub052882@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, j.e.drews@att.net Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E7E716A4CE for ; Sat, 1 May 2004 17:35:29 -0700 (PDT) Received: from mtiwmhc11.worldnet.att.net (mtiwmhc11.worldnet.att.net [204.127.131.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A85F343D45 for ; Sat, 1 May 2004 17:35:28 -0700 (PDT) (envelope-from j.e.drews@att.net) Received: from 204.127.135.60 ([204.127.135.60]) by worldnet.att.net (mtiwmhc11) with SMTP id <2004050200352711100ic48de>; Sun, 2 May 2004 00:35:27 +0000 Received: from [64.105.56.145] by 204.127.135.60; Sun, 02 May 2004 00:35:27 +0000 Message-Id: <050220040035.12128.4094424F00082B4600002F602160383116FF8C889A8D9BD19AD1@att.net> Date: Sun, 02 May 2004 00:35:27 +0000 From: j.e.drews@att.net To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/66155: [Patch] games/tuxracer won't start X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 May 2004 00:40:20 -0000 >Number: 66155 >Category: ports >Synopsis: [Patch] games/tuxracer won't start >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: Sat May 01 17:40:20 PDT 2004 >Closed-Date: >Last-Modified: >Originator: Jonathan >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD notebook.silbsd.org 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Thu Apr 29 23:05:11 CDT 2004 root@notebook.silbsd.org:/usr/obj/usr/src/sys/NOTEBOOK i386 >Description: Tuxracer will not start. >How-To-Repeat: In a Xterm, type "tuxracer". The game will briefly flash and then this warning will appear: ***tuxracer error: error evalating /usr/local/share/tuxracer/tux.tcl: couldn't read file "tux.tcl": permission denied Please check the value of `data_dir' in ~/.tuxracer/options and make sure it points to the location of the latest version of the tuxracer-data files. >Fix: The problem is that the data files in games/tuxracer/work/tuxracer-data-0.61 are not have world readable. There is no way for tuxracer to access any of it's data. NOTE: portlint showed that USE_GL should be substituted for USE_MESA To fix apply the following patch: --- Makefile.tuxracer.org Sat May 1 18:35:04 2004 +++ /usr/ports/games/tuxracer/Makefile Sat May 1 19:13:12 2004 @@ -20,7 +20,7 @@ LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 USE_SDL= mixer sdl -USE_MESA= yes +USE_GL= yes USE_GMAKE= yes USE_AUTOMAKE_VER= 14 AUTOMAKE_ARGS= -a @@ -40,7 +40,7 @@ post-install: ${MKDIR} ${DATADIR} - (cd ${WORKDATA} && ${TAR} -c -f - *) | \ + (chmod -R o+r ${WORKDATA} && cd ${WORKDATA} && ${TAR} -c -f - *) | \ (cd ${DATADIR} && ${TAR} -x -f - ) .include >Release-Note: >Audit-Trail: >Unformatted: