HEADS UP: New gettext update

Jeremy Messenger mezz7 at cox.net
Sat Jan 24 13:00:58 PST 2004


On Fri, 23 Jan 2004 15:23:14 -0500, Adam Weinberger <adamw at 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 at vectors.cx // adamw at FreeBSD.org // adamw at magnesium.net
> http://www.vectors.cx


-- 
bsdforums.org 's moderator, mezz.
-------------- next part --------------
#!/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


More information about the freebsd-gnome mailing list