Update to 1.9m71 and unbreak
Special thanks to: Pavel Janik, and Kris Kennaway
They contributed for in many ways.
Additional contributors. thank you very much for all:
daichi, Eric Bachard, kan, lofi, Martin Hollmichel,
nork, obrien, Sander Vesik, sem, and Stefan Taxhet
2005-01-10 13:28:20 +01:00
|
|
|
#!/usr/bin/perl
|
|
|
|
# generate full build shell script for OpenOffice.org
|
|
|
|
# Whom: Maho Nakata <maho@FreeBSD.org>
|
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
print "#!/bin/csh\n";
|
2005-08-28 10:41:59 +02:00
|
|
|
print "make deinstall clean\n";
|
|
|
|
print "/usr/bin/time -h make WITH_CCACHE=yes install package package-rename solver sdk ure languagepack deinstall >& log.en\n";
|
2005-11-26 00:22:20 +01:00
|
|
|
#print "rm work/.configure* work/.build* \n";
|
|
|
|
#workaround for breakage at odk sdk_oo
|
|
|
|
print "make deinstall clean\n";
|
|
|
|
|
2005-02-20 05:38:57 +01:00
|
|
|
print "/usr/bin/time -h make ALL_LOCALIZED_LANGS=yes >& log.all\n";
|
Update to 1.9m71 and unbreak
Special thanks to: Pavel Janik, and Kris Kennaway
They contributed for in many ways.
Additional contributors. thank you very much for all:
daichi, Eric Bachard, kan, lofi, Martin Hollmichel,
nork, obrien, Sander Vesik, sem, and Stefan Taxhet
2005-01-10 13:28:20 +01:00
|
|
|
|
|
|
|
open ( FILE, "< Makefile.localized") ;
|
|
|
|
while(<FILE>){
|
|
|
|
@tmp=split (' ',$_);
|
|
|
|
@tmp2=split ('"',$tmp[3]);
|
|
|
|
if ( $tmp[0] eq ".if" && $tmp[1] eq "\${LOCALIZED_LANG}" ) { $LANG=$tmp2[1];
|
|
|
|
print "make TWEAK_L10N=yes LOCALIZED_LANG=$LANG pre-everything\n";
|
2005-08-28 10:41:59 +02:00
|
|
|
print "/usr/bin/time -h make LOCALIZED_LANG=$LANG WITH_CCACHE=yes languagepack package package-rename deinstall >& log.$LANG\n";
|
Update to 1.9m71 and unbreak
Special thanks to: Pavel Janik, and Kris Kennaway
They contributed for in many ways.
Additional contributors. thank you very much for all:
daichi, Eric Bachard, kan, lofi, Martin Hollmichel,
nork, obrien, Sander Vesik, sem, and Stefan Taxhet
2005-01-10 13:28:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
close FILE;
|