From owner-freebsd-x11@FreeBSD.ORG Mon Feb 15 18:59:09 2010 Return-Path: Delivered-To: x11@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E2941065694 for ; Mon, 15 Feb 2010 18:59:09 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.freebsd.org (Postfix) with ESMTP id C55608FC16 for ; Mon, 15 Feb 2010 18:59:08 +0000 (UTC) Received: from acrux.dbai.tuwien.ac.at (acrux.dbai.tuwien.ac.at [128.131.111.60]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id 4E3891E05C for ; Mon, 15 Feb 2010 19:59:05 +0100 (CET) Received: by acrux.dbai.tuwien.ac.at (Postfix, from userid 1203) id 279F31604A; Mon, 15 Feb 2010 19:59:08 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by acrux.dbai.tuwien.ac.at (Postfix) with ESMTP id 1368E16048 for ; Mon, 15 Feb 2010 19:59:08 +0100 (CET) Date: Mon, 15 Feb 2010 19:59:08 +0100 (CET) From: Gerald Pfeifer To: x11@FreeBSD.org Message-ID: User-Agent: Alpine 1.99 (LSU 1142 2008-08-13) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Subject: PATCH: graphics/libGL/Makefile simplification X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Feb 2010 18:59:09 -0000 In the course of building in a partial ports tree, I noticed that graphics/libGL/Makefile seems overly complicated. One reason to simplify this (apart to just avoid confusing naive ports committers like myself ;-) is that one can always check out individual ports with "cvs co libGL" and then build them, which generally works. In fact, of some 30 ports where I did this last weekend, only two failed -- libGL and libGLU. Okay to commit? Gerald @FreeBSD.org Index: Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/libGL/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- Makefile 7 Feb 2010 11:51:05 -0000 1.13 +++ Makefile 15 Feb 2010 18:45:43 -0000 @@ -25,5 +25,5 @@ ${RM} ${WRKSRC}/include/GL/glu*.h cd ${WRKSRC}/src/mesa; ${GMAKE} install-libgl -.include "${.CURDIR}/../../graphics/libGL/bsd.mesalib.mk" +.include "${.CURDIR}/bsd.mesalib.mk" .include