From owner-svn-ports-head@FreeBSD.ORG Sat Mar 8 00:11:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3508D798 for ; Sat, 8 Mar 2014 00:11:06 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1B9AEF7A for ; Sat, 8 Mar 2014 00:11:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s280B57n078017 for ; Sat, 8 Mar 2014 00:11:05 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s280B5PL078009 for svn-ports-head@freebsd.org; Sat, 8 Mar 2014 00:11:05 GMT (envelope-from bdrewery) Received: (qmail 73288 invoked from network); 7 Mar 2014 18:11:04 -0600 Received: from unknown (HELO roundcube.xk42.net) (10.10.5.5) by sweb.xzibition.com with SMTP; 7 Mar 2014 18:11:04 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 07 Mar 2014 18:11:04 -0600 From: Bryan Drewery To: Martin Wilke Subject: Re: svn commit: r347435 - head/graphics/libGL Organization: FreeBSD In-Reply-To: <201403080008.s2808Mt6023933@svn.freebsd.org> References: <201403080008.s2808Mt6023933@svn.freebsd.org> Message-ID: X-Sender: bdrewery@FreeBSD.org User-Agent: Roundcube Webmail/0.9.5 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, owner-ports-committers@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Mar 2014 00:11:06 -0000 On 2014-03-07 18:08, Martin Wilke wrote: > Author: miwi > Date: Sat Mar 8 00:08:21 2014 > New Revision: 347435 > URL: http://svnweb.freebsd.org/changeset/ports/347435 > QAT: https://qat.redports.org/buildarchive/r347435/ > > Log: > - Fix build with stagedir support by removing leftovers > > Discussed/Reviewed by: bdrewery/antoine > > Modified: > head/graphics/libGL/Makefile > > Modified: head/graphics/libGL/Makefile > ============================================================================== > --- head/graphics/libGL/Makefile Sat Mar 8 00:03:56 2014 (r347434) > +++ head/graphics/libGL/Makefile Sat Mar 8 00:08:21 2014 (r347435) > @@ -30,4 +30,12 @@ LIBGLREVISION= 4 > CONFIGURE_ARGS+=--disable-gallium-intel > .endif > > +.if !defined(WITH_NEW_XORG) > +post-install: > + ${RM} ${STAGEDIR}${PREFIX}/include/GL/glu.h > + ${RM} ${STAGEDIR}${PREFIX}/include/GL/glu_mangle.h > + ${RM} ${STAGEDIR}${PREFIX}/include/GL/internal/dri_interface.h > + ${RM} ${STAGEDIR}${PREFIX}/libdata/pkgconfig/dri.pc > +.endif > + > .include I'm working on support for marking known orphans to ignore. It should be ready next week. For now, deleting from stagedir is the best way as it will work in check-orphans and poudriere. We don't want orphans in stagedirs. It leads to being hard to detect new orphans in updates due to all of the false-positives showing. -- Regards, Bryan Drewery