From owner-freebsd-gnome@FreeBSD.ORG Tue May 22 18:58:48 2007 Return-Path: X-Original-To: gnome@freebsd.org Delivered-To: freebsd-gnome@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D395016A400; Tue, 22 May 2007 18:58:48 +0000 (UTC) (envelope-from stephen@math.missouri.edu) Received: from sccmmhc91.asp.att.net (sccmmhc91.asp.att.net [204.127.203.211]) by mx1.freebsd.org (Postfix) with ESMTP id 5F50E13C44C; Tue, 22 May 2007 18:58:48 +0000 (UTC) (envelope-from stephen@math.missouri.edu) Received: from laptop2.montlan (12-216-253-187.client.mchsi.com[12.216.253.187]) by sccmmhc91.asp.att.net (sccmmhc91) with ESMTP id <20070522185847m9100rpchce>; Tue, 22 May 2007 18:58:47 +0000 Message-ID: <46533D66.1070305@math.missouri.edu> Date: Tue, 22 May 2007 13:58:46 -0500 From: Stephen Montgomery-Smith User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.2) Gecko/20070505 SeaMonkey/1.1.1 MIME-Version: 1.0 To: pav@freebsd.org References: <465291FB.4010901@math.missouri.edu> <20070522071941.GB59910@xor.obsecurity.org> <4652FFB4.8060107@math.missouri.edu> <1179846295.52353.27.camel@pav.hide.vol.cz> <4653349D.7080608@math.missouri.edu> In-Reply-To: <4653349D.7080608@math.missouri.edu> Content-Type: multipart/mixed; boundary="------------060701070402080002070305" Cc: gnome@freebsd.org, freebsd-ports@freebsd.org, Kris Kennaway Subject: Re: More speed increases for make-ing ports X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 May 2007 18:58:48 -0000 This is a multi-part message in MIME format. --------------060701070402080002070305 Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 8bit Stephen Montgomery-Smith wrote: > Pav Lucistnik wrote: >> Stephen Montgomery-Smith píše v út 22. 05. 2007 v 09:35 -0500: >> >> >>> For example, this dramatically improves the time for invocations of >>> "make -V PKGNAME" for deskutils/alacarte (on my system from about 1.5 >>> seconds to .3 seconds). It only affects a few ports, but enough, I >>> think, to increase the speed of "make index" noticeably albeit not >>> dramatically. >>> >> >> Sounds good. Can you get us a fresh patch? >> >> > > Try the patch I sent last night. The modifier :u seems only to be > available in CURRENT, and writing it without invoking a shell without :u > is really beyond my skills. Or maybe it is not beyond my skills. This is what I came up with: --------------060701070402080002070305 Content-Type: text/plain; name="ddd" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ddd" --- bsd.gnome.mk-orig Tue May 22 01:29:08 2007 +++ bsd.gnome.mk Tue May 22 13:56:16 2007 @@ -655,6 +655,13 @@ _USE_GNOME+= ${${component}_USE_GNOME_IMPL} ${component} . endfor +.for component in ${_USE_GNOME_ALL} +. if ${_USE_GNOME:M${component}} != "" +_USE_GNOME_UNIQ+=${component} +. endif +.endfor +_USE_GNOME=${_USE_GNOME_UNIQ} + # Setup the GTK+ API version for pixbuf loaders, input method modules, # and theme engines. PLIST_SUB+= GTK2_VERSION="${GTK2_VERSION}" --------------060701070402080002070305--