summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Proschofsky <suka@gentoo.org>2006-07-02 08:15:01 +0000
committerAndreas Proschofsky <suka@gentoo.org>2006-07-02 08:15:01 +0000
commit6b030bf7db31604374131f0625489969a532a66a (patch)
tree509e3dc0a506a89178c876c2da2c4f7282a0fedf /app-office
parentStable on ppc64; bug #138808 (diff)
downloadgentoo-2-6b030bf7db31604374131f0625489969a532a66a.tar.gz
gentoo-2-6b030bf7db31604374131f0625489969a532a66a.tar.bz2
gentoo-2-6b030bf7db31604374131f0625489969a532a66a.zip
Final release of 2.0.3, also fixes security problems, see bug #138545
(Portage version: 2.1.1_pre1-r5)
Diffstat (limited to 'app-office')
-rw-r--r--app-office/openoffice-bin/ChangeLog10
-rw-r--r--app-office/openoffice-bin/files/2.0.3/50-openoffice-bin1
-rwxr-xr-xapp-office/openoffice-bin/files/2.0.3/ooo-wrapper2122
-rw-r--r--app-office/openoffice-bin/files/digest-openoffice-bin-2.0.3183
-rw-r--r--app-office/openoffice-bin/openoffice-bin-2.0.3.ebuild153
5 files changed, 468 insertions, 1 deletions
diff --git a/app-office/openoffice-bin/ChangeLog b/app-office/openoffice-bin/ChangeLog
index 5941b882f0a5..430f496ebd10 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-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/openoffice-bin/ChangeLog,v 1.133 2006/06/20 18:55:58 suka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/openoffice-bin/ChangeLog,v 1.134 2006/07/02 08:15:01 suka Exp $
+
+*openoffice-bin-2.0.3 (02 Jul 2006)
+
+ 02 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
+ +files/2.0.3/50-openoffice-bin, -files/2.0.3_rc6/50-openoffice-bin,
+ +files/2.0.3/ooo-wrapper2, -files/2.0.3_rc6/ooo-wrapper2,
+ -openoffice-bin-2.0.3_rc6.ebuild, +openoffice-bin-2.0.3.ebuild:
+ Final release of 2.0.3, also fixes security problems, see bug #138545
20 Jun 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-bin-2.0.3_rc6.ebuild:
diff --git a/app-office/openoffice-bin/files/2.0.3/50-openoffice-bin b/app-office/openoffice-bin/files/2.0.3/50-openoffice-bin
new file mode 100644
index 000000000000..6b16e47f0187
--- /dev/null
+++ b/app-office/openoffice-bin/files/2.0.3/50-openoffice-bin
@@ -0,0 +1 @@
+SEARCH_DIRS_MASK="/usr/lib/openoffice /usr/lib32/openoffice"
diff --git a/app-office/openoffice-bin/files/2.0.3/ooo-wrapper2 b/app-office/openoffice-bin/files/2.0.3/ooo-wrapper2
new file mode 100755
index 000000000000..5f4e4bae055d
--- /dev/null
+++ b/app-office/openoffice-bin/files/2.0.3/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 = '2';
+# 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.0.3 b/app-office/openoffice-bin/files/digest-openoffice-bin-2.0.3
new file mode 100644
index 000000000000..107fa19a5bf7
--- /dev/null
+++ b/app-office/openoffice-bin/files/digest-openoffice-bin-2.0.3
@@ -0,0 +1,183 @@
+MD5 b0739d09cdc5dad46bdb8e0eb1d942cb OOo_2.0.3_LinuxIntel_install.tar.gz 126023668
+RMD160 72a1b9fca79cc7e482a0012e862471785dc49023 OOo_2.0.3_LinuxIntel_install.tar.gz 126023668
+SHA256 2432f5cc8958479d00a3a3211f75eb6443fe7a2459c195f31bb16653fe67fb82 OOo_2.0.3_LinuxIntel_install.tar.gz 126023668
+MD5 27e1e898eedcc1bb95cf734d6950ec82 OOo_2.0.3rc7_060622_LinuxIntel_langpack_af.tar.gz 13348222
+RMD160 a7df868a8fbd926e05ad2f304a59be926f709e5d OOo_2.0.3rc7_060622_LinuxIntel_langpack_af.tar.gz 13348222
+SHA256 126045bd020eb53470421191646a6f0a644aa5467241f9b5c7aa82ae043f8589 OOo_2.0.3rc7_060622_LinuxIntel_langpack_af.tar.gz 13348222
+MD5 b4bf51d61f942a86e9803dcaec09cafa OOo_2.0.3rc7_060622_LinuxIntel_langpack_as-IN.tar.gz 13412348
+RMD160 4ba6f1c8491921b3f04c843ff21b4b43eadac87b OOo_2.0.3rc7_060622_LinuxIntel_langpack_as-IN.tar.gz 13412348
+SHA256 a666562158b519378cb95ed353cce5d68451f0aab8c1883f4235d615126f96b3 OOo_2.0.3rc7_060622_LinuxIntel_langpack_as-IN.tar.gz 13412348
+MD5 25ac1f023a2cf8cf20c9fd3ab75680a7 OOo_2.0.3rc7_060622_LinuxIntel_langpack_be-BY.tar.gz 13412432
+RMD160 3032a79476e4e0a36f3ce33d9a6876e5fbf7219f OOo_2.0.3rc7_060622_LinuxIntel_langpack_be-BY.tar.gz 13412432
+SHA256 8922c3b839003f4d9260c9bf5e4e5ac1031f3025c9e775dd7bd9da79df0a60f5 OOo_2.0.3rc7_060622_LinuxIntel_langpack_be-BY.tar.gz 13412432
+MD5 5caf8ca6937774d60d06de26c8090ca5 OOo_2.0.3rc7_060622_LinuxIntel_langpack_bg.tar.gz 14348091
+RMD160 a7ae89daf476299373bd219fd55a02562f353eb4 OOo_2.0.3rc7_060622_LinuxIntel_langpack_bg.tar.gz 14348091
+SHA256 8bfb743e083750e763e141cf65b78be65e7e4d38042051da333e18ed25ac0790 OOo_2.0.3rc7_060622_LinuxIntel_langpack_bg.tar.gz 14348091
+MD5 f4a727e6ebcc86a828cb7b53cdbadf00 OOo_2.0.3rc7_060622_LinuxIntel_langpack_bs.tar.gz 13338819
+RMD160 52303601e081f49b10b8103aad232fe551e533c3 OOo_2.0.3rc7_060622_LinuxIntel_langpack_bs.tar.gz 13338819
+SHA256 a2958f99d79f4046a123ea74ef1a64395956f158bc8dae03c1d91ee35ff24745 OOo_2.0.3rc7_060622_LinuxIntel_langpack_bs.tar.gz 13338819
+MD5 5f06cbaa35229d3bd5dbf03c7863143a OOo_2.0.3rc7_060622_LinuxIntel_langpack_ca.tar.gz 13379031
+RMD160 b6d1f6db692d1d8474275efabbd5000a631e9f12 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ca.tar.gz 13379031
+SHA256 9133d8ae509bc3a90932cd4d4cacbccf4069d0c004de51f521caded38e31b60f OOo_2.0.3rc7_060622_LinuxIntel_langpack_ca.tar.gz 13379031
+MD5 dc3c83c977a5fe561ce5c1ef516348d5 OOo_2.0.3rc7_060622_LinuxIntel_langpack_cs.tar.gz 14003966
+RMD160 e15460e07254d04ca86cd0fd245fa717d22fe1ab OOo_2.0.3rc7_060622_LinuxIntel_langpack_cs.tar.gz 14003966
+SHA256 deb7e5c2e539c8c374c1d1e8a7429068a0bc72e139e2d6b72b91150cd9151e07 OOo_2.0.3rc7_060622_LinuxIntel_langpack_cs.tar.gz 14003966
+MD5 9453231e5128bdcfbb77f0ae0f1e46a4 OOo_2.0.3rc7_060622_LinuxIntel_langpack_cy.tar.gz 13320479
+RMD160 2d0901b0986beca55ee4d55e9758f6745ab42e8d OOo_2.0.3rc7_060622_LinuxIntel_langpack_cy.tar.gz 13320479
+SHA256 b8b320a1afc5f0c732c1f853d4308eee674684ac0479ddf0b7ef453a0ced0990 OOo_2.0.3rc7_060622_LinuxIntel_langpack_cy.tar.gz 13320479
+MD5 a5426dc6595117457b240eb555040f32 OOo_2.0.3rc7_060622_LinuxIntel_langpack_da.tar.gz 13906527
+RMD160 4829f580dd4cabde13d46b161794c9de0a0ecd5f OOo_2.0.3rc7_060622_LinuxIntel_langpack_da.tar.gz 13906527
+SHA256 6696540a46839130088fb141c9306ed44659763bfb268b7ffa3fbcd87c1d25fe OOo_2.0.3rc7_060622_LinuxIntel_langpack_da.tar.gz 13906527
+MD5 bf950593e5608c3bbb7f16f602c55b24 OOo_2.0.3rc7_060622_LinuxIntel_langpack_de.tar.gz 14846104
+RMD160 7f92664d54fe117b4fff07fb754ac96168ee0a08 OOo_2.0.3rc7_060622_LinuxIntel_langpack_de.tar.gz 14846104
+SHA256 ecd5afd08549369587f9bc6560f568171fe5828ce176c6d0f4e647b2aff9803d OOo_2.0.3rc7_060622_LinuxIntel_langpack_de.tar.gz 14846104
+MD5 fe57cd54de344bf0173ad515697f5d92 OOo_2.0.3rc7_060622_LinuxIntel_langpack_el.tar.gz 13952021
+RMD160 bc899a7d64a9b7cb2bd7c56ef59d97c805850825 OOo_2.0.3rc7_060622_LinuxIntel_langpack_el.tar.gz 13952021
+SHA256 ad810b5b06fe0f5885c6ca1b90bfbbefb88c7bdedbb6e077e62b53c366bc27cc OOo_2.0.3rc7_060622_LinuxIntel_langpack_el.tar.gz 13952021
+MD5 45c3088e01a4ce9fbbce3d0b2096e4a4 OOo_2.0.3rc7_060622_LinuxIntel_langpack_en-GB.tar.gz 13411365
+RMD160 673e9d5c10126e97da994b95e70a68296da3aa71 OOo_2.0.3rc7_060622_LinuxIntel_langpack_en-GB.tar.gz 13411365
+SHA256 3a2d04618b8898b4f746e65bb6f8dd741d57f40f96eedd0263aead68fefed44b OOo_2.0.3rc7_060622_LinuxIntel_langpack_en-GB.tar.gz 13411365
+MD5 bcff9dc6bcf008b1975a68e9a32640e4 OOo_2.0.3rc7_060622_LinuxIntel_langpack_en-ZA.tar.gz 13364296
+RMD160 4ace78d1196094889a198f4d8ea6ebeccc7efdce OOo_2.0.3rc7_060622_LinuxIntel_langpack_en-ZA.tar.gz 13364296
+SHA256 68b1b8fbd3e02cb53730c6334eae8d1843c00e088c7d8848cd768b7e21975807 OOo_2.0.3rc7_060622_LinuxIntel_langpack_en-ZA.tar.gz 13364296
+MD5 5ba97272c471b8083e48ac0e907457be OOo_2.0.3rc7_060622_LinuxIntel_langpack_es.tar.gz 14157821
+RMD160 333a0df27857cc81343c6d0d9e2aee58bff7c85f OOo_2.0.3rc7_060622_LinuxIntel_langpack_es.tar.gz 14157821
+SHA256 ab39dc8fd7462fda82ce3bf49cabd3ce0e48d697c2c1da266ecf738b9af4e94e OOo_2.0.3rc7_060622_LinuxIntel_langpack_es.tar.gz 14157821
+MD5 469005d822e0b541dbbbae8d0021857d OOo_2.0.3rc7_060622_LinuxIntel_langpack_et.tar.gz 14088347
+RMD160 3445423b6a3c1da2b34c30fa3e9e509df34e72d2 OOo_2.0.3rc7_060622_LinuxIntel_langpack_et.tar.gz 14088347
+SHA256 f8ad29f6a515cfb72e6f9c39cb8f26f435a2c3bd31d4b1f066b26285b49b7526 OOo_2.0.3rc7_060622_LinuxIntel_langpack_et.tar.gz 14088347
+MD5 d6d75c2e1f539c60ba637a35246df481 OOo_2.0.3rc7_060622_LinuxIntel_langpack_fa.tar.gz 13409965
+RMD160 83606a30564c2d3662d874a0e12a74d6b957db4a OOo_2.0.3rc7_060622_LinuxIntel_langpack_fa.tar.gz 13409965
+SHA256 a898dd871f71e8333e28542ccb2cadd7bf32f0c73a4f89c6aede805f424e4110 OOo_2.0.3rc7_060622_LinuxIntel_langpack_fa.tar.gz 13409965
+MD5 4ea6524adf6c983d1bc1e1a7319bce4d OOo_2.0.3rc7_060622_LinuxIntel_langpack_fi.tar.gz 13373416
+RMD160 cbfb5e114eb0f3df857465c8712b37e3bf5fb620 OOo_2.0.3rc7_060622_LinuxIntel_langpack_fi.tar.gz 13373416
+SHA256 b2f8bf70189dbd23d2134bbb6dd5ffba6ce7c4c52ba45117f69b505fbcb46b7a OOo_2.0.3rc7_060622_LinuxIntel_langpack_fi.tar.gz 13373416
+MD5 e462ce47ac224c5edf2174ea3aa2fba2 OOo_2.0.3rc7_060622_LinuxIntel_langpack_fr.tar.gz 14392043
+RMD160 4ac1c493fbcf6193b9f9960052092c57447a4f05 OOo_2.0.3rc7_060622_LinuxIntel_langpack_fr.tar.gz 14392043
+SHA256 a5a241acd15f6d20e6060fc66db7f0e5f3e0e0dcbb8ec4d19af58962a9e82d2c OOo_2.0.3rc7_060622_LinuxIntel_langpack_fr.tar.gz 14392043
+MD5 4abb6cbedbf8e13c0b9e859e3fb21bb4 OOo_2.0.3rc7_060622_LinuxIntel_langpack_gu-IN.tar.gz 13421692
+RMD160 a119871ba039c49de1fd62456c5a0d770f996b7e OOo_2.0.3rc7_060622_LinuxIntel_langpack_gu-IN.tar.gz 13421692
+SHA256 c693a301b80f0bc8a4d539c58643fa1a720510c19b3b716e9d6a2e6e4a5dec6a OOo_2.0.3rc7_060622_LinuxIntel_langpack_gu-IN.tar.gz 13421692
+MD5 3a677b060bdabb4c5a268b5b71010502 OOo_2.0.3rc7_060622_LinuxIntel_langpack_he.tar.gz 13379746
+RMD160 4ab47ad76e26918b715385e529172cfcae14c2b5 OOo_2.0.3rc7_060622_LinuxIntel_langpack_he.tar.gz 13379746
+SHA256 10d5469facc69a82840a589a4945e79e44fd59e838668641775d77e1417379f0 OOo_2.0.3rc7_060622_LinuxIntel_langpack_he.tar.gz 13379746
+MD5 316c707d742ace0125865e1bbb62206b OOo_2.0.3rc7_060622_LinuxIntel_langpack_hi-IN.tar.gz 13480100
+RMD160 9c513b23fdf145ff7b0d40c9144580ff28a53e7e OOo_2.0.3rc7_060622_LinuxIntel_langpack_hi-IN.tar.gz 13480100
+SHA256 49a7397aba100929dce722724cd1575d6281412e78582c862b8672066290af1f OOo_2.0.3rc7_060622_LinuxIntel_langpack_hi-IN.tar.gz 13480100
+MD5 f419f11f03f742d5e29465152c9f3f22 OOo_2.0.3rc7_060622_LinuxIntel_langpack_hr.tar.gz 13651845
+RMD160 0de843661d31a16683c845f76b19716cdfd47041 OOo_2.0.3rc7_060622_LinuxIntel_langpack_hr.tar.gz 13651845
+SHA256 0bcc3308fa68d6335589b471fb3a4e17abf9c381e1adca01d06df043d947aadc OOo_2.0.3rc7_060622_LinuxIntel_langpack_hr.tar.gz 13651845
+MD5 857ef89abb541c6d8c7cdfd46bc29c76 OOo_2.0.3rc7_060622_LinuxIntel_langpack_hu.tar.gz 14739002
+RMD160 08ce0561319612d7ddfc2993ebdf66e24a9b674e OOo_2.0.3rc7_060622_LinuxIntel_langpack_hu.tar.gz 14739002
+SHA256 af6d0c539d30a214458b21d4cc9abcf2300b3ddfb32273d54d58f1489642da04 OOo_2.0.3rc7_060622_LinuxIntel_langpack_hu.tar.gz 14739002
+MD5 7d9d3bdc595ff09b5403b1bfdadf4d1c OOo_2.0.3rc7_060622_LinuxIntel_langpack_it.tar.gz 14162620
+RMD160 fc76fe1bddf5a770786c57c5d51a04d73b2093e8 OOo_2.0.3rc7_060622_LinuxIntel_langpack_it.tar.gz 14162620
+SHA256 164814acde524b28f3d5dd3a333732067c742c4cd724f68cde7709be9f953a30 OOo_2.0.3rc7_060622_LinuxIntel_langpack_it.tar.gz 14162620
+MD5 2970c5049abb0a47577afb8b45d8f033 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ja.tar.gz 14943866
+RMD160 ac3c72070cd7e34808921b0ecf395c40a94a535b OOo_2.0.3rc7_060622_LinuxIntel_langpack_ja.tar.gz 14943866
+SHA256 e71be711ad78396f16a87850db4d59721b5bb0b1601e18fd0cc0a664d8134b76 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ja.tar.gz 14943866
+MD5 4376eeb60ce9f6934f33b55317b5c158 OOo_2.0.3rc7_060622_LinuxIntel_langpack_km.tar.gz 16667941
+RMD160 e571ccb98ae2793b42f6e933532587741b2604f5 OOo_2.0.3rc7_060622_LinuxIntel_langpack_km.tar.gz 16667941
+SHA256 328d3370963ffa883c63f13b51fa98efe224a7eee305a86d0bbb99a7bd8ed2b9 OOo_2.0.3rc7_060622_LinuxIntel_langpack_km.tar.gz 16667941
+MD5 b4bf09e81c5442f2d124fdfefe55a553 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ko.tar.gz 14070024
+RMD160 3600f60aa745a9f9a9f1976210df28484fec8952 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ko.tar.gz 14070024
+SHA256 ce7eac8df43124ddb3cb4ecad0c875025f6ed93a5bff0a7cd54203d37ca1612c OOo_2.0.3rc7_060622_LinuxIntel_langpack_ko.tar.gz 14070024
+MD5 92e228d26d3d20005fc7c3ae8ae46a70 OOo_2.0.3rc7_060622_LinuxIntel_langpack_lt.tar.gz 13346997
+RMD160 961aa18c462286bb87c0278693db2cf3ed0a9374 OOo_2.0.3rc7_060622_LinuxIntel_langpack_lt.tar.gz 13346997
+SHA256 a7a615ae7624325b4182e477f5d180cada7072cd8cdb05a1db29736c1cd906cc OOo_2.0.3rc7_060622_LinuxIntel_langpack_lt.tar.gz 13346997
+MD5 a4838ff808b5e27d68fd9c7666ab403a OOo_2.0.3rc7_060622_LinuxIntel_langpack_mk.tar.gz 14203893
+RMD160 5998d9caa483daef0aa06de1d7c9562f300be5b1 OOo_2.0.3rc7_060622_LinuxIntel_langpack_mk.tar.gz 14203893
+SHA256 0c3fd5747206bbb30e08d96ad897023e9bbff45b5fb05b140ddc69b2e3f29341 OOo_2.0.3rc7_060622_LinuxIntel_langpack_mk.tar.gz 14203893
+MD5 fc4acfda778241d2ce0b3d92b689988f OOo_2.0.3rc7_060622_LinuxIntel_langpack_ml-IN.tar.gz 13423511
+RMD160 d8573f1711faedc541f294c2b0de04833370f173 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ml-IN.tar.gz 13423511
+SHA256 8f85af03f347c27ee5c6f02891661c188825179db8b86eecf95c39557357ad45 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ml-IN.tar.gz 13423511
+MD5 cfd8cf7d1b9369e94223177780911693 OOo_2.0.3rc7_060622_LinuxIntel_langpack_mr-IN.tar.gz 13419514
+RMD160 ff18978aeafa9a6acabff92001e25cfa5a7a9b46 OOo_2.0.3rc7_060622_LinuxIntel_langpack_mr-IN.tar.gz 13419514
+SHA256 6e2ab5d371df5d309c921d4bb6cad54a21b2ed0272403b9b86a3688182625ad6 OOo_2.0.3rc7_060622_LinuxIntel_langpack_mr-IN.tar.gz 13419514
+MD5 3bb5cc4fbf2840b949028142d7256b43 OOo_2.0.3rc7_060622_LinuxIntel_langpack_nb.tar.gz 13347179
+RMD160 51357a3d14d4f84781bfc39f5147bd47c6bd74e9 OOo_2.0.3rc7_060622_LinuxIntel_langpack_nb.tar.gz 13347179
+SHA256 624dcf282cfa58b58290d8d1a8798bec1a394b6d07f04c9c079b0a22453ecafa OOo_2.0.3rc7_060622_LinuxIntel_langpack_nb.tar.gz 13347179
+MD5 f271c2c7b5d35985158c6b0a55296039 OOo_2.0.3rc7_060622_LinuxIntel_langpack_nl.tar.gz 14410961
+RMD160 28fe0fca96b1d093cbd710b11c02705ebe863bef OOo_2.0.3rc7_060622_LinuxIntel_langpack_nl.tar.gz 14410961
+SHA256 21f05bb67c07754b125d13ec0a8ac0ad523f08b8ddb36f835fc32e61620e6332 OOo_2.0.3rc7_060622_LinuxIntel_langpack_nl.tar.gz 14410961
+MD5 3d680d94e2d1b90d25ce377c402e2275 OOo_2.0.3rc7_060622_LinuxIntel_langpack_nn.tar.gz 13358058
+RMD160 8b4004d0975708fa46193805895351a44d9657e4 OOo_2.0.3rc7_060622_LinuxIntel_langpack_nn.tar.gz 13358058
+SHA256 837074ecccb97ba1625868f84685f4a06d388d9b0cb28ce180c656878dd5c48b OOo_2.0.3rc7_060622_LinuxIntel_langpack_nn.tar.gz 13358058
+MD5 490365db1a9e450cc66a2767ed23afe1 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ns.tar.gz 13369191
+RMD160 0377d2d80e6a2b8c709e2e16be9ef8cb710b4842 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ns.tar.gz 13369191
+SHA256 98419ea82849954fe8dc64bf51601ec5531e16a0dca0f1f29fd8f177b2505157 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ns.tar.gz 13369191
+MD5 fcdaaba68f69d06b00d64c0e790fce97 OOo_2.0.3rc7_060622_LinuxIntel_langpack_or-IN.tar.gz 13422460
+RMD160 e3f7080f1f577b2dfabb126728a0aec7f8ed05c6 OOo_2.0.3rc7_060622_LinuxIntel_langpack_or-IN.tar.gz 13422460
+SHA256 996c9b78b9b392bf9c91c0d3dfcb0ad78c97d48f098cf2d6e0352c7cfd55d710 OOo_2.0.3rc7_060622_LinuxIntel_langpack_or-IN.tar.gz 13422460
+MD5 33b44d4779550a0faa5db6b1215eb3a5 OOo_2.0.3rc7_060622_LinuxIntel_langpack_pa-IN.tar.gz 13403558
+RMD160 4c740b9ac0cfe6419dbf4c8c6c7a519df77f6b69 OOo_2.0.3rc7_060622_LinuxIntel_langpack_pa-IN.tar.gz 13403558
+SHA256 0a5ee26ce1662c9450ae9b67bead5255ad9e602c3df7f94d02f0974c3e7a9cca OOo_2.0.3rc7_060622_LinuxIntel_langpack_pa-IN.tar.gz 13403558
+MD5 8967313916317860b955ebcafeaeb590 OOo_2.0.3rc7_060622_LinuxIntel_langpack_pl.tar.gz 14376644
+RMD160 167b8f34974c0e814e53da01689b18735e85f953 OOo_2.0.3rc7_060622_LinuxIntel_langpack_pl.tar.gz 14376644
+SHA256 c2486ffa4981896fe0974fd2eed9d580c37362611acf8f36f8f5be80af8cfd7f OOo_2.0.3rc7_060622_LinuxIntel_langpack_pl.tar.gz 14376644
+MD5 1c4f8a2212666d7414975ea870ec8c05 OOo_2.0.3rc7_060622_LinuxIntel_langpack_pt-BR.tar.gz 14201656
+RMD160 f635d41dba70b2e7b106262d215ce3489d7d274d OOo_2.0.3rc7_060622_LinuxIntel_langpack_pt-BR.tar.gz 14201656
+SHA256 43102554f409cdca6e35d274941335ebc547149b51258042d33abb601fea6859 OOo_2.0.3rc7_060622_LinuxIntel_langpack_pt-BR.tar.gz 14201656
+MD5 1afa9f5c9e09203ffc189421c17c5d20 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ru.tar.gz 15494535
+RMD160 f494ad78f8791e45adcc7479921d13c406ee5b38 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ru.tar.gz 15494535
+SHA256 30a83e488496ec985ace891bd6b6f5c5475f5be3ad0d7715c55b7ec13157d543 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ru.tar.gz 15494535
+MD5 0ca2d5824b68ced5c5bbfb1c024f3d60 OOo_2.0.3rc7_060622_LinuxIntel_langpack_rw.tar.gz 13693902
+RMD160 aa07db1c992a608bedbb199d0e3e737fe87cf071 OOo_2.0.3rc7_060622_LinuxIntel_langpack_rw.tar.gz 13693902
+SHA256 1b1974ce4f99ae6cab142fd9de48ba0cf9815dfb1e86a61fd68fc76a469386e5 OOo_2.0.3rc7_060622_LinuxIntel_langpack_rw.tar.gz 13693902
+MD5 d7b5679dfcdb92fe5469d6b60729288c OOo_2.0.3rc7_060622_LinuxIntel_langpack_sh-YU.tar.gz 13343136
+RMD160 bc14c4f5d4b9716a488679480971ca3c18341f6f OOo_2.0.3rc7_060622_LinuxIntel_langpack_sh-YU.tar.gz 13343136
+SHA256 f0ea22f1cc8d480205103fbd33b863c7139d3b281b1ee55519f82af0ce8daa74 OOo_2.0.3rc7_060622_LinuxIntel_langpack_sh-YU.tar.gz 13343136
+MD5 f575229ce9848d25128ac43b80081e37 OOo_2.0.3rc7_060622_LinuxIntel_langpack_sk.tar.gz 14051059
+RMD160 08ada730b7cfc66983a0cc179c8f9a12da1274ab OOo_2.0.3rc7_060622_LinuxIntel_langpack_sk.tar.gz 14051059
+SHA256 1ba380c8603f224dc8a8510bef382ea0f7cac43797c9db39bf4ad0b67e42cee6 OOo_2.0.3rc7_060622_LinuxIntel_langpack_sk.tar.gz 14051059
+MD5 5aed65704d0d990b340b504a08da148a OOo_2.0.3rc7_060622_LinuxIntel_langpack_sl.tar.gz 13808562
+RMD160 f9260876af7f2f7603014e40668b73db03c6879f OOo_2.0.3rc7_060622_LinuxIntel_langpack_sl.tar.gz 13808562
+SHA256 86207b7b66f63a64de8f80ed962ace165426c71f824246c665771b2d3ee47d27 OOo_2.0.3rc7_060622_LinuxIntel_langpack_sl.tar.gz 13808562
+MD5 c273578aaea555c3c0008d5ea2899f27 OOo_2.0.3rc7_060622_LinuxIntel_langpack_sr-CS.tar.gz 13416785
+RMD160 65468854c3e9b222092513e80b35912dd4d3582c OOo_2.0.3rc7_060622_LinuxIntel_langpack_sr-CS.tar.gz 13416785
+SHA256 a6ae6e879d5b71a4dc02090a803e1f4abca87f3cfbba91dc37d716c3297b8f90 OOo_2.0.3rc7_060622_LinuxIntel_langpack_sr-CS.tar.gz 13416785
+MD5 44e39d2c21926921bb203a254b5aa212 OOo_2.0.3rc7_060622_LinuxIntel_langpack_st.tar.gz 13359112
+RMD160 483a5daf5f30489a6529f9a3a572c86c6f86ed01 OOo_2.0.3rc7_060622_LinuxIntel_langpack_st.tar.gz 13359112
+SHA256 12993c0a0f74a6206eb7eec4cff1120e31ad9de0342cfb29ee1a3c467343e15b OOo_2.0.3rc7_060622_LinuxIntel_langpack_st.tar.gz 13359112
+MD5 7386e24804c7e9b0bd30679fa530ac78 OOo_2.0.3rc7_060622_LinuxIntel_langpack_sv.tar.gz 13875510
+RMD160 a3eef3b2dd463625462ba57f3ebece5368ef90d3 OOo_2.0.3rc7_060622_LinuxIntel_langpack_sv.tar.gz 13875510
+SHA256 5c0e24511e76a4ab88391e770810f0fb6b8c6a49a5684643c3e8751335a558cc OOo_2.0.3rc7_060622_LinuxIntel_langpack_sv.tar.gz 13875510
+MD5 bc6ee480de9e4799de6b3ec97ae2952b OOo_2.0.3rc7_060622_LinuxIntel_langpack_sw-TZ.tar.gz 13489382
+RMD160 c79327f05e33ecf88a577b8c2fc02db711bdb063 OOo_2.0.3rc7_060622_LinuxIntel_langpack_sw-TZ.tar.gz 13489382
+SHA256 07a50788829c633cc1217c41e74577ad488ea806a29758fbf5b32e721b40476a OOo_2.0.3rc7_060622_LinuxIntel_langpack_sw-TZ.tar.gz 13489382
+MD5 d034cce8776e9e4fa6553a5f9a40de1c OOo_2.0.3rc7_060622_LinuxIntel_langpack_ta-IN.tar.gz 13382979
+RMD160 e302b350fbaf26847e38fe9a53375dfdcc8bf158 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ta-IN.tar.gz 13382979
+SHA256 be1e2ae43d49f880381b9dd23c14025b6b5c543a1aba098ebb2589c39d85c5f6 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ta-IN.tar.gz 13382979
+MD5 23c5a8232bd6935b56c70b2cbfa23ced OOo_2.0.3rc7_060622_LinuxIntel_langpack_te-IN.tar.gz 13431872
+RMD160 c43729ef35df2d2c6676f9fa846e93906dcaa797 OOo_2.0.3rc7_060622_LinuxIntel_langpack_te-IN.tar.gz 13431872
+SHA256 04550cdaecab54342652ec6d36eb27652e0877fd5a5c2ef95cedcbb992aa8413 OOo_2.0.3rc7_060622_LinuxIntel_langpack_te-IN.tar.gz 13431872
+MD5 6f2a92a4bb1f3e11eb4859b65cf4270c OOo_2.0.3rc7_060622_LinuxIntel_langpack_tg.tar.gz 13409509
+RMD160 b636b8a71cdeb89d1efdf12ecf633593e6c7aa19 OOo_2.0.3rc7_060622_LinuxIntel_langpack_tg.tar.gz 13409509
+SHA256 f6b72fdaff9f43169ae06f0fb5ebfa719f6f0478054f0c8dc2a7cae535321634 OOo_2.0.3rc7_060622_LinuxIntel_langpack_tg.tar.gz 13409509
+MD5 822816e27cc4b40f9288bd53a2c95d58 OOo_2.0.3rc7_060622_LinuxIntel_langpack_th.tar.gz 13805027
+RMD160 dc1beb0ebab1e3f9183525bbfa694d820d2795f5 OOo_2.0.3rc7_060622_LinuxIntel_langpack_th.tar.gz 13805027
+SHA256 fefb4ca64dfb4f605fb8e926445a41c7130e3a2f839eb386c8b4f26712e6d82d OOo_2.0.3rc7_060622_LinuxIntel_langpack_th.tar.gz 13805027
+MD5 3bbba778baef8fe07be9560ddfe507a2 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ti-ER.tar.gz 13308994
+RMD160 f58ac5dd46a7a05d5ec97dfac9d132f9132e252d OOo_2.0.3rc7_060622_LinuxIntel_langpack_ti-ER.tar.gz 13308994
+SHA256 4b19d1ff18500269402b1001bd8a3e58f6c8fb93f068dba817af115100a92e0d OOo_2.0.3rc7_060622_LinuxIntel_langpack_ti-ER.tar.gz 13308994
+MD5 6579b57d4c751539c833ba99b3916105 OOo_2.0.3rc7_060622_LinuxIntel_langpack_tr.tar.gz 13639630
+RMD160 3c238adfcbb0c1be8612c79aa9d8539f92dcdbd0 OOo_2.0.3rc7_060622_LinuxIntel_langpack_tr.tar.gz 13639630
+SHA256 133563669580330bd9229153ef48fa286dea1a9b925bca177e459fbf35712a97 OOo_2.0.3rc7_060622_LinuxIntel_langpack_tr.tar.gz 13639630
+MD5 4b4d923a25d8ced95ea8980c49cc0049 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ur-IN.tar.gz 13411407
+RMD160 5fc80121577339d2c69b9e00ad32235d57a47788 OOo_2.0.3rc7_060622_LinuxIntel_langpack_ur-IN.tar.gz 13411407
+SHA256 448d7098fa4f19148e72166914b6617bce7bdd894af062a237f868fb56b59f0f OOo_2.0.3rc7_060622_LinuxIntel_langpack_ur-IN.tar.gz 13411407
+MD5 500a8ca499e7fa89c03ee915fbff5aaa OOo_2.0.3rc7_060622_LinuxIntel_langpack_vi.tar.gz 13351431
+RMD160 9b62899c208f920ea1e21fd59a8868c9da3a20cb OOo_2.0.3rc7_060622_LinuxIntel_langpack_vi.tar.gz 13351431
+SHA256 820e42a4e0b9bfcbfe481b13180311aafa0b59e5d98e0c37da6b817ebcdce885 OOo_2.0.3rc7_060622_LinuxIntel_langpack_vi.tar.gz 13351431
+MD5 4d2b08b6797b724ed0354399707b009a OOo_2.0.3rc7_060622_LinuxIntel_langpack_xh.tar.gz 13443657
+RMD160 0341fe9f4dc2d8b901b4312a11090a00f1ffc21b OOo_2.0.3rc7_060622_LinuxIntel_langpack_xh.tar.gz 13443657
+SHA256 69396dd828379cfb72b99df84378d0019651725a5b326f33f5f987c65e723316 OOo_2.0.3rc7_060622_LinuxIntel_langpack_xh.tar.gz 13443657
+MD5 8289c6aca619b42cd7e67d8aa9761741 OOo_2.0.3rc7_060622_LinuxIntel_langpack_zh-CN.tar.gz 14228502
+RMD160 d60f402650b0fd0d09155a19690e4a8231eca192 OOo_2.0.3rc7_060622_LinuxIntel_langpack_zh-CN.tar.gz 14228502
+SHA256 ad4f55744e1e0db6cdbe9329f4f0df67df42f61ae1607bb61220af45e0ce279c OOo_2.0.3rc7_060622_LinuxIntel_langpack_zh-CN.tar.gz 14228502
+MD5 5c0936c6fb5b825be34836198f0a9ee1 OOo_2.0.3rc7_060622_LinuxIntel_langpack_zh-TW.tar.gz 14381512
+RMD160 80c8c0cc616fb9924099b71da33d2de86a3ec0c7 OOo_2.0.3rc7_060622_LinuxIntel_langpack_zh-TW.tar.gz 14381512
+SHA256 8c9d0c01024251febbf015ba2778a819a3f8ea52ef1f9f80557fd37e95027e81 OOo_2.0.3rc7_060622_LinuxIntel_langpack_zh-TW.tar.gz 14381512
+MD5 923be641718c149e2ee5bdffefd6dba0 OOo_2.0.3rc7_060622_LinuxIntel_langpack_zu.tar.gz 13405489
+RMD160 89dbdae6f6bf905465f2367ee4eefe2397e71e01 OOo_2.0.3rc7_060622_LinuxIntel_langpack_zu.tar.gz 13405489
+SHA256 34a56134b3382800389d57dec0b7efe970e931be230e97b47b36a08332e17fd9 OOo_2.0.3rc7_060622_LinuxIntel_langpack_zu.tar.gz 13405489
diff --git a/app-office/openoffice-bin/openoffice-bin-2.0.3.ebuild b/app-office/openoffice-bin/openoffice-bin-2.0.3.ebuild
new file mode 100644
index 000000000000..a8c4bf594d2b
--- /dev/null
+++ b/app-office/openoffice-bin/openoffice-bin-2.0.3.ebuild
@@ -0,0 +1,153 @@
+# Copyright 1999-2006 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.0.3.ebuild,v 1.1 2006/07/02 08:15:01 suka Exp $
+
+inherit eutils fdo-mime rpm multilib
+
+IUSE="gnome java"
+
+MY_PV="${PV}rc7"
+MY_PV2="${MY_PV}_060622"
+MY_PV3="${PV}-7"
+PACKED="OOC680_m7_native_packed-1"
+BUILDID="9044"
+S="${WORKDIR}/${PACKED}_en-US.${BUILDID}/RPMS"
+DESCRIPTION="OpenOffice productivity suite"
+
+SRC_URI="mirror://openoffice/stable/${PV}/OOo_${PV}_LinuxIntel_install.tar.gz"
+
+LANGS="af as_IN be_BY bg bs ca cs cy da de el en en_GB en_ZA es et fa fi fr gu_IN he hi_IN hr hu it ja km ko lt mk ml_IN mr_IN nb nl nn ns or_IN pa_IN pl pt_BR ru rw sh_YU sk sl sr_CS st sv sw_TZ ta_IN te_IN tg th ti_ER tr ur_IN vi xh zh_CN zh_TW zu"
+
+for X in ${LANGS} ; do
+ [ ${X} != "en" ] && SRC_URI="${SRC_URI} linguas_${X}? ( http://oootranslation.services.openoffice.org/pub/OpenOffice.org/${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 virtual/x11 )
+ sys-libs/glibc
+ >=dev-lang/perl-5.0
+ app-arch/zip
+ app-arch/unzip
+ java? ( !amd64? ( >=virtual/jre-1.4.1 )
+ 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
+ app-admin/eselect-oodict"
+
+PROVIDE="virtual/ooo"
+RESTRICT="nostrip"
+
+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.0.3-2.noarch.rpm
+
+ use gnome && rpm_unpack ${S}/openoffice.org-gnome-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.0/* ${D}${INSTDIR}
+
+ #Menu entries, icons and mime-types
+ cd ${D}${INSTDIR}/share/xdg/
+ sed -i -e s/'Exec=openoffice.org-2.0-printeradmin'/'Exec=oopadmin2'/g printeradmin.desktop || die
+
+ for desk in base calc draw impress math printeradmin writer; do
+ mv ${desk}.desktop openoffice.org-2.0-${desk}.desktop
+ sed -i -e s/openoffice.org-2.0/ooffice2/g openoffice.org-2.0-${desk}.desktop || die
+ sed -i -e s/openofficeorg-20-${desk}/ooo-${desk}2/g openoffice.org-2.0-${desk}.desktop || die
+ domenu openoffice.org-2.0-${desk}.desktop
+ insinto /usr/share/pixmaps
+ newins ${WORKDIR}/usr/share/icons/gnome/48x48/apps/openofficeorg-20-${desk}.png ooo-${desk}2.png
+ done
+
+ insinto /usr/share/mime/packages
+ doins ${WORKDIR}/usr/share/mime/packages/openoffice.org.xml
+
+ # Install wrapper script
+ newbin ${FILESDIR}/${PV}/ooo-wrapper2 ooffice2
+ sed -i -e s/PV/${PV}/g ${D}/usr/bin/ooffice2 || die
+ sed -i -e "s|INSTDIR|${INSTDIR}|g" ${D}/usr/bin/ooffice2 || die
+
+ # Component symlinks
+ for app in base calc draw fromtemplate impress math web writer; do
+ dosym ooffice2 /usr/bin/oo${app}2
+ done
+
+ dosym ${INSTDIR}/program/spadmin.bin /usr/bin/oopadmin2
+
+ # 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
+
+ [ -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 " $ ooffice2"
+ einfo
+ einfo " Also, for individual components, you can use any of:"
+ einfo
+ einfo " oobase2, oocalc2, oodraw2, oofromtemplate2, ooimpress2, oomath2,"
+ einfo " ooweb2 or oowriter2"
+ 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. "
+
+}