From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jun 2 16:00:40 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 43A0116A41F for ; Fri, 2 Jun 2006 16:00:40 +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 F16A943D48 for ; Fri, 2 Jun 2006 16:00:39 +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 k52G0dFd046162 for ; Fri, 2 Jun 2006 16:00:39 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k52G0dfT046161; Fri, 2 Jun 2006 16:00:39 GMT (envelope-from gnats) Date: Fri, 2 Jun 2006 16:00:39 GMT Message-Id: <200606021600.k52G0dfT046161@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Erik Greenwald Cc: Subject: Re: 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: Fri, 02 Jun 2006 16:00:40 -0000 The following reply was made to PR ports/95221; it has been noted by GNATS. From: Erik Greenwald To: bug-followup@FreeBSD.org, vs@freebsd.org Cc: erik@math.missouristate.edu Subject: Re: ports/95221 : [Maintainer Update] graphics/gauche-gl minor fix for 'broken' status Date: Mon, 29 May 2006 12:15:12 -0500 Ah, there was a typo'd #ifdef in that file, as well. I have submitted a patch to the gauche-gl project to fix it. In the interim, here is a fresh diff. Patch is also available at http://math.missouristate.edu/~erik/fbsd/graphics_gauche-gl.patch if easier... Thanks! --- 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 29 May 2006 17:05:18 -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" @@ -37,6 +35,9 @@ INFO= gauche-gl-refe gauche-gl-refj .endif +post-patch: + ${REINPLACE_CMD} s/VESRION/VERSION/ ${WRKSRC}/src/gen-ptrs.scm + do-install: cd ${WRKSRC}/src; ${MAKE} ${INSTALL_TARGET} cd ${WRKSRC}/lib; ${MAKE} ${INSTALL_TARGET} --- graphics_gauche-gl.patch ends here ---