Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Jan 2004 14:59:51 -0600
From:      Jeremy Messenger <mezz7@cox.net>
To:        Adam Weinberger <adamw@FreeBSD.org>
Cc:        FreeBSD GNOME Users <gnome@FreeBSD.org>
Subject:   Re: HEADS UP: New gettext update
Message-ID:  <opr2asl1k28ckrg5@smtp.central.cox.net>
In-Reply-To: <20040123202314.GN3365@toxic.magnesium.net>
References:  <1074887353.768.86.camel@gyros> <20040123201250.GK3365@toxic.magnesium.net> <1074889273.768.101.camel@gyros> <20040123202314.GN3365@toxic.magnesium.net>

next in thread | previous in thread | raw e-mail | index | archive | help
------------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 <adamw@FreeBSD.org> 
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--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?opr2asl1k28ckrg5>