summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Proschofsky <suka@gentoo.org>2007-03-16 09:27:33 +0000
committerAndreas Proschofsky <suka@gentoo.org>2007-03-16 09:27:33 +0000
commit99a4e7bdd7fd1b9bbf519f202806be90d0e477c4 (patch)
tree36768c955b5d6a54b322c4d4314d1d942ba0bdb9 /app-office
parentVersion bump. Fixed bug #129225 reported by Mindphaser <mindo83 AT t-online.d... (diff)
downloadgentoo-2-99a4e7bdd7fd1b9bbf519f202806be90d0e477c4.tar.gz
gentoo-2-99a4e7bdd7fd1b9bbf519f202806be90d0e477c4.tar.bz2
gentoo-2-99a4e7bdd7fd1b9bbf519f202806be90d0e477c4.zip
Release candidate for OpenOffice.org 2.2.0
(Portage version: 2.1.2.2)
Diffstat (limited to 'app-office')
-rw-r--r--app-office/openoffice-bin/ChangeLog9
-rw-r--r--app-office/openoffice-bin/files/2.2.0_rc3/50-openoffice-bin1
-rwxr-xr-xapp-office/openoffice-bin/files/2.2.0_rc3/ooo-wrapper2122
-rw-r--r--app-office/openoffice-bin/files/digest-openoffice-bin-2.2.0_rc3225
-rw-r--r--app-office/openoffice-bin/openoffice-bin-2.2.0_rc3.ebuild160
5 files changed, 516 insertions, 1 deletions
diff --git a/app-office/openoffice-bin/ChangeLog b/app-office/openoffice-bin/ChangeLog
index 857d3ed34dc7..74d2e5357776 100644
--- a/app-office/openoffice-bin/ChangeLog
+++ b/app-office/openoffice-bin/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-office/openoffice-bin
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/openoffice-bin/ChangeLog,v 1.156 2007/03/07 22:11:01 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/openoffice-bin/ChangeLog,v 1.157 2007/03/16 09:27:33 suka Exp $
+
+*openoffice-bin-2.2.0_rc3 (16 Mar 2007)
+
+ 16 Mar 2007; Andreas Proschofsky <suka@gentoo.org>
+ +files/2.2.0_rc3/50-openoffice-bin, +files/2.2.0_rc3/ooo-wrapper2,
+ +openoffice-bin-2.2.0_rc3.ebuild:
+ Release candidate for OpenOffice.org 2.2.0
07 Mar 2007; Chris Gianelloni <wolf31o2@gentoo.org>
openoffice-bin-2.1.0.ebuild:
diff --git a/app-office/openoffice-bin/files/2.2.0_rc3/50-openoffice-bin b/app-office/openoffice-bin/files/2.2.0_rc3/50-openoffice-bin
new file mode 100644
index 000000000000..6b16e47f0187
--- /dev/null
+++ b/app-office/openoffice-bin/files/2.2.0_rc3/50-openoffice-bin
@@ -0,0 +1 @@
+SEARCH_DIRS_MASK="/usr/lib/openoffice /usr/lib32/openoffice"
diff --git a/app-office/openoffice-bin/files/2.2.0_rc3/ooo-wrapper2 b/app-office/openoffice-bin/files/2.2.0_rc3/ooo-wrapper2
new file mode 100755
index 000000000000..2e3893f5d788
--- /dev/null
+++ b/app-office/openoffice-bin/files/2.2.0_rc3/ooo-wrapper2
@@ -0,0 +1,122 @@
+#!/usr/bin/perl -w
+#*****************************************************************************
+#
+# ooffice - Wrapper script for OpenOffice.org
+#
+# Based on the Mandrake work.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2, as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+#*****************************************************************************
+
+use strict;
+use IO::Handle;
+use Fcntl ':flock';
+
+my $Debug = $ENV{OOO_DEBUG};
+
+# Define the vendor of this particular OOo package
+my $VendorName = 'Gentoo';
+# Define system installation directory
+# Autoconf totally sucks for @libdir@ type substitution
+my $SystemInstallDir = 'INSTDIR';
+# Suffix for parallel installable versioning
+my $BinSuffix = '';
+# ooo-build version
+my $OOO_BUILDVERSION = 'PV';
+
+#=============================================================================
+# Main
+#=============================================================================
+
+# Parse command line arguments
+my @ooo_argv;
+my $session_quickstart;
+my $widgets_set;
+while ($ARGV[0]) {
+ $_ = shift;
+ if (m/^--session-quickstart/) {
+ $session_quickstart = 1;
+ } elsif (m/^--widgets-set/) {
+ $widgets_set = shift;
+ (defined $widgets_set) || die "Error: The option --widgets-set requires a value\n" .
+ "For example: --widgets-set gtk\n";
+ } elsif (m/^--version/) {
+ print "This is OpenOffice.org $OOO_BUILDVERSION\n";
+ exit 0;
+ } else {
+ push @ooo_argv, $_;
+ }
+}
+
+if (!@ooo_argv) {
+ my $arg;
+ if ($0 =~ m/\/oo(calc|draw|impress|math|web|writer|base)$BinSuffix$/) {
+ $arg = "-$1";
+ } elsif ($0 =~ m/\/oofromtemplate$BinSuffix$/) {
+ $arg = "slot:5500";
+ }
+
+ if ($arg) {
+ push @ooo_argv, "$arg";
+ $Debug && print "Append arg: $arg\n";
+ }
+} else {
+ $Debug && print "Ignoring type - since have filenames\n";
+}
+
+if (defined $widgets_set) {
+ $ENV{SAL_USE_VCLPLUGIN} = $widgets_set;
+}
+
+# overcome ghastly up-stream evilness
+$ENV{SAL_NOEXPANDFPICKER}='TRUE';
+
+if ($session_quickstart) {
+ $Debug && print "Execute quickstarter\n";
+ push @ooo_argv, '-quickstart';
+}
+
+# FIXME: the following two fixes should be done by OOo itself
+# create the user config directory with safe rights 700 if it we find
+# the right path and the directory does not exist
+if (open BOOTSTRAPRC, "$SystemInstallDir/program/bootstraprc") {
+ while (my $line = <BOOTSTRAPRC>) {
+ chomp $line;
+ if (($line =~ m/^\s*UserInstallation\s*=\s*([^\s]*)\s*$/) && ($1)) {
+ my $userConfDir=$1;
+ $userConfDir =~ s|\$SYSUSERCONFIG|$ENV{HOME}|;
+ $userConfDir =~ s|file://||;
+ mkdir ($userConfDir,0700) unless (-d $userConfDir);
+ last;
+ }
+ }
+ close BOOTSTRAPRC;
+}
+# touch ~/.recently-used with safe rights 700 if it does not exist
+if (! -f "$ENV{HOME}/.recently-used") {
+ open (RECENTLY_USED, ">$ENV{HOME}/.recently-used") &&
+ close RECENTLY_USED &&
+ chmod 0600, "$ENV{HOME}/.recently-used";
+}
+
+if (!(-f '/proc/version')) {
+ print STDERR "\n\n --- Warning - OO.o will not work without a mounted /proc filesystem --- \n\n\n";
+}
+
+# Clear PYTHONPATH, otherwise Python scripting does not work
+delete $ENV{'PYTHONPATH'};
+
+# And here we go.
+exec "$SystemInstallDir/program/soffice", @ooo_argv
diff --git a/app-office/openoffice-bin/files/digest-openoffice-bin-2.2.0_rc3 b/app-office/openoffice-bin/files/digest-openoffice-bin-2.2.0_rc3
new file mode 100644
index 000000000000..8ed39859f564
--- /dev/null
+++ b/app-office/openoffice-bin/files/digest-openoffice-bin-2.2.0_rc3
@@ -0,0 +1,225 @@
+MD5 50578410b0c8769d10600caee8bddddd OOo_2.2.0rc3_20070306_LinuxIntel_install_en-US.tar.gz 131342011
+RMD160 be1706326f0d2ca0e729f4ed214c5e66e9d23d5c OOo_2.2.0rc3_20070306_LinuxIntel_install_en-US.tar.gz 131342011
+SHA256 d27e8ed4f2421be0ba7b5e00e70a2ea7ff6bccdd495ffc8f9753a3630542258b OOo_2.2.0rc3_20070306_LinuxIntel_install_en-US.tar.gz 131342011
+MD5 3a588b26ae5906b6016eeddcccf35591 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_af.tar.gz 13507393
+RMD160 54b807a3bcc25084d7253f387d66c0a2cbab1f34 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_af.tar.gz 13507393
+SHA256 de1693008d3499734497e24ebc888c63f2de77721c3ae3e99c683cc482b37a87 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_af.tar.gz 13507393
+MD5 b91ae6aa91a3c332b9f85b3186a5c370 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_as-IN.tar.gz 13572149
+RMD160 852bc8e72cfd99d76b2cb51aaef547e3f5ae2884 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_as-IN.tar.gz 13572149
+SHA256 a484a0659cdbdaa4a5688d033fe33a78798e2c34e203db12823001af0b5e3912 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_as-IN.tar.gz 13572149
+MD5 5310b61d9538084266c576161723f7aa OOo_2.2.0rc3_20070306_LinuxIntel_langpack_be-BY.tar.gz 13580659
+RMD160 8be3b88dc381ca47ed8393c99d544794c93c9b23 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_be-BY.tar.gz 13580659
+SHA256 a855590cf08c6b0e90ec0faebbf35c839f3fb5651a2d5ddb96e9eabae19d9f9c OOo_2.2.0rc3_20070306_LinuxIntel_langpack_be-BY.tar.gz 13580659
+MD5 4f83716fb659efd87fadbc50101faebe OOo_2.2.0rc3_20070306_LinuxIntel_langpack_bg.tar.gz 14795313
+RMD160 1373cf024736742925a789d02f97aa5996fd5723 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_bg.tar.gz 14795313
+SHA256 4b5607a5acf8a3f682bcb57210403db06717e8e11a6ea91a099004144a6980c2 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_bg.tar.gz 14795313
+MD5 2f4eea4d978d27a3c89a3105cfbc1e34 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_br.tar.gz 13507799
+RMD160 09d3b6e929f288ff09074d89b9f1018f17f035f0 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_br.tar.gz 13507799
+SHA256 5bb3e1c76949c1e784da9d326993c8033c4b869d45e1c981563aa815b2250751 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_br.tar.gz 13507799
+MD5 f0fd7b1c3f2e2699eaa97fe1b9a9a7a1 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_bs.tar.gz 13522296
+RMD160 ed5cb9ba9aaf6164ef957d7c5cf777c737a851e8 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_bs.tar.gz 13522296
+SHA256 f83c3d045eeaf05db61bdbcc215d5983e08a833e4f4d1a2deb119572e2c62c21 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_bs.tar.gz 13522296
+MD5 1b8eb4426d93e14abc2cdfc9b0d1abf9 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ca.tar.gz 13504194
+RMD160 54ec2a76825acafa60923d17accd82bf2f84df30 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ca.tar.gz 13504194
+SHA256 790636fe96ad5e3fa24c84a192be9f57b370dce481525c263e31c7e0fffe1c95 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ca.tar.gz 13504194
+MD5 a3fe1dbe059734c666c67e5be94c465c OOo_2.2.0rc3_20070306_LinuxIntel_langpack_cs.tar.gz 14105445
+RMD160 c8ccc36c672d25f8a0eb4a47cd5c13f9a7da2bcc OOo_2.2.0rc3_20070306_LinuxIntel_langpack_cs.tar.gz 14105445
+SHA256 a7f2cf020331301825e6ab2d9e3dbf9508acc280963f284ab9d1765058fbc29b OOo_2.2.0rc3_20070306_LinuxIntel_langpack_cs.tar.gz 14105445
+MD5 b7db6aeff693a6235fba08f87127024a OOo_2.2.0rc3_20070306_LinuxIntel_langpack_cy.tar.gz 13474393
+RMD160 3b2a53aaec0a9fd37d2d9a9c57069c200d2236f7 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_cy.tar.gz 13474393
+SHA256 6a53e9f6059c21e9bf72196e5bf7fded57d78b22cb652e2fabcb29cece4bdf00 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_cy.tar.gz 13474393
+MD5 3535a2b50aa20da3225fb9d7491e82cb OOo_2.2.0rc3_20070306_LinuxIntel_langpack_da.tar.gz 14034112
+RMD160 61824d5375d00feb2548d0a9806c4a4efcc5580d OOo_2.2.0rc3_20070306_LinuxIntel_langpack_da.tar.gz 14034112
+SHA256 f514ba7bc1f7690d0adb8e95013f1daaec994bb9d91f72cdd99aa45bece0f6d4 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_da.tar.gz 14034112
+MD5 cd2685349828c1eb2cef1de5f5b736d6 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_de.tar.gz 14936765
+RMD160 f9bbba4fe021a0cbc2b0135849de136f490de834 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_de.tar.gz 14936765
+SHA256 6447f1f25836281b0f78ad482c1a3f86b3ce7f8718cdc1f86e1e6a3c62ec1410 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_de.tar.gz 14936765
+MD5 95077f0d611c75126f17114ebe46ee25 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_dz.tar.gz 17458251
+RMD160 db5b005978fe87712152483d5325151f7351460f OOo_2.2.0rc3_20070306_LinuxIntel_langpack_dz.tar.gz 17458251
+SHA256 ed94968e03d3bd62d5dff0bbed0ebcff2583e6cfc745457e9578f7ea8a9c059d OOo_2.2.0rc3_20070306_LinuxIntel_langpack_dz.tar.gz 17458251
+MD5 d64027405b0889ad1c0957355f25d449 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_el.tar.gz 14143523
+RMD160 bb4b531542a2fbaf75e26b660f4f5d39bf1a8c9a OOo_2.2.0rc3_20070306_LinuxIntel_langpack_el.tar.gz 14143523
+SHA256 1eb699556f24988c0cefe04b2e496903ae938d65421061819cbb941f5f6b41db OOo_2.2.0rc3_20070306_LinuxIntel_langpack_el.tar.gz 14143523
+MD5 6c565c0959b8b5899cb33e0d15b63e8f OOo_2.2.0rc3_20070306_LinuxIntel_langpack_en-GB.tar.gz 13473540
+RMD160 9fbd35c5ad676d30a772d48ea2ea1a67f30b134c OOo_2.2.0rc3_20070306_LinuxIntel_langpack_en-GB.tar.gz 13473540
+SHA256 be4dded6db872fdff483a1eda3d114c41ef67d896d1f1fdbb5f0ed12863efaf8 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_en-GB.tar.gz 13473540
+MD5 c6169aedacc0a2012a62b4ea4b9788ba OOo_2.2.0rc3_20070306_LinuxIntel_langpack_en-ZA.tar.gz 13427124
+RMD160 f67ab8a176c46700cd2f08db3fa87ff17936c909 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_en-ZA.tar.gz 13427124
+SHA256 5976dda42a492d466a1b838b0bc613c4499c784062c08c5ead3d9f8aebf30082 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_en-ZA.tar.gz 13427124
+MD5 9f2e5d09e1b5610181704bb34290005b OOo_2.2.0rc3_20070306_LinuxIntel_langpack_eo.tar.gz 13504857
+RMD160 289f26672bdf09a8f8971f232b2141ebab99a961 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_eo.tar.gz 13504857
+SHA256 ec87ec006ddb5b3496a751d5dd864a0fd9449cad25c4b6d1f29d62a5ff07986b OOo_2.2.0rc3_20070306_LinuxIntel_langpack_eo.tar.gz 13504857
+MD5 2bdb0450bef9074feda76fe00308e6bd OOo_2.2.0rc3_20070306_LinuxIntel_langpack_es.tar.gz 14312867
+RMD160 8b4b12ae881cce470d7bc055ff3e2bc9a035d617 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_es.tar.gz 14312867
+SHA256 bc208d514e584316bf959294ba37a253948249d19f84844e7b1bfee5a177572f OOo_2.2.0rc3_20070306_LinuxIntel_langpack_es.tar.gz 14312867
+MD5 103fef85c0f6d257cf18c4ad195a4f9c OOo_2.2.0rc3_20070306_LinuxIntel_langpack_et.tar.gz 14170461
+RMD160 e1ada6552f8e138244057d76f9f24b7201a01669 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_et.tar.gz 14170461
+SHA256 76b3d066c040c31510fdb60c2894987555a2f89d77d3132f23411f7fd24166ae OOo_2.2.0rc3_20070306_LinuxIntel_langpack_et.tar.gz 14170461
+MD5 5975d9561582565dc0b55cfaffcfd92a OOo_2.2.0rc3_20070306_LinuxIntel_langpack_fa.tar.gz 13567816
+RMD160 ca0208099f4ae31baffb8c110762f8e8bdfca4e9 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_fa.tar.gz 13567816
+SHA256 b173f97659b06335e0b7854903985bc69b8ce1830b519046f4cc9192accfeab2 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_fa.tar.gz 13567816
+MD5 6fd5b2039fe42d9c77b43124ed94a86e OOo_2.2.0rc3_20070306_LinuxIntel_langpack_fi.tar.gz 13523761
+RMD160 15ff7fdb76d603facf462428c94d9c33f99e5e59 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_fi.tar.gz 13523761
+SHA256 b8e304a4083fc43b2c7224a75924b46f936bb83aa32ac60acdf7bacfc633e8f7 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_fi.tar.gz 13523761
+MD5 d79ebc0f6e0f9b0ee322132193c868f2 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_fr.tar.gz 14527788
+RMD160 c7512193272eac6a4207ec0c16ad23df5fd84aa4 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_fr.tar.gz 14527788
+SHA256 23d381e54caab792bccdf58efbe76fac311deb9c71b6f0bb2a055e2c231dc6ce OOo_2.2.0rc3_20070306_LinuxIntel_langpack_fr.tar.gz 14527788
+MD5 a10f7973888cd34db23888de3ef6f76d OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ga.tar.gz 13734850
+RMD160 7ceb029668117f412f67ae4c1993d6f0b9f1d57d OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ga.tar.gz 13734850
+SHA256 ddcf1d50ce619e00e0cfc1d2e13701fa4854f82d8d22804c0391b219e4b574b9 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ga.tar.gz 13734850
+MD5 6a608db78599f3940f47095a6538579d OOo_2.2.0rc3_20070306_LinuxIntel_langpack_gl.tar.gz 14190730
+RMD160 258f91ea1cb1fe258a720555088b03d6ac6a9091 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_gl.tar.gz 14190730
+SHA256 252b9b7111c66b1eadc802f13519ad978a37805c83392886b0d10771ec1cc5fe OOo_2.2.0rc3_20070306_LinuxIntel_langpack_gl.tar.gz 14190730
+MD5 c1cbc12a507278850d83be8411095529 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_gu-IN.tar.gz 13586879
+RMD160 49234c658b7370f18a213a40f8624dfab27402e3 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_gu-IN.tar.gz 13586879
+SHA256 c3345b6ced8f44631276a0d37fc765620b88a18505c53aa5404a7aefd79636db OOo_2.2.0rc3_20070306_LinuxIntel_langpack_gu-IN.tar.gz 13586879
+MD5 fcdf7252a8015c3c4f7a1c6897e5214b OOo_2.2.0rc3_20070306_LinuxIntel_langpack_he.tar.gz 13533150
+RMD160 2fcb428e8af011ba6c9130bb1e967765f25225d6 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_he.tar.gz 13533150
+SHA256 a74d5765fa2f9ff77bb905afdf4fcfdb924e27d3814cb82c21f477759c3b0331 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_he.tar.gz 13533150
+MD5 7a7b06bd62747f892b5612b7fd2e64bd OOo_2.2.0rc3_20070306_LinuxIntel_langpack_hi-IN.tar.gz 15237572
+RMD160 005b95fe347b97a12ffb3e9be2caf962e9817f54 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_hi-IN.tar.gz 15237572
+SHA256 ad5812bdb7d57410fcec5d26dcafd231af6ff417521b1cab00c118b79b006f6b OOo_2.2.0rc3_20070306_LinuxIntel_langpack_hi-IN.tar.gz 15237572
+MD5 9fd91aa402298ceec8e81a48e13bdfd0 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_hr.tar.gz 13796995
+RMD160 fa58356f11eb53ea7caad35b22a39f9aa41bea5d OOo_2.2.0rc3_20070306_LinuxIntel_langpack_hr.tar.gz 13796995
+SHA256 9ecc3184c2301bb9b1b924ac52608ceb55b307cbeafe3727aa872e94a725c409 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_hr.tar.gz 13796995
+MD5 01a166a2c02fad0ad35bf5c38ab113d0 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_hu.tar.gz 14916451
+RMD160 b09ab981f23debb911d0b98fdffb10ce0d029f17 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_hu.tar.gz 14916451
+SHA256 37c929b1c3816f33a7a5f75920ca9feaa880532ef7a6b39d735b6c4f286446cd OOo_2.2.0rc3_20070306_LinuxIntel_langpack_hu.tar.gz 14916451
+MD5 7af74e8ca54717ee82a683d52cc74b2b OOo_2.2.0rc3_20070306_LinuxIntel_langpack_it.tar.gz 14299578
+RMD160 e210bbb5ac9f526dce13f13fbf21cc9d24f3be73 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_it.tar.gz 14299578
+SHA256 a0f51d8e818b6a7a1e208f033c7a8b626c0a08a76a23bdde8a7702ff9475388a OOo_2.2.0rc3_20070306_LinuxIntel_langpack_it.tar.gz 14299578
+MD5 1764d3ce1107b69607ef03b0da380cf0 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ja.tar.gz 15081595
+RMD160 95c6623c2346dd6bd3421577a3846570a730408c OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ja.tar.gz 15081595
+SHA256 d08ec1384b77348b25123d48bbc32beb58b29085f6d6a3572fd80354332c50c8 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ja.tar.gz 15081595
+MD5 dbc2c6fd485ffe30db1260d625eaa8ab OOo_2.2.0rc3_20070306_LinuxIntel_langpack_km.tar.gz 16190212
+RMD160 d322a881ba8b665cd5edba65cba7e7d3fa6b0d1f OOo_2.2.0rc3_20070306_LinuxIntel_langpack_km.tar.gz 16190212
+SHA256 a700f302f3f8c86c55dc2e15446a1f4c37d41b82459332d9c4c5c6b468ef7d49 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_km.tar.gz 16190212
+MD5 044f99f96730a08513cf451daa56b415 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ko.tar.gz 14240941
+RMD160 55d941dcca2cece6dec97180aea23e1b9b8a844b OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ko.tar.gz 14240941
+SHA256 ba876d5eb923280ce08ba6952673638c2afbaef3a637629b016a021d325e8b65 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ko.tar.gz 14240941
+MD5 4590a5dc7354556a3eabb8a608d673e7 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ku.tar.gz 13840711
+RMD160 9bed3dab27d4dfebc54e28bab53700d85e89a152 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ku.tar.gz 13840711
+SHA256 8eaa009d9ce0c31fa6f0c86b5af8415befd6ad034a4b50a349fcab0299e6c584 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ku.tar.gz 13840711
+MD5 69001642f2bc4855b7d17afc7309b696 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_lt.tar.gz 13524400
+RMD160 2345d78a08c4bdccd8a5073930e2a05ae531fcd2 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_lt.tar.gz 13524400
+SHA256 1e631fe4c86bacae91debb928c1961644dc805bb3bd30f5cb6c9d270c3fc7f0a OOo_2.2.0rc3_20070306_LinuxIntel_langpack_lt.tar.gz 13524400
+MD5 314aed9a04c6d04a79db0dc6e38d12e1 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_mk.tar.gz 14725670
+RMD160 a8957e179f733423ae4bc0dc752b63239c6b027a OOo_2.2.0rc3_20070306_LinuxIntel_langpack_mk.tar.gz 14725670
+SHA256 6b0696ce6775a9901169984ad32ac7ef78eb1eaf84004d737b4a9bb17159ece5 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_mk.tar.gz 14725670
+MD5 0c572f9677f37d2e32e1137b30b55fc9 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ml-IN.tar.gz 13585537
+RMD160 d45950214d33b9b34f679c37bf70fdbec553f5fb OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ml-IN.tar.gz 13585537
+SHA256 843474c001046fef1d6abd2d266082338aeeeddd68b0a70ceeb602975bfea9b5 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ml-IN.tar.gz 13585537
+MD5 50a06ab65d5003c26c1748b5696fa01d OOo_2.2.0rc3_20070306_LinuxIntel_langpack_mr-IN.tar.gz 13581041
+RMD160 285b709a499270f21613cc7ac4b470955ee0ef96 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_mr-IN.tar.gz 13581041
+SHA256 34fbd3cff6a111dc32588ddaff5191f2d969310b63a314f238635a283a1b7cbb OOo_2.2.0rc3_20070306_LinuxIntel_langpack_mr-IN.tar.gz 13581041
+MD5 bf92a68f4b7b5b4a9470efa36228b4b2 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_nb.tar.gz 13849862
+RMD160 6d6707572260a25da13eefc670e8aa48a1c7d17f OOo_2.2.0rc3_20070306_LinuxIntel_langpack_nb.tar.gz 13849862
+SHA256 8806f859054038a4de0ce7df379e1c1aa956a5fb0506aeda1e50f1341d1e7adf OOo_2.2.0rc3_20070306_LinuxIntel_langpack_nb.tar.gz 13849862
+MD5 e04e9ed5a4d885438e027395052cbd5b OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ne.tar.gz 16060156
+RMD160 96c005870a55fc06ed4b029e8d41ffd964eac18c OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ne.tar.gz 16060156
+SHA256 a81863edb8396c09fc31fb23fa90f754817722ba192b244d5b3b1dfab2b67806 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ne.tar.gz 16060156
+MD5 05efca52de52301b7f409e4353386c2d OOo_2.2.0rc3_20070306_LinuxIntel_langpack_nl.tar.gz 14522245
+RMD160 7b6cdc8a8fd5193353143ec9eb4720a619425066 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_nl.tar.gz 14522245
+SHA256 afd7f3041811ca2465b96aa648738fc6a847fd453fd57981a34ac058f6b05e34 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_nl.tar.gz 14522245
+MD5 9662b342f1b430792a797f241a2f6bd2 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_nn.tar.gz 13796199
+RMD160 a0f71883e8fae27190fe154928d4ce4888e19296 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_nn.tar.gz 13796199
+SHA256 1238c098fefd27c472b3ee6bb303af2941c8feb85ad6965440936b5a67e66a2f OOo_2.2.0rc3_20070306_LinuxIntel_langpack_nn.tar.gz 13796199
+MD5 0ab7acd6c0d54dd72596323618f9c1e3 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_nr.tar.gz 13561419
+RMD160 7d0d810fe469cb96c75d9717f9452cd20241d404 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_nr.tar.gz 13561419
+SHA256 961517dcedf3b0389f23f5b93a77dad8a316b9702151dfb11d24f56dd2cb44ef OOo_2.2.0rc3_20070306_LinuxIntel_langpack_nr.tar.gz 13561419
+MD5 70029349f5bd26b0ab9997c764876ddb OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ns.tar.gz 13548851
+RMD160 f4538b44334eed9bfac3a80ba9a626f17ac29f5c OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ns.tar.gz 13548851
+SHA256 56064bafbba23fd4c16d5aa49565a5168585f434093d4ab8e338f14d28ba3f5a OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ns.tar.gz 13548851
+MD5 25a216af015683919980695c929ef972 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_or-IN.tar.gz 13579239
+RMD160 a44c8aabbd6ceee0cfa37c30fbb3b0e027330425 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_or-IN.tar.gz 13579239
+SHA256 e003f37126689694862ef4583fdef47c75f553a7bbd04b37c243ac37ee146f0e OOo_2.2.0rc3_20070306_LinuxIntel_langpack_or-IN.tar.gz 13579239
+MD5 df2a933ec13f705b6f524af78b499981 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_pa-IN.tar.gz 13581638
+RMD160 e9f41c2b8f4d33bf9f33c07959f5ebf84bca4555 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_pa-IN.tar.gz 13581638
+SHA256 409363f638b9a242a841419c25d94452acc4d6f5bd033564f7d4e2ea19c478fe OOo_2.2.0rc3_20070306_LinuxIntel_langpack_pa-IN.tar.gz 13581638
+MD5 a5f5db79bb0677e310473c40f66b05c6 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_pl.tar.gz 14508714
+RMD160 57611a72ca359cfc890b5e9b8c3200ba3975d43c OOo_2.2.0rc3_20070306_LinuxIntel_langpack_pl.tar.gz 14508714
+SHA256 c8be20d6bc20cc77e263ee9d3afa45dfc61a7473c70bb4792f0cfd63afe03f9f OOo_2.2.0rc3_20070306_LinuxIntel_langpack_pl.tar.gz 14508714
+MD5 e463f6adebd251e0e9209c53187030d4 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_pt-BR.tar.gz 14331240
+RMD160 a3c1cd1ca0c7af236c9c94e428b2ccffb594bc31 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_pt-BR.tar.gz 14331240
+SHA256 de28443d0f1502edfc5c22e96a394d7c00841a1700602b1d87e5f2cb3a7e14f2 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_pt-BR.tar.gz 14331240
+MD5 4cdaf2cf5acca97486e242db298ab377 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_pt.tar.gz 14409710
+RMD160 84178abd234341f882f4a8987e3ce417d4759e6c OOo_2.2.0rc3_20070306_LinuxIntel_langpack_pt.tar.gz 14409710
+SHA256 956ee1725962700a5079b976e712e84ea15a3c43c6ae9afadd4a28484787f2e6 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_pt.tar.gz 14409710
+MD5 b31604f61c2bade0436883527c138931 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ru.tar.gz 15644785
+RMD160 54a497943189deeab2207c5fd218a7172d563119 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ru.tar.gz 15644785
+SHA256 911ea1f80e5b3189e64a3c3811a14899cd4bf293b003c0813199cf3056119d68 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ru.tar.gz 15644785
+MD5 69645ea05b5045b22bf20f5464e09c09 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_rw.tar.gz 13833539
+RMD160 45e88c96b6da73b09d284f874d07348323717956 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_rw.tar.gz 13833539
+SHA256 6686bc0b9943733a9d4482e1e878e85435a1d939fc09f21fff3bbab3eb1f0134 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_rw.tar.gz 13833539
+MD5 3659a6b0a1a1065afa8fd01bc3c6c094 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sh-YU.tar.gz 13524099
+RMD160 67c5588141b293888bd84f043d59d2a5fda29892 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sh-YU.tar.gz 13524099
+SHA256 edfe5d23d4283fd0186302971d13813b068e566c843af6ce0753aacba5974e26 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sh-YU.tar.gz 13524099
+MD5 ad0d0cdbe72890e59f7a8c70f22d71b0 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sk.tar.gz 14131832
+RMD160 c982e6021e8685ceb115ef92df540a5349bf72f3 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sk.tar.gz 14131832
+SHA256 0b2d50df841d9f3308f9da6d271ec47e920d31985efd3c0deb6d9c013d23aadd OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sk.tar.gz 14131832
+MD5 d59754d76705a31ae4626bb9922fe314 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sl.tar.gz 14203412
+RMD160 9d3433e4f5dc1a24aeda1b403af301f38fcd166c OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sl.tar.gz 14203412
+SHA256 67a96451f18f1cb1d6d16b7131dda34041d2a9b3e995b92b3e6302c7553fe576 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sl.tar.gz 14203412
+MD5 a27b9f929a4f3f9b01c057bcd5d5373a OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sr-CS.tar.gz 13557349
+RMD160 5a81f06e2e41f887d682e8ab1f16ba769e229ecc OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sr-CS.tar.gz 13557349
+SHA256 8970d2cd732fdb79c1aadf65fab94df47299f1166926b32a76daf867a1cc1a83 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sr-CS.tar.gz 13557349
+MD5 29e2ed1bee458c5889002de5a2713409 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ss.tar.gz 13531191
+RMD160 f754c2967ad42cb634a5c92063fbc8f990d96e16 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ss.tar.gz 13531191
+SHA256 f5dd6ff91a062759bd6e9df8236d513125fe8675ad089dc255dc3118b8964f83 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ss.tar.gz 13531191
+MD5 d224d65f2e123dba50c790dc4b4690da OOo_2.2.0rc3_20070306_LinuxIntel_langpack_st.tar.gz 13557887
+RMD160 48ece716b355992749bd71b020faade42e9e281e OOo_2.2.0rc3_20070306_LinuxIntel_langpack_st.tar.gz 13557887
+SHA256 ae903e4d5c8189f295d055ead901302ef3e569c9093d9b71ff26141912bec799 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_st.tar.gz 13557887
+MD5 4ea62b672530d9da9bdfcba44768a616 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sv.tar.gz 14123604
+RMD160 25f9ecce90b19b0f75621d41c33b5173ea4470ef OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sv.tar.gz 14123604
+SHA256 c4ee2bdb041658d5a95955833ca1e18e1a8f5e2ba333ea32a65946d3bb819927 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sv.tar.gz 14123604
+MD5 5eae1907d1d9f42e5b2e6a44dcca8051 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sw-TZ.tar.gz 13617883
+RMD160 3577480968dd7774c2941ae01bfb67fcaa864e4c OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sw-TZ.tar.gz 13617883
+SHA256 31ae7aaeb97265976761bbc90e90e1f19d9df7480a451dc02dad9dc058bc9b85 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_sw-TZ.tar.gz 13617883
+MD5 e84f9688183d3a7bb7541820b823fee8 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ta-IN.tar.gz 13818685
+RMD160 33af246eef69303fee50b77c2eeada7c3bbfb6bb OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ta-IN.tar.gz 13818685
+SHA256 673b37dd3d49e8d359b28d0c905a1f9ff473f962f9957d4556c757c137ae66ff OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ta-IN.tar.gz 13818685
+MD5 97c7cead60b2ccd4244f1999ebc9b0db OOo_2.2.0rc3_20070306_LinuxIntel_langpack_te-IN.tar.gz 13586440
+RMD160 7a4e5e97f57a10ce8d9aba7c0fc7e09db9f890ab OOo_2.2.0rc3_20070306_LinuxIntel_langpack_te-IN.tar.gz 13586440
+SHA256 d1c480b90aa1ba2297c0f348be2438e32dcdc899ceddf2d4eaf311f412525cad OOo_2.2.0rc3_20070306_LinuxIntel_langpack_te-IN.tar.gz 13586440
+MD5 ccdc0b6c74c4fe268705ffb7b2643f65 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_tg.tar.gz 14502133
+RMD160 357b2fdfd96ebe08525a57fe757346632ed67c6e OOo_2.2.0rc3_20070306_LinuxIntel_langpack_tg.tar.gz 14502133
+SHA256 38bb18eaed97452ff7c9f7fcb665f097cf0f6cb94593ed4b47d5ba6fd1c70199 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_tg.tar.gz 14502133
+MD5 3db8a098a2487337814f8da0d295134a OOo_2.2.0rc3_20070306_LinuxIntel_langpack_th.tar.gz 13948247
+RMD160 aae729010ff19128a34bb8581b17a0581be1053b OOo_2.2.0rc3_20070306_LinuxIntel_langpack_th.tar.gz 13948247
+SHA256 50f5a3ef964f69a41b5570632637ba32f39a245fdcbdae819d9baf2f23ee6590 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_th.tar.gz 13948247
+MD5 2961a2fe01167c69340a96e1c255f1d7 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ti-ER.tar.gz 13465294
+RMD160 e319e08a9ca41dd69a9e327dd02b1af06df1cf1f OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ti-ER.tar.gz 13465294
+SHA256 69b6bd8ca42b8ea8fff5907c69bb773a4d10bb4553731d2afbfabc4907065594 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ti-ER.tar.gz 13465294
+MD5 1b76411ec3ffca7c9f8923a19ffa97c5 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_tn.tar.gz 13520838
+RMD160 51e72500b67396e1590f1c2d0fadf478608985be OOo_2.2.0rc3_20070306_LinuxIntel_langpack_tn.tar.gz 13520838
+SHA256 7b086c100a1965d1f38f4ede22f03352afb4e33f726dbf53378d681a8d62a912 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_tn.tar.gz 13520838
+MD5 21af50af2bae1a649b478a0e135167df OOo_2.2.0rc3_20070306_LinuxIntel_langpack_tr.tar.gz 13828484
+RMD160 07d8d5334f383e37180ccaee2a8fb6cf51c2b0f1 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_tr.tar.gz 13828484
+SHA256 e16a7493448d0757e2b4f4ca339eeb9ce8aaf18d7bcf567871b10ee2580db231 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_tr.tar.gz 13828484
+MD5 19da3d19bf4b748db4a1c94a3f5c3db2 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ts.tar.gz 13513524
+RMD160 a5a7de1d29cdc00b026d00bb869ed209c8bd1cb8 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ts.tar.gz 13513524
+SHA256 1974ddd67a4accd34994dc1e0b88b5adedb10de5cbacca7b40e4f1d5fa646b13 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ts.tar.gz 13513524
+MD5 63fc7ba2af0cf84cf9853487e9699a19 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_uk.tar.gz 13636345
+RMD160 57affa4e6599d2d808496e2efa3b8348803f6559 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_uk.tar.gz 13636345
+SHA256 1443335ec520fd520fe32a475ffd8e63a1cb54c5a6e6ccd4432b43022e7c4080 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_uk.tar.gz 13636345
+MD5 4169cda5918a143794fcc8377df4b9dc OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ur-IN.tar.gz 13571994
+RMD160 f06986ba27a4b2ee2d42147ff305550e537f68ec OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ur-IN.tar.gz 13571994
+SHA256 d66e7231b0e9394ee9cde835f84d291efec61872599b4063d432871de52c1cab OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ur-IN.tar.gz 13571994
+MD5 0203aac3f099cacdf3204b925930d9bd OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ve.tar.gz 13546268
+RMD160 a0dd7a9ca1fd3b53b1f4d13b36a94de955c05ae9 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ve.tar.gz 13546268
+SHA256 49f61b6475545fb5f63d5ba84c7d54154540a4e0865be6d07b66fa7eec2aed06 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_ve.tar.gz 13546268
+MD5 908ba4848545d62da76ff60305231997 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_vi.tar.gz 13617315
+RMD160 4398e2384ff036698e5d380ccca59cf577d98208 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_vi.tar.gz 13617315
+SHA256 2be2c5ebc67b7cce2d81838e84a4fd5aaf89225c07d915645b0802732d29a647 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_vi.tar.gz 13617315
+MD5 4259e1d8858165b1474d674e191aad4b OOo_2.2.0rc3_20070306_LinuxIntel_langpack_xh.tar.gz 13596008
+RMD160 f7e36f88604f1f14f7e879c4dea71f32fe79b134 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_xh.tar.gz 13596008
+SHA256 1fd0f42bc1d53f7f7f86daacca35bafb5cb760afea562f590bc096b7025a1cf8 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_xh.tar.gz 13596008
+MD5 6b9679d06f1b6003901ba608b8735ab9 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_zh-CN.tar.gz 14436632
+RMD160 10a8b4cc54b0a28b0034cc3d5d3e26e46a69a92f OOo_2.2.0rc3_20070306_LinuxIntel_langpack_zh-CN.tar.gz 14436632
+SHA256 514819d958a9f83d509a0452eaf7807826846d7c8dfe7b224d760cc5d15f7e26 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_zh-CN.tar.gz 14436632
+MD5 1ea70d53b33699522287a86366b34b3d OOo_2.2.0rc3_20070306_LinuxIntel_langpack_zh-TW.tar.gz 14576013
+RMD160 756cb5712a64bd63333a333393629ded374f6428 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_zh-TW.tar.gz 14576013
+SHA256 90b36238fcb114688c11b458f4e3a7efc7639f39ce5e4c1f8210be49983972ac OOo_2.2.0rc3_20070306_LinuxIntel_langpack_zh-TW.tar.gz 14576013
+MD5 d698e475f43dd3b0d278d6d279d527e7 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_zu.tar.gz 13580745
+RMD160 9647e75e0718d6d26bc9b66bd22b47704cd84392 OOo_2.2.0rc3_20070306_LinuxIntel_langpack_zu.tar.gz 13580745
+SHA256 0c3431277c588d0b171cc771129c8ef4120b9d5ec4449de01f9dd6c5b773bdba OOo_2.2.0rc3_20070306_LinuxIntel_langpack_zu.tar.gz 13580745
diff --git a/app-office/openoffice-bin/openoffice-bin-2.2.0_rc3.ebuild b/app-office/openoffice-bin/openoffice-bin-2.2.0_rc3.ebuild
new file mode 100644
index 000000000000..73b9c9fd6420
--- /dev/null
+++ b/app-office/openoffice-bin/openoffice-bin-2.2.0_rc3.ebuild
@@ -0,0 +1,160 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-office/openoffice-bin/openoffice-bin-2.2.0_rc3.ebuild,v 1.1 2007/03/16 09:27:33 suka Exp $
+
+inherit eutils fdo-mime rpm multilib
+
+IUSE="gnome java kde"
+
+BUILDID="9129"
+MY_PV="${PV/_/}"
+MY_PV2="${MY_PV}_20070306"
+MY_PV3="${PV/_rc3/}-${BUILDID}"
+PACKED="OOF680_m11_native_packed-1"
+S="${WORKDIR}/${PACKED}_en-US.${BUILDID}/RPMS"
+DESCRIPTION="OpenOffice productivity suite"
+
+SRC_URI="mirror://openoffice/contrib/rc/${MY_PV}/OOo_${MY_PV2}_LinuxIntel_install_en-US.tar.gz"
+
+LANGS="af as_IN be_BY bg br bs ca cs cy da de dz el en en_GB en_ZA eo es et fa fi fr ga gl gu_IN he hi_IN hr hu it ja km ko ku lt mk ml_IN mr_IN nb ne nl nn nr ns or_IN pa_IN pl pt pt_BR ru rw sh_YU sk sl sr_CS ss st sv sw_TZ ta_IN te_IN tg th ti_ER tn tr ts uk ur_IN ve vi xh zh_CN zh_TW zu"
+
+for X in ${LANGS} ; do
+ [[ ${X} != "en" ]] && SRC_URI="${SRC_URI} linguas_${X}? ( ftp://ftp-1.gwdg.de/pub/openoffice/extended/${MY_PV}/OOo_${MY_PV2}_LinuxIntel_langpack_${X/_/-}.tar.gz )"
+ IUSE="${IUSE} linguas_${X}"
+done
+
+HOMEPAGE="http://www.openoffice.org/"
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="!app-office/openoffice
+ x11-libs/libXaw
+ sys-libs/glibc
+ >=dev-lang/perl-5.0
+ app-arch/zip
+ app-arch/unzip
+ >=media-libs/freetype-2.1.10-r2
+ >=app-admin/eselect-oodict-20060706
+ java? ( !amd64? ( >=virtual/jre-1.4 )
+ amd64? ( app-emulation/emul-linux-x86-java ) )
+ amd64? ( >=app-emulation/emul-linux-x86-xlibs-1.0 )
+ linguas_ja? ( >=media-fonts/kochi-substitute-20030809-r3 )
+ linguas_zh_CN? ( >=media-fonts/arphicfonts-0.1-r2 )
+ linguas_zh_TW? ( >=media-fonts/arphicfonts-0.1-r2 )"
+
+DEPEND="${RDEPEND}
+ sys-apps/findutils"
+
+PROVIDE="virtual/ooo"
+RESTRICT="nostrip"
+
+QA_EXECSTACK="usr/lib/openoffice/program/*"
+QA_TEXTRELS="usr/lib/openoffice/program/libvclplug_gen680li.so.1.1 \
+ usr/lib/openoffice/program/python-core-2.3.4/lib/lib-dynload/_curses_panel.so \
+ usr/lib/openoffice/program/python-core-2.3.4/lib/lib-dynload/_curses.so"
+
+src_unpack() {
+
+ unpack ${A}
+
+ for i in base calc core01 core02 core03 core03u core04 core04u core05 core05u core06 core07 core08 core09 core10 draw emailmerge impress math writer graphicfilter pyuno testtool xsltfilter ; do
+ rpm_unpack ${S}/openoffice.org-${i}-${MY_PV3}.i586.rpm
+ done
+
+ rpm_unpack ${S}/desktop-integration/openoffice.org-freedesktop-menus-2.2-9119.noarch.rpm
+
+ use gnome && rpm_unpack ${S}/openoffice.org-gnome-integration-${MY_PV3}.i586.rpm
+ use kde && rpm_unpack ${S}/openoffice.org-kde-integration-${MY_PV3}.i586.rpm
+ use java && rpm_unpack ${S}/openoffice.org-javafilter-${MY_PV3}.i586.rpm
+
+ strip-linguas en ${LANGS}
+
+ for i in ${LINGUAS}; do
+ i="${i/_/-}"
+ if [[ ${i} != "en" ]] ; then
+ LANGDIR="${WORKDIR}/${PACKED}_${i}.${BUILDID}/RPMS/"
+ rpm_unpack ${LANGDIR}/openoffice.org-${i}-${MY_PV3}.i586.rpm
+ rpm_unpack ${LANGDIR}/openoffice.org-${i}-help-${MY_PV3}.i586.rpm
+ rpm_unpack ${LANGDIR}/openoffice.org-${i}-res-${MY_PV3}.i586.rpm
+ fi
+ done
+
+}
+
+src_install () {
+
+ #Multilib install dir magic for AMD64
+ has_multilib_profile && ABI=x86
+ INSTDIR="/usr/$(get_libdir)/openoffice"
+
+ einfo "Installing OpenOffice.org into build root..."
+ dodir ${INSTDIR}
+ mv ${WORKDIR}/opt/openoffice.org2.2/* ${D}${INSTDIR}
+
+ #Menu entries, icons and mime-types
+ cd ${D}${INSTDIR}/share/xdg/
+ sed -i -e s/'Exec=openoffice.org-2.2-printeradmin'/'Exec=oopadmin2'/g printeradmin.desktop || die
+
+ for desk in base calc draw impress math printeradmin writer; do
+ mv ${desk}.desktop openoffice.org-2.2-${desk}.desktop
+ sed -i -e s/openoffice.org2.2/ooffice/g openoffice.org-2.2-${desk}.desktop || die
+ sed -i -e s/openofficeorg22-${desk}/ooo-${desk}/g openoffice.org-2.2-${desk}.desktop || die
+ domenu openoffice.org-2.2-${desk}.desktop
+ insinto /usr/share/pixmaps
+ newins ${WORKDIR}/usr/share/icons/gnome/48x48/apps/openofficeorg22-${desk}.png ooo-${desk}.png
+ done
+
+ insinto /usr/share/mime/packages
+ doins ${WORKDIR}/usr/share/mime/packages/openoffice.org.xml
+
+ # Install wrapper script
+ newbin ${FILESDIR}/${PV}/ooo-wrapper2 ooffice
+ sed -i -e s/PV/${PV}/g ${D}/usr/bin/ooffice || die
+ sed -i -e "s|INSTDIR|${INSTDIR}|g" ${D}/usr/bin/ooffice || die
+
+ # Component symlinks
+ for app in base calc draw fromtemplate impress math web writer; do
+ dosym ooffice /usr/bin/oo${app}
+ done
+
+ dosym ${INSTDIR}/program/spadmin.bin /usr/bin/oopadmin
+
+ # Change user install dir
+ sed -i -e s/.openoffice.org2/.ooo-2.0/g ${D}${INSTDIR}/program/bootstraprc || die
+
+ # Non-java weirdness see bug #99366
+ use !java && rm -f ${D}${INSTDIR}/program/javaldx
+
+ # Remove the provided dictionaries, we use our own instead
+ rm -f ${D}${INSTDIR}/share/dict/ooo/*
+
+ # prevent revdep-rebuild from attempting to rebuild all the time
+ insinto /etc/revdep-rebuild && doins ${FILESDIR}/${PV}/50-openoffice-bin
+
+}
+
+pkg_postinst() {
+
+ fdo-mime_desktop_database_update
+ fdo-mime_mime_database_update
+
+ eselect oodict update --libdir $(get_libdir)
+
+ [[ -x /sbin/chpax ]] && [[ -e /usr/lib/openoffice/program/soffice.bin ]] && chpax -zm /usr/lib/openoffice/program/soffice.bin
+
+ einfo " To start OpenOffice.org, run:"
+ einfo
+ einfo " $ ooffice"
+ einfo
+ einfo " Also, for individual components, you can use any of:"
+ einfo
+ einfo " oobase, oocalc, oodraw, oofromtemplate, ooimpress, oomath,"
+ einfo " ooweb or oowriter"
+ einfo
+ einfo " Spell checking is now provided through our own myspell-ebuilds, "
+ einfo " if you want to use it, please install the correct myspell package "
+ einfo " according to your language needs. "
+
+}