From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Apr 2 11:10:20 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org 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 BD91416A424 for ; Sun, 2 Apr 2006 11:10:20 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC1F243D53 for ; Sun, 2 Apr 2006 11:10:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k32BAI0D017507 for ; Sun, 2 Apr 2006 11:10:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k32BAIrN017506; Sun, 2 Apr 2006 11:10:18 GMT (envelope-from gnats) Resent-Date: Sun, 2 Apr 2006 11:10:18 GMT Resent-Message-Id: <200604021110.k32BAIrN017506@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, Erik Greenwald Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AB7E16A400 for ; Sun, 2 Apr 2006 11:04:15 +0000 (UTC) (envelope-from erik@smluc.org) Received: from phoenix.smluc.org (phoenix.smluc.org [12.28.48.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5D1643D48 for ; Sun, 2 Apr 2006 11:04:14 +0000 (GMT) (envelope-from erik@smluc.org) Received: by phoenix.smluc.org (Postfix, from userid 1000) id 88E5E1CE7B; Fri, 31 Mar 2006 07:49:09 -0600 (CST) Message-Id: <20060331134909.88E5E1CE7B@phoenix.smluc.org> Date: Fri, 31 Mar 2006 07:49:09 -0600 (CST) From: Erik Greenwald To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: erik@math.missouristate.edu Subject: ports/95221: [Maintainer Update] graphics/gauche-gl minor fix for 'broken' status X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Erik Greenwald List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Apr 2006 11:10:20 -0000 >Number: 95221 >Category: ports >Synopsis: [Maintainer Update] graphics/gauche-gl minor fix for 'broken' status >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Apr 02 11:10:18 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Erik Greenwald >Release: FreeBSD 6.0-STABLE i386 >Organization: >Environment: System: FreeBSD fenris 6.0-STABLE FreeBSD 6.0-STABLE #2: Fri Nov 4 19:18:58 EST 2005 root@fenris:/usr/obj/usr/src/sys/FENRIS i386 >Description: Both gauche-gl and recent xorg include/GL/glext.h typedef GLchar for OpenGL2.0 support. The second typedef caused a compiler error... this comments out the gauche-gl typedef and I'll just assume that people have a reasonably recent copy of xorg-libraries. This adds files/patch-src_gen-ptrs.scm I bumped the port revision "just because". If someone has it already installed from before the xorg-libraries bump, it should still work, but this is a tiny compile, so *shrug*. If not appropriate, let me know :) >How-To-Repeat: >Fix: --- graphics.gauche-gl.patch begins here --- Index: graphics/gauche-gl/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/gauche-gl/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- graphics/gauche-gl/Makefile 25 Feb 2006 21:40:30 -0000 1.19 +++ graphics/gauche-gl/Makefile 31 Mar 2006 13:36:15 -0000 @@ -7,7 +7,7 @@ PORTNAME= gl PORTVERSION= 0.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics scheme MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= gauche @@ -22,8 +22,6 @@ LIB_DEPENDS= glut.4:${PORTSDIR}/graphics/libglut RUN_DEPENDS= ${BUILD_DEPENDS} -BROKEN= Does not build - USE_GL= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include" Index: graphics/gauche-gl/files/patch-src_gen-ptrs.scm =================================================================== RCS file: graphics/gauche-gl/files/patch-src_gen-ptrs.scm diff -N graphics/gauche-gl/files/patch-src_gen-ptrs.scm --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ graphics/gauche-gl/files/patch-src_gen-ptrs.scm 31 Mar 2006 13:36:15 -0000 @@ -0,0 +1,11 @@ +--- src/gen-ptrs.scm.orig Fri Mar 31 08:31:31 2006 ++++ src/gen-ptrs.scm Fri Mar 31 08:33:23 2006 +@@ -51,7 +51,7 @@ + (cgen-decl "#ifndef APIENTRY" "#define APIENTRY /*empty*/" "#endif" + "#ifndef APIENTRYP" "#define APIENTRYP APIENTRY*" "#endif" + "#ifndef GL_VESRION_2_0" +- "typedef char GLchar;" ++ "/* typedef char GLchar; -- we seem to have this defined in our glext.h? */" + "#endif" + "#ifndef GL_VERSION_1_5" + "typedef ptrdiff_t GLintptr;" --- graphics.gauche-gl.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: