summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Proschofsky <suka@gentoo.org>2007-06-12 14:08:38 +0000
committerAndreas Proschofsky <suka@gentoo.org>2007-06-12 14:08:38 +0000
commitcd69fec0e0b48393631696cdf1d3b1b0abc4e364 (patch)
tree6772bea2c0c60945e283ea79cd5b75ffab4df002 /app-office/openoffice-bin
parentExecute elibtoolize for Gentoo/FreeBSD. (diff)
downloadgentoo-2-cd69fec0e0b48393631696cdf1d3b1b0abc4e364.tar.gz
gentoo-2-cd69fec0e0b48393631696cdf1d3b1b0abc4e364.tar.bz2
gentoo-2-cd69fec0e0b48393631696cdf1d3b1b0abc4e364.zip
Update to OpenOffice.org 2.2.1, this is a bugfix release, so no new features to see
(Portage version: 2.1.2.9)
Diffstat (limited to 'app-office/openoffice-bin')
-rw-r--r--app-office/openoffice-bin/ChangeLog10
-rw-r--r--app-office/openoffice-bin/files/2.2.1/50-openoffice-bin1
-rwxr-xr-xapp-office/openoffice-bin/files/2.2.1/ooo-wrapper2122
-rw-r--r--app-office/openoffice-bin/files/digest-openoffice-bin-2.2.1222
-rw-r--r--app-office/openoffice-bin/openoffice-bin-2.2.1.ebuild159
5 files changed, 513 insertions, 1 deletions
diff --git a/app-office/openoffice-bin/ChangeLog b/app-office/openoffice-bin/ChangeLog
index 9049380c6dcf..ffafedc1d0f9 100644
--- a/app-office/openoffice-bin/ChangeLog
+++ b/app-office/openoffice-bin/ChangeLog
@@ -1,6 +1,14 @@
# 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.164 2007/04/30 20:14:08 genone Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/openoffice-bin/ChangeLog,v 1.165 2007/06/12 14:08:38 suka Exp $
+
+*openoffice-bin-2.2.1 (12 Jun 2007)
+
+ 12 Jun 2007; Andreas Proschofsky <suka@gentoo.org>
+ +files/2.2.1/50-openoffice-bin, +files/2.2.1/ooo-wrapper2,
+ +openoffice-bin-2.2.1.ebuild:
+ Update to OpenOffice.org 2.2.1, this is a bugfix release, so no new features
+ to see.
30 Apr 2007; Marius Mauch <genone@gentoo.org> openoffice-bin-2.2.0.ebuild:
Replacing einfo with elog
diff --git a/app-office/openoffice-bin/files/2.2.1/50-openoffice-bin b/app-office/openoffice-bin/files/2.2.1/50-openoffice-bin
new file mode 100644
index 000000000000..6b16e47f0187
--- /dev/null
+++ b/app-office/openoffice-bin/files/2.2.1/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.1/ooo-wrapper2 b/app-office/openoffice-bin/files/2.2.1/ooo-wrapper2
new file mode 100755
index 000000000000..2e3893f5d788
--- /dev/null
+++ b/app-office/openoffice-bin/files/2.2.1/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.1 b/app-office/openoffice-bin/files/digest-openoffice-bin-2.2.1
new file mode 100644
index 000000000000..3a3bc028ac55
--- /dev/null
+++ b/app-office/openoffice-bin/files/digest-openoffice-bin-2.2.1
@@ -0,0 +1,222 @@
+MD5 145dd00f6bda18b9848bb72bcec6e7b3 OOo_2.2.1_LinuxIntel_install_en-US.tar.gz 131624994
+RMD160 3a9f8ea0c510a10f2026d68d1247fbf04d12a304 OOo_2.2.1_LinuxIntel_install_en-US.tar.gz 131624994
+SHA256 0907bbeb4033a59e63ee1aa1e177243025e9af34b0edbee8430342e004723784 OOo_2.2.1_LinuxIntel_install_en-US.tar.gz 131624994
+MD5 fcb09916f749a8edd41c7b926c3f149d OOo_2.2.1rc3_20070529_LinuxIntel_langpack_af.tar.gz 13505647
+RMD160 c5c330893dbf6c1face56d54598dc1afbcd6b6e1 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_af.tar.gz 13505647
+SHA256 eae65f438b998835c04943b4d3e9c9deb63b11c9f5dad2eb4cb3b253ae20734d OOo_2.2.1rc3_20070529_LinuxIntel_langpack_af.tar.gz 13505647
+MD5 e487e6ee2a98f6cbbc543c6af2ec5c8d OOo_2.2.1rc3_20070529_LinuxIntel_langpack_as-IN.tar.gz 13572531
+RMD160 2b3c7cf776f555fa3ea2174675081f8f3e6ab75c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_as-IN.tar.gz 13572531
+SHA256 ce18e85fdd33785e869a4d4d0b15992b696b3e5ef0b2130119371b28e09ad542 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_as-IN.tar.gz 13572531
+MD5 e50a3c42c38c18c8548da584cbada39a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_be-BY.tar.gz 13577807
+RMD160 05665d0b4303529710af48ede7d24f34d0e59cac OOo_2.2.1rc3_20070529_LinuxIntel_langpack_be-BY.tar.gz 13577807
+SHA256 14a3e957797d66a8158f7d0438df4dc34e08e1cee64b5ebda9bf16bbd2b7723d OOo_2.2.1rc3_20070529_LinuxIntel_langpack_be-BY.tar.gz 13577807
+MD5 f4f0c3fe5d9cacd4e1d67af2ab7c4c2e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_bg.tar.gz 14851741
+RMD160 cbeb02ef2f6557de4b84322a21f785a71b47615f OOo_2.2.1rc3_20070529_LinuxIntel_langpack_bg.tar.gz 14851741
+SHA256 7dced5bc0cabf79f60070c1a9838ec49edec4e82aa76cc484e2f22409322e498 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_bg.tar.gz 14851741
+MD5 bdbab7a1024157effce45d333f45f9a7 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_br.tar.gz 13509004
+RMD160 5408c1f82b59c84b7b01c0de8001a15808d06b0e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_br.tar.gz 13509004
+SHA256 31140b3edb67a28b93b78ecab9c77c5cdd9ab3e429edf2e7a4f523e6b0331cb5 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_br.tar.gz 13509004
+MD5 9e0d03a7c282d5451e0f191667ba4363 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_bs.tar.gz 13521327
+RMD160 9367bd0738676caf6d936e248e5c7c698c33927f OOo_2.2.1rc3_20070529_LinuxIntel_langpack_bs.tar.gz 13521327
+SHA256 4a1ce4153a269269a9308b4f680300118a80d405188c3c1f58f8d4168afd8edf OOo_2.2.1rc3_20070529_LinuxIntel_langpack_bs.tar.gz 13521327
+MD5 d5f97da553c12fbf04878ca17a18c703 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ca.tar.gz 13504308
+RMD160 ddc74dee5747a36803d74bac60e5d3a6952ef5f1 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ca.tar.gz 13504308
+SHA256 25aba7f8161caac550964ef901bbd518a02d2f28a334e574ce1ebd88dc347290 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ca.tar.gz 13504308
+MD5 0750fc2ceccaaef642f8378c5f1405db OOo_2.2.1rc3_20070529_LinuxIntel_langpack_cs.tar.gz 14171867
+RMD160 1dcf49539f3ffbeb07078fee4b19308c15afed4b OOo_2.2.1rc3_20070529_LinuxIntel_langpack_cs.tar.gz 14171867
+SHA256 17009e2498114a3f5937bcc3141e871df3d77e3ec38c40e6f98a7b0c7b72d70d OOo_2.2.1rc3_20070529_LinuxIntel_langpack_cs.tar.gz 14171867
+MD5 906d8b745d74c0ac302a6565f5991050 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_cy.tar.gz 13477227
+RMD160 c6621e1ee1f16caf5cdc88878410ce32ad58bdec OOo_2.2.1rc3_20070529_LinuxIntel_langpack_cy.tar.gz 13477227
+SHA256 d0e720fe5c79b67a89e5f693c8512031639fd577590f49e2b9edbc0a6853f51d OOo_2.2.1rc3_20070529_LinuxIntel_langpack_cy.tar.gz 13477227
+MD5 e160cfd971cef7bd3e0dce0f13419581 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_da.tar.gz 14027622
+RMD160 32635dfd4a567969d227d8ff55bea3e6eb0d4010 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_da.tar.gz 14027622
+SHA256 77202a0ffe6b6391d226e854b83b3e018b9b53acc1130fea1b261d29ac2f195f OOo_2.2.1rc3_20070529_LinuxIntel_langpack_da.tar.gz 14027622
+MD5 b029e3c3079be910699c04a71d4648b5 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_de.tar.gz 14937212
+RMD160 02df1dc205ae22f79ed96f0e7564efbe075dc92e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_de.tar.gz 14937212
+SHA256 67af387634cac2a6e4808ee263600831f65787d6b3531e6339a1542ec4af6f6c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_de.tar.gz 14937212
+MD5 a5376cf862d81af226ae35b720664ea3 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_dz.tar.gz 17461070
+RMD160 46c886d3b6958373b8e75555f479296960b2388c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_dz.tar.gz 17461070
+SHA256 a2b35b920d7b0c41f1345d86ea23030fa9cee233cc385f7df5e026c2465f4e40 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_dz.tar.gz 17461070
+MD5 8943ebeb1d151aa20e4a788c302ccd25 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_el.tar.gz 14143422
+RMD160 1a898e0063dcf6e65dbf46b174dc0bbdc44221f3 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_el.tar.gz 14143422
+SHA256 77eac5f2d2ec2626270a542da1a3948d34c94142f52e5f231ae0638cd9f4e910 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_el.tar.gz 14143422
+MD5 85c5e222c937273770ed93885c05365a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_en-GB.tar.gz 13558786
+RMD160 ce39970ec2f02ebe1e95aa0b5bd63e11c4b1fda7 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_en-GB.tar.gz 13558786
+SHA256 f872ef0c313cbfb6f993497482e6f07e04fb7d93797d1ecd038de1d138ba5e26 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_en-GB.tar.gz 13558786
+MD5 e973d50ae10b20d6e70644731f6f69da OOo_2.2.1rc3_20070529_LinuxIntel_langpack_en-ZA.tar.gz 13426837
+RMD160 1dc6dbabf18674a36bf5ebbce81833215086de06 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_en-ZA.tar.gz 13426837
+SHA256 eb7a3b426cd10ee4e42f2600b021e2084d1ed581f4a08545d8d06ebc2dd17765 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_en-ZA.tar.gz 13426837
+MD5 291162f22979d37297272f3b3be061a3 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_eo.tar.gz 13507827
+RMD160 92150621eb8596035621dc01d9c43946aebdf6a7 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_eo.tar.gz 13507827
+SHA256 bffaaf9fc0040615cdccd723d593e492bc34e15f5ef57ba245d6b6bd729b348a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_eo.tar.gz 13507827
+MD5 24fafd98c23fce2e5942aba87356e270 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_es.tar.gz 14310880
+RMD160 39c28ff8de4c5b5dc950821dd91d4937ae468987 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_es.tar.gz 14310880
+SHA256 8048911031bf79b939bc16d72d3ff252415ae028e05109baa041076771993f82 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_es.tar.gz 14310880
+MD5 5a785a9a64b324ba27a9c87ee9c0c573 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_et.tar.gz 14170916
+RMD160 9dc6f57a027845cb7ade42fedc79b3aca9899750 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_et.tar.gz 14170916
+SHA256 e80b08d4e61bab1b0d17ec00262645d95e5d5904798b7ac3adb8d0ab52012fe1 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_et.tar.gz 14170916
+MD5 cc1988dfaa57c27ca4dd025ac76b2c33 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_fa.tar.gz 13565648
+RMD160 0ae785b4933cb57af18254efb9f55a6ad18155f5 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_fa.tar.gz 13565648
+SHA256 6c1837308de0728fcd2af548ac57d469f9f30a142e5fbda0ca6b992029e696f3 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_fa.tar.gz 13565648
+MD5 2416082d88e53ca46b46cf69852636ea OOo_2.2.1rc3_20070529_LinuxIntel_langpack_fi.tar.gz 13523312
+RMD160 04a05fcabaa6f24c4c71b50bf7c7f4c8ada41eed OOo_2.2.1rc3_20070529_LinuxIntel_langpack_fi.tar.gz 13523312
+SHA256 53a17cdee0d4486a90b12f2ebd1d1ba7ef616686eddee827f5b766f01bf8643b OOo_2.2.1rc3_20070529_LinuxIntel_langpack_fi.tar.gz 13523312
+MD5 88b033e13b7826a5f61add00ee5701cb OOo_2.2.1rc3_20070529_LinuxIntel_langpack_fr.tar.gz 14526619
+RMD160 c7440c14bdda2e5ce31a0e70c49dbc0d83bf1495 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_fr.tar.gz 14526619
+SHA256 0b468d0ef944ff396cb879358e0b8733f62657730bfcc56b892129dd85fe4097 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_fr.tar.gz 14526619
+MD5 919f6adbc02d3e15db510a813231f4f2 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ga.tar.gz 13736932
+RMD160 af8b672af100e86ff0d5760f39cc60ec858d984b OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ga.tar.gz 13736932
+SHA256 6310e4122fad789070aa693f097000bd2b0ef573628049eac2ceae1ade87603c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ga.tar.gz 13736932
+MD5 323c676e830e21c58d9c2b9729aaf530 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_gl.tar.gz 14192479
+RMD160 8fa550197e8cf5af7479b10862705fd4a66d0ecc OOo_2.2.1rc3_20070529_LinuxIntel_langpack_gl.tar.gz 14192479
+SHA256 ea0c1d95897c471fa10c4e96e45d6c4c9768c6beec4eae921f7f5452f5540973 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_gl.tar.gz 14192479
+MD5 06472f3ca050db5a144b17c41278cf90 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_gu-IN.tar.gz 13586068
+RMD160 58097a6656f8275d3ed8a6fb0e8e1bf9a093e733 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_gu-IN.tar.gz 13586068
+SHA256 6b6c1f01c7cdc071e5a17db46ad5508c665aadea2b211ee65c63a00e3896044e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_gu-IN.tar.gz 13586068
+MD5 706ebd433eb5f0825fe42e846733209e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_he.tar.gz 13539463
+RMD160 f99ebbddb8a7e8cc2f5a42666c644cfe5106ec51 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_he.tar.gz 13539463
+SHA256 34615e7f1408f57c3fe84485f90d950f2f8bc0f9e319c8e168c5885932cf0305 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_he.tar.gz 13539463
+MD5 ccafe41f6cd868ddebd0301cf6c57044 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_hi-IN.tar.gz 15239101
+RMD160 04b6b0ecd0f593e7dd6d788e7426c121429ce6ea OOo_2.2.1rc3_20070529_LinuxIntel_langpack_hi-IN.tar.gz 15239101
+SHA256 2d6221035fed4f3b845c5cd4b145c7bf41bae48e069daca58363a215c173d6fd OOo_2.2.1rc3_20070529_LinuxIntel_langpack_hi-IN.tar.gz 15239101
+MD5 0ec0d67e71cdb69ab33a2bb99789fbf8 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_hr.tar.gz 13795559
+RMD160 d402bb099959ec172588590b7d8b8577c6003d64 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_hr.tar.gz 13795559
+SHA256 a733770b09edf27e31a1a249d5c83856712636e466b5e1625553779821517711 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_hr.tar.gz 13795559
+MD5 39ddf4de8ff9304279acffdb7ef8b7b1 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_hu.tar.gz 14916829
+RMD160 7e9031378f94e19a9ab906f6682c42128e88934c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_hu.tar.gz 14916829
+SHA256 6997c889bcedbc4f09c02f7813f020e8b55a1da96ab151dc6d9f35e2b0bb60cc OOo_2.2.1rc3_20070529_LinuxIntel_langpack_hu.tar.gz 14916829
+MD5 12ab738d26d0819b8c84ab21f209f824 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_it.tar.gz 14302710
+RMD160 4f15917164747b098fc3c7efdc231cd19d53a824 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_it.tar.gz 14302710
+SHA256 fd87ecbb9699b103a48b9de0bc7c1c9eb473254ef283d2fcafc13fbf6ea32461 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_it.tar.gz 14302710
+MD5 2f7e6b81c5261d29deb9f6278d24d2c7 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ja.tar.gz 15082352
+RMD160 31a6cefeb78a43d19b1cd658e065f4f3e61c4e0e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ja.tar.gz 15082352
+SHA256 bf441ec2081871eb4442f941a6a1562315bd6e3f18c404e50c08e3955325a497 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ja.tar.gz 15082352
+MD5 2abc8fc1e688fb0d75bf80f99b8fbbf4 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_km.tar.gz 16328211
+RMD160 6f80e4bfed66324b77a37173afa82694dbcd56eb OOo_2.2.1rc3_20070529_LinuxIntel_langpack_km.tar.gz 16328211
+SHA256 c603874f04ebae998358195c6cc2cc5ef0ac74c4c988a641a7d548807c028f5e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_km.tar.gz 16328211
+MD5 2059256b5a9f687db5f85e8f07077b9e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ko.tar.gz 14241642
+RMD160 91e3f899774a19f7d0d47498c4c7d21f710f4e61 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ko.tar.gz 14241642
+SHA256 e8161ea65ac1b913130e81d0df9cd8e00a23e8ace994c0e9a58aa362f0251165 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ko.tar.gz 14241642
+MD5 38313656dcfe4db63a261a2c56d2e249 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ku.tar.gz 13839990
+RMD160 3599807aefdc583710907bc6e247be720db6ff0f OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ku.tar.gz 13839990
+SHA256 e2179053e3d4b312c4fd1466eea39c91f299c11d6d5fbb721c8aa4d63e3bbb5e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ku.tar.gz 13839990
+MD5 9eeadfed5c6d30820f92d2b66ec664b5 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_lt.tar.gz 13528207
+RMD160 0dfa55f5550bee1f5752b7a840a229e8f34510d2 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_lt.tar.gz 13528207
+SHA256 9e0d4032876717e743ffefbc7938f3bf46c26d0d9aa2ff812d109e43f7cfd6c0 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_lt.tar.gz 13528207
+MD5 0ac8587123b3ebddb988bbee6278f61c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_mk.tar.gz 14725703
+RMD160 7a27f00b02a1633debe88797d889fd6ce9ffcfe1 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_mk.tar.gz 14725703
+SHA256 83a7d4ffd71558c0539945c5deee35b898edec90adb5f25add621adcb29dc68a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_mk.tar.gz 14725703
+MD5 6ece80749be231fb067e6f1953d185ea OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ml-IN.tar.gz 13579538
+RMD160 583e49e0403114ced7d85daa8a551c4b583f76db OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ml-IN.tar.gz 13579538
+SHA256 3e89db9fa9ebaa2b9cd26dc4c7e9363ec7acd57341308dbf0309a10cb87439a2 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ml-IN.tar.gz 13579538
+MD5 c84d5201641cd68c84479cf873d3db4a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_mr-IN.tar.gz 13578904
+RMD160 2391352109f0b7f2f446b98c79f3c3a19fb06af0 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_mr-IN.tar.gz 13578904
+SHA256 c275e404f3a8601315bec18cf62093ef157b3e5db078c210aed4ce8571006f7c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_mr-IN.tar.gz 13578904
+MD5 3f5b1d8ae0243afd61c3fae05f33f3b4 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_nb.tar.gz 13851041
+RMD160 bdfffd7f4a0dee418bc9e5ddb4e2246be1737674 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_nb.tar.gz 13851041
+SHA256 5c750ba1e14ee433224722f27810a338a85f676e15e7aa0b6c5239d67450e059 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_nb.tar.gz 13851041
+MD5 28b3e541f810ff65312fe42f7aa0d17c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ne.tar.gz 16063866
+RMD160 4c8642bd96db108034ade2f06ed59094a1ec066e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ne.tar.gz 16063866
+SHA256 7b4c58ad705f0e791968062f42f7bb52eef9df465e923caab17c4e0b5115989b OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ne.tar.gz 16063866
+MD5 2eeaa3147d6da95c0753be79f5467b20 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_nl.tar.gz 14520921
+RMD160 6ec6078a41a9403748d7cc1c14c6962486f0a26a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_nl.tar.gz 14520921
+SHA256 134e4b9c5a1101c470fc9efc8424fcad630f8f77f7bb23bdf6a76b49630ababb OOo_2.2.1rc3_20070529_LinuxIntel_langpack_nl.tar.gz 14520921
+MD5 4fd437e8b0a224dbd329f5d08713a2ea OOo_2.2.1rc3_20070529_LinuxIntel_langpack_nn.tar.gz 13797605
+RMD160 a7554133ca9081e4e92c90c4ca52cebe0e31aa0a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_nn.tar.gz 13797605
+SHA256 6e6d58cda125df4f389d5983afa649a86a0479058c2d9175d690864d3c76e32a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_nn.tar.gz 13797605
+MD5 a9fc472836b1f682e605221123ddf0d4 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_nr.tar.gz 13562864
+RMD160 e0f64ce2272a2cbba65f32d4c6ce7e861fe69e1b OOo_2.2.1rc3_20070529_LinuxIntel_langpack_nr.tar.gz 13562864
+SHA256 c239d4dbd920e04d0d23e71fc5a2f81c89231356edae331e4e415aa50f40f34a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_nr.tar.gz 13562864
+MD5 0ec8eb2453d5953e0172c1a761dfc673 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ns.tar.gz 13550000
+RMD160 ed89431a8cc34b7d1cb6ec3bbfad58b9c5fa965c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ns.tar.gz 13550000
+SHA256 a206261811c047b3d2cf45ef99314ea8ed417dea8c0779fb29a2bb4f851fb178 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ns.tar.gz 13550000
+MD5 1b05badbae2543e8b88d1ae3830dc804 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_or-IN.tar.gz 13579925
+RMD160 3330765e2e06a91b9c5aeb51e5017bf9df416ee9 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_or-IN.tar.gz 13579925
+SHA256 fe8c8a81aef1fe0ad826fa5e22c2b1ad1fdaeeddaaa5c15f952d97b7ed15400c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_or-IN.tar.gz 13579925
+MD5 7a4d94ddf3b6dcb8cbc78f5b18d03ab2 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_pa-IN.tar.gz 13580819
+RMD160 41b694c9a2ab69171b9146190b59ae11d4b1871b OOo_2.2.1rc3_20070529_LinuxIntel_langpack_pa-IN.tar.gz 13580819
+SHA256 667131b1103da52ff97f9bab5865e94c4a3ba32a9a0949cbf0c095210c26ef66 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_pa-IN.tar.gz 13580819
+MD5 42431cde2e67f7966e1f272bde495b28 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_pl.tar.gz 14510118
+RMD160 e7fff83795730b3f00958cae7fca18c0f22ea84c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_pl.tar.gz 14510118
+SHA256 4481673e5fe9943393fafbb8995e00e3f5c1e3058823298269c97121b6cd47ab OOo_2.2.1rc3_20070529_LinuxIntel_langpack_pl.tar.gz 14510118
+MD5 b19f164aac5aa8e1697cb698c6ba6bc2 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_pt.tar.gz 14423817
+RMD160 e83d35a65da7c1cda547b1e9254bd88f53fc0403 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_pt.tar.gz 14423817
+SHA256 d950417d6bb8bba5264f75ae23df90a8fcd1c8510e9f06ee504dac9d2df40600 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_pt.tar.gz 14423817
+MD5 3e00e527073d5be5a8fd56c7c5b1e7a3 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ru.tar.gz 15645159
+RMD160 abff9bfb6775d2876adaf8f0d5d59d6f87d100cf OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ru.tar.gz 15645159
+SHA256 63b210306ac74d3a3ba497c4996710beeda101b05cad3b341c1fedf15a87d2ec OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ru.tar.gz 15645159
+MD5 f64a91c68bcd95b0c34e9e8646e804da OOo_2.2.1rc3_20070529_LinuxIntel_langpack_rw.tar.gz 13831748
+RMD160 2732b8f761b5f69b23ec88cc4d805babf9959a36 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_rw.tar.gz 13831748
+SHA256 64e7d41bd7fe6a0cd8aaf92864db3ff70d07884b435a6c3ab5ed39ad4fd74fc0 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_rw.tar.gz 13831748
+MD5 f80ab626f4e88a11f07c0288dcc4c8c3 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sh-YU.tar.gz 13521305
+RMD160 b9d620190bf61248f2a9db5993dbb1b84938b881 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sh-YU.tar.gz 13521305
+SHA256 2374707ef68a127a7d9225f63a3dc6fd22f6a3e2ef7b340bf18f41df8eee44bf OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sh-YU.tar.gz 13521305
+MD5 53658935e2fdc211d0fd1cb291e3321e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sk.tar.gz 14156545
+RMD160 86738216e5dab15778dee8628b087887f8a6f536 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sk.tar.gz 14156545
+SHA256 cb83e527427f4296018b9c1b06a9b11deef15b7631fa8bf56c478ae69f49e498 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sk.tar.gz 14156545
+MD5 304510464ad5ada767a25bf18cbfbe9a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sl.tar.gz 14244451
+RMD160 9b0a7147e744c839eef069ee1bb1ca22b912903d OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sl.tar.gz 14244451
+SHA256 e30ed1eaa26cac1c1bda731ad8d9984b7a0441243515ace69b956290c8aa64c1 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sl.tar.gz 14244451
+MD5 ff319db160a118b7c6ccdeb27f11ea65 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sr-CS.tar.gz 13557724
+RMD160 88325fdc2feb7b53906a3a16ffa946e0a5dde67d OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sr-CS.tar.gz 13557724
+SHA256 f9058331152c0bc4765f92de180dedcdca14508f2ff74e0d948d3df6dceeda79 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sr-CS.tar.gz 13557724
+MD5 6e9308aaf70d454709095cb32b935974 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ss.tar.gz 13533137
+RMD160 5fe173142102b5aa7ff1f62a6d4e88b634d2d550 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ss.tar.gz 13533137
+SHA256 f9561b9737ab201c13a27a35f9d0c3560cb8fc2574e6ad600ecc530061cc105d OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ss.tar.gz 13533137
+MD5 7e2eeb6f0afb43119381b8e592c05ec0 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_st.tar.gz 13556380
+RMD160 81b200da0e229fc14aa9e0aa96f577c770ab97ef OOo_2.2.1rc3_20070529_LinuxIntel_langpack_st.tar.gz 13556380
+SHA256 959fd817cf5bf464506ca0095dbcdd40340be498000ea76984bea045b5a57281 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_st.tar.gz 13556380
+MD5 799c272c29091d54cff0f3b475011ee4 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sv.tar.gz 14124774
+RMD160 97ee6ea7dd25a1883b3ac494e08893b8f6e7c01f OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sv.tar.gz 14124774
+SHA256 9371579d12210878850826759c3449f877550e81017ca5b70da974e7f6588d52 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sv.tar.gz 14124774
+MD5 e6a9d1e5da02a5daf1565badf00b8a02 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sw-TZ.tar.gz 13619352
+RMD160 464fa582ff4e00217e6e6a6f152f2b2d42e9cc2a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sw-TZ.tar.gz 13619352
+SHA256 da98b0b46921706d3314a595243d2bd366757515eb204005a6ff4ce622b3173e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_sw-TZ.tar.gz 13619352
+MD5 3c0401b0d4ac6c84a961c6582081ccd5 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ta-IN.tar.gz 13821625
+RMD160 dea0d809854192d486c76b311c57aeb818a97c24 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ta-IN.tar.gz 13821625
+SHA256 ff598e8db88b7ac78a26b0c8119cbbec2f5a941e8ff91e08465b5a3c47f6441c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ta-IN.tar.gz 13821625
+MD5 dd68f76fcc63ba86af7141b2b993e1c4 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_te-IN.tar.gz 13589594
+RMD160 0eafa225c64a2268c8158eedc18d723588c17402 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_te-IN.tar.gz 13589594
+SHA256 a312816d5c62c7a2e7d34e9fb3363764c463a3ca3564d0e4e89a2e846bcc852a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_te-IN.tar.gz 13589594
+MD5 c4f3c0784f8918aae0ca4d7bf63293f2 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_tg.tar.gz 14503531
+RMD160 842c2048f4b0d45bd6cf0374f366180781f67358 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_tg.tar.gz 14503531
+SHA256 7b58d9efd5d77edad33f97933f4a79aae83dd481cdb138aa79983ab08c1985bc OOo_2.2.1rc3_20070529_LinuxIntel_langpack_tg.tar.gz 14503531
+MD5 923662dd18a1cd4b696e92dfc207a2fc OOo_2.2.1rc3_20070529_LinuxIntel_langpack_th.tar.gz 13949327
+RMD160 190e2dcf054a6c725d7b8988f6906fa67de91cc1 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_th.tar.gz 13949327
+SHA256 d617c7808219cff3081c46464ad3b1de9b2d1d5d4f10e457d069218b1de285f2 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_th.tar.gz 13949327
+MD5 7550f942f801138a92db46c77335ead7 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ti-ER.tar.gz 13464750
+RMD160 9bedfb186fb165bfdf746be52e355b0e33370bda OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ti-ER.tar.gz 13464750
+SHA256 386c6e171462431bffb9cfe59c70c66c25a6f9e4877b2a5db313ee1466fecf2c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ti-ER.tar.gz 13464750
+MD5 56d197160c9a4252051e056de4896393 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_tn.tar.gz 13520669
+RMD160 d9696374aef83a59be258ba6dea24eb0d4cd58f9 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_tn.tar.gz 13520669
+SHA256 345e05c0d1c393245416c1c7a9b6a6dc655a2de8daf6012beb62b27dd3c51ed7 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_tn.tar.gz 13520669
+MD5 939519977179c7f0539f098a41e5c95e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_tr.tar.gz 13829589
+RMD160 56a7cf791bdd16c5a5ab3f91ab9ce9cc9250bae1 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_tr.tar.gz 13829589
+SHA256 f83ce2b85a88c1c92b01c3c8e6f91b08ce4df1027de475746ec7f689df62332f OOo_2.2.1rc3_20070529_LinuxIntel_langpack_tr.tar.gz 13829589
+MD5 603cbd5c00d5c3b18d0d866b6094c2c2 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ts.tar.gz 13513593
+RMD160 8564d8af2f98b6ce81828514fdc4d5160993a8b2 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ts.tar.gz 13513593
+SHA256 e7251fa25c77e6e76f35fef2565cb03d6e24eb406c01020d4ee6f500e85c79c2 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ts.tar.gz 13513593
+MD5 bfa7ac52cffb487d2847d061cc8436fb OOo_2.2.1rc3_20070529_LinuxIntel_langpack_uk.tar.gz 13635606
+RMD160 bf0c062e3eac18547ee7fec9be2f14a0bd94f647 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_uk.tar.gz 13635606
+SHA256 d8ff7ce6f07e0b2942cfb86235e60356a13d8b1538c391766513af97db38f650 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_uk.tar.gz 13635606
+MD5 c33ea14267288b50da6553b8faa77dbe OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ur-IN.tar.gz 13570378
+RMD160 69b654a18e8c4e7f345fa279ca8b3531da43fcf7 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ur-IN.tar.gz 13570378
+SHA256 30d3381d54611b7ca5a2f0df12ebb26d4088ec08cd8922662c4b518f49719b95 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ur-IN.tar.gz 13570378
+MD5 c53695d9aa4c8c649da031ce6b61debc OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ve.tar.gz 13542484
+RMD160 9ce21d40d4b1c5eff7deb8bdbe87ee7f1e2685ab OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ve.tar.gz 13542484
+SHA256 637b34c8b684999f91a33dc4beddcbf7060069cf2f21b638f3a48ee197bcfbca OOo_2.2.1rc3_20070529_LinuxIntel_langpack_ve.tar.gz 13542484
+MD5 59a63d6bdde46f4a9b2d6ba3e6b6c09e OOo_2.2.1rc3_20070529_LinuxIntel_langpack_vi.tar.gz 13618301
+RMD160 ff917e33cbbbf0fc3b867ad3fb0eacdc31dc2b04 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_vi.tar.gz 13618301
+SHA256 e0211ff6d6e5e2fa38806e04d1b0186ac2d0216c89b2d1bbb90517edc575fb2c OOo_2.2.1rc3_20070529_LinuxIntel_langpack_vi.tar.gz 13618301
+MD5 74c64905e4acfb658ed99e478e2447c7 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_xh.tar.gz 13595523
+RMD160 6c26d2ad5856cce14eb2ff9ac2aa61af915c0113 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_xh.tar.gz 13595523
+SHA256 d1919c023f7c6787106317e64b7d19aca7048e68e9b11972f8364f44bc4aa31a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_xh.tar.gz 13595523
+MD5 9484d86ac4af336566695e65b25b53db OOo_2.2.1rc3_20070529_LinuxIntel_langpack_zh-CN.tar.gz 14436259
+RMD160 e21697cccee4e44097106e2ddddb1bb839246319 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_zh-CN.tar.gz 14436259
+SHA256 dc5318d8135d39df551ed5acc0fb990ebe08ee3b95321bf44262649f0d777d40 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_zh-CN.tar.gz 14436259
+MD5 d11f367a5c845efbad636905225ebb68 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_zh-TW.tar.gz 14574545
+RMD160 ebfba559339dd14906d8dcae95fa639f0f0c718f OOo_2.2.1rc3_20070529_LinuxIntel_langpack_zh-TW.tar.gz 14574545
+SHA256 95cb7823d81198bf91377a82722869fe88656f33a6640d35e03c98091a916c88 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_zh-TW.tar.gz 14574545
+MD5 78c3871b7270b1e0780a9f8b99a8e32a OOo_2.2.1rc3_20070529_LinuxIntel_langpack_zu.tar.gz 13580955
+RMD160 0686e3c0adf9eec482b02fea8e086da614ca2153 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_zu.tar.gz 13580955
+SHA256 dbcfa685c90beae00c4d98d39af850e8cdc7f6d9d086209cf3fd11e1970d8b59 OOo_2.2.1rc3_20070529_LinuxIntel_langpack_zu.tar.gz 13580955
diff --git a/app-office/openoffice-bin/openoffice-bin-2.2.1.ebuild b/app-office/openoffice-bin/openoffice-bin-2.2.1.ebuild
new file mode 100644
index 000000000000..df4ba2c2baf9
--- /dev/null
+++ b/app-office/openoffice-bin/openoffice-bin-2.2.1.ebuild
@@ -0,0 +1,159 @@
+# 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.1.ebuild,v 1.1 2007/06/12 14:08:38 suka Exp $
+
+inherit eutils fdo-mime rpm multilib
+
+IUSE="gnome java kde"
+
+BUILDID="9161"
+MY_PV="${PV}rc3"
+MY_PV2="${MY_PV}_20070529"
+MY_PV3="${PV}-${BUILDID}"
+PACKED="OOF680_m18_native_packed-1"
+S="${WORKDIR}/${PACKED}_en-US.${BUILDID}/RPMS"
+DESCRIPTION="OpenOffice productivity suite"
+
+SRC_URI="mirror://openoffice/stable/${PV}/OOo_${PV}_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 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}? ( mirror://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-9153.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/
+
+ 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/ooffice-printeradmin
+
+ # 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
+
+ elog " To start OpenOffice.org, run:"
+ elog
+ elog " $ ooffice"
+ elog
+ elog " Also, for individual components, you can use any of:"
+ elog
+ elog " oobase, oocalc, oodraw, oofromtemplate, ooimpress, oomath,"
+ elog " ooweb or oowriter"
+ elog
+ elog " Spell checking is now provided through our own myspell-ebuilds, "
+ elog " if you want to use it, please install the correct myspell package "
+ elog " according to your language needs. "
+
+}