From owner-freebsd-gnome@FreeBSD.ORG Sat Jan 24 13:00:58 2004 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1F4D16A4CE; Sat, 24 Jan 2004 13:00:58 -0800 (PST) Received: from lakemtao06.cox.net (lakemtao06.cox.net [68.1.17.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA15143D2D; Sat, 24 Jan 2004 13:00:56 -0800 (PST) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.11]) by lakemtao06.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20040124210056.OFGF24575.lakemtao06.cox.net@mezz.mezzweb.com>; Sat, 24 Jan 2004 16:00:56 -0500 To: Adam Weinberger References: <1074887353.768.86.camel@gyros> <20040123201250.GK3365@toxic.magnesium.net> <1074889273.768.101.camel@gyros> <20040123202314.GN3365@toxic.magnesium.net> Message-ID: From: Jeremy Messenger Content-Type: multipart/mixed; boundary=----------eAO1xro200asXDbXh3q6cY MIME-Version: 1.0 Date: Sat, 24 Jan 2004 14:59:51 -0600 In-Reply-To: <20040123202314.GN3365@toxic.magnesium.net> User-Agent: Opera7.23/Linux M2 build 518 cc: FreeBSD GNOME Users Subject: Re: HEADS UP: New gettext update X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jan 2004 21:00:58 -0000 ------------eAO1xro200asXDbXh3q6cY Content-Type: text/plain; format=flowed; charset=iso-8859-1 Content-Transfer-Encoding: 8bit On Fri, 23 Jan 2004 15:23:14 -0500, Adam Weinberger wrote: >>> (01.23.2004 @ 1521 PST): Joe Marcus Clarke said, in 1.8K: << >> On Fri, 2004-01-23 at 15:12, Adam Weinberger wrote: >> > >> (01.23.2004 @ 1449 PST): Joe Marcus Clarke said, in 1.1K: << >> What do you mean by, "stops cold?" I have no problem with backing this >> out...but I like Mezz's suggestion, too. >>> end of "Re: HEADS UP: New gettext update" from Joe Marcus Clarke << > > I mean nothing will build against it. Which part did it failed? Right now, I am building x11/gnome2 (2.5.x) and so far it looks good compile w/ gettext 0.13. It's on the gnomepanel part now, it will be around two to three hours to finish. I wrote a simple shell script (attaching) to do the work edit all /usr/ports/*/*/Makefile that has gettext in it. However, when the build is done and I do the test, then I will let everybody know the result. ======================== mezz% pkg_info | grep gettext ~ gettext-0.13 GNU gettext package mezz% pkg_info | grep gnome ~ gnomehier-1.0_13 An utility port, installing hierarchy of common GNOME direc gnomemimedata-2.4.1 A MIME and Application database for GNOME gnomevfs2-2.5.5_2 GNOME Virtual File System libgnome-2.5.3 Libraries for GNOME, a GNU desktop environment ======================== Cheers, Mezz > # Adam > > > -- > Adam Weinberger > adam@vectors.cx // adamw@FreeBSD.org // adamw@magnesium.net > http://www.vectors.cx -- bsdforums.org 's moderator, mezz. ------------eAO1xro200asXDbXh3q6cY Content-Disposition: attachment; filename=blah.sh Content-Type: text/plain; name=blah.sh Content-Transfer-Encoding: 8bit #!/bin/sh for moo in gettext gettext-old; do mv /usr/ports/devel/${moo}/Makefile /usr/ports/devel/${moo}/Makefile.bak; done for blah in `find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l "gettext"`; do sed -e "s|intl.5|intl.6|g" -e "s|gettext-old|gettext|g" ${blah} > ${blah}.new; mv ${blah}.new ${blah}; done for moo1 in gettext gettext-old; do mv /usr/ports/devel/${moo1}/Makefile.bak /usr/ports/devel/${moo1}/Makefile; done ------------eAO1xro200asXDbXh3q6cY--