summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Proschofsky <suka@gentoo.org>2005-09-28 09:58:41 +0000
committerAndreas Proschofsky <suka@gentoo.org>2005-09-28 09:58:41 +0000
commit8ec9f60cccb4f9d14b7a7c5ad542cfe2d08dc3dc (patch)
treed8cf9ce76681b91e3923e4a7649454f7b406e811 /app-office/openoffice-bin/files
parentAdding small trick to avoid autodetect of installed gtk and making gtk depend... (diff)
downloadhistorical-8ec9f60cccb4f9d14b7a7c5ad542cfe2d08dc3dc.tar.gz
historical-8ec9f60cccb4f9d14b7a7c5ad542cfe2d08dc3dc.tar.bz2
historical-8ec9f60cccb4f9d14b7a7c5ad542cfe2d08dc3dc.zip
remove obsolete pre-releases
Package-Manager: portage-2.0.52-r1
Diffstat (limited to 'app-office/openoffice-bin/files')
-rw-r--r--app-office/openoffice-bin/files/1.9/ooo-wrapper2130
-rw-r--r--app-office/openoffice-bin/files/digest-openoffice-bin-1.9.12831
-rw-r--r--app-office/openoffice-bin/files/digest-openoffice-bin-1.9.13032
3 files changed, 0 insertions, 193 deletions
diff --git a/app-office/openoffice-bin/files/1.9/ooo-wrapper2 b/app-office/openoffice-bin/files/1.9/ooo-wrapper2
deleted file mode 100644
index 8222add9ae93..000000000000
--- a/app-office/openoffice-bin/files/1.9/ooo-wrapper2
+++ /dev/null
@@ -1,130 +0,0 @@
-#!/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};
-my $DebugRH = $ENV{OOO_RH_DEBUG};
-
-# Define the vendor of this particular OOo pacakge
-my $VendorName = 'Gentoo';
-# Define system installation directory
-# Autoconf totally sucks for @libdir@ type substitution
-my $SystemInstallDir = '/usr/lib/openoffice';
-# Suffix for parallel installable versioning
-my $BinSuffix = '2';
-# ooo-build version
-my $OOO_BUILDVERSION = 'PV';
-# Debugging
-
-if ( $DebugRH ) {
- $Debug = 1;
- $VendorName = "RedHat";
-}
-if ($Debug && $BinSuffix =~ /^\@/) {
- $SystemInstallDir = "/usr/lib/ooo-1.9";
- $BinSuffix = '1.9';
-}
-
-#=============================================================================
-# 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 built with ooo-build-$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, "/usr/lib/openoffice/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";
-}
-
-# And here we go.
-exec "$SystemInstallDir/program/soffice", @ooo_argv
diff --git a/app-office/openoffice-bin/files/digest-openoffice-bin-1.9.128 b/app-office/openoffice-bin/files/digest-openoffice-bin-1.9.128
deleted file mode 100644
index 3cbe4dd17d1e..000000000000
--- a/app-office/openoffice-bin/files/digest-openoffice-bin-1.9.128
+++ /dev/null
@@ -1,31 +0,0 @@
-MD5 a621c5f3a3257294e798f44060a5a31c OOo_1.9.128_LinuxIntel_install.tar.gz 106836032
-MD5 e2ef4885e8c1528358017da8e2387387 openoffice.org-af-1.9.128-1.i586.tar.gz 14035869
-MD5 bc8bb4831fe9545cbfcc35c5028978ef openoffice.org-bg-1.9.128-1.i586.tar.gz 14593056
-MD5 1c233f47bc98892a179d5f79a883e8f8 openoffice.org-cs-1.9.128-1.i586.tar.gz 14665241
-MD5 b79a2aace67f2c9cf7fe2e4589a755fe openoffice.org-cy-1.9.128-1.i586.tar.gz 13955346
-MD5 9de77eb8e0a021d9648292271adb5692 openoffice.org-da-1.9.128-1.i586.tar.gz 14516913
-MD5 3f1050fd0f32c03e2b738de426a506d6 openoffice.org-de-1.9.128-1.i586.tar.gz 15515161
-MD5 4255d3c536b72db6221e00d4a435d287 openoffice.org-en-GB-1.9.128-1.i586.tar.gz 14105764
-MD5 10fb709ea4e067d4767c3c0e273f79cd OOo_1.9.128_LinuxIntel_langpack_es.tar.gz 14835367
-MD5 a33f3dde79fd0a97217d6a8d89cbcc85 openoffice.org-et-1.9.128-1.i586.tar.gz 14754192
-MD5 0be0f114bc7c826ef28ba1562fe61ee8 openoffice.org-fi-1.9.128-1.i586.tar.gz 14034824
-MD5 4a86761b904abc8724904094cba06a0a openoffice.org-fr-1.9.128-1.i586.tar.gz 15029958
-MD5 f647eddf1094980b9d17e68f531a796a openoffice.org-hr-1.9.128-1.i586.tar.gz 14312494
-MD5 fff80cea24dbc4ca9d433ac463235922 openoffice.org-hu-1.9.128-1.i586.tar.gz 14086200
-MD5 b3f60da4a090e7c1254ef9917d28e46b OOo_1.9.128_LinuxIntel_langpack_it.tar.gz 14802960
-MD5 47e700c33178ebf440ea769105d99d1e OOo_1.9.128_LinuxIntel_langpack_ja.tar.gz 15583966
-MD5 375808d6d257162c08610fbcbabe88a6 openoffice.org-km-1.9.128-1.i586.tar.gz 16817005
-MD5 97bb099db64f7bf174295275f2f485ca OOo_1.9.128_LinuxIntel_langpack_ko.tar.gz 14724953
-MD5 c943703d40875988d8e6419213e6773b openoffice.org-lt-1.9.128-1.i586.tar.gz 13959046
-MD5 b1d8f701f88871f544df17aad569b81f openoffice.org-nb-1.9.128-1.i586.tar.gz 14001370
-MD5 e9d5e064fe04c4d7e5a51992fb8f7529 openoffice.org-nl-1.9.128-1.i586.tar.gz 13934329
-MD5 6471f93e141be0c596ef58b8d379014d openoffice.org-nn-1.9.128-1.i586.tar.gz 13983015
-MD5 5626937666a2fb5b2aace4d2863aba67 openoffice.org-ns-1.9.128-1.i586.tar.gz 13946180
-MD5 46e9407c00a6793fb4316557371b575c openoffice.org-sk-1.9.128-1.i586.tar.gz 14627212
-MD5 69eff8f6986b901b59bef7401a8fd3f0 openoffice.org-sl-1.9.128-1.i586.tar.gz 13962611
-MD5 75b7191f671fa01101b5d55299810102 OOo_1.9.128_LinuxIntel_langpack_sv.tar.gz 14625667
-MD5 857b9f7654d6ffb98b59c13cfb98177c openoffice.org-tn-1.9.128-1.i586.tar.gz 14050250
-MD5 628e91398028908c88dc18bc12449692 openoffice.org-xh-1.9.128-1.i586.tar.gz 14081473
-MD5 24ce0ea49060b56f1260dd530ffb60e2 OOo_1.9.128_LinuxIntel_langpack_zh-CN.tar.gz 14907586
-MD5 d749590598eab2204b7c8963474c3f00 OOo_1.9.128_LinuxIntel_langpack_zh-TW.tar.gz 15071952
-MD5 1561a156ab8c8ea29ec2fa5089cade48 openoffice.org-zu-1.9.128-1.i586.tar.gz 14006588
diff --git a/app-office/openoffice-bin/files/digest-openoffice-bin-1.9.130 b/app-office/openoffice-bin/files/digest-openoffice-bin-1.9.130
deleted file mode 100644
index 4112451ac3be..000000000000
--- a/app-office/openoffice-bin/files/digest-openoffice-bin-1.9.130
+++ /dev/null
@@ -1,32 +0,0 @@
-MD5 ad5aebdbf31265e29c7f1c5cfdc82c0d OOo_1.9.130_LinuxIntel_install.tar.gz 106287138
-MD5 0461a8f6fe27b8efa16f7809ca56e70e openoffice.org-af-1.9.130-1.i586.tar.gz 13329106
-MD5 4c4eb2f467bb3387a960089586151c87 openoffice.org-bg-1.9.130-1.i586.tar.gz 13888924
-MD5 f99295a747b8fd900badb8dbe91f329e openoffice.org-bn-1.9.130-1.i586.tar.gz 13244409
-MD5 4dd7856d180878fad6bb8d00abcd1803 openoffice.org-br-1.9.130-1.i586.tar.gz 14299557
-MD5 7a22eb8eb2b342d2816c567dcd92cd72 openoffice.org-cs-1.9.130-1.i586.tar.gz 13929217
-MD5 d43fe73fc7978009807edb93f74e1552 openoffice.org-cy-1.9.130-1.i586.tar.gz 13238303
-MD5 6f40c40340c7aec199fa11729ac6416c openoffice.org-da-1.9.130-1.i586.tar.gz 13805141
-MD5 b23e495399ab1914a33b47badc08be8b openoffice.org-de-1.9.130-1.i586.tar.gz 14800391
-MD5 7f63ec9805f87ef3958b086d2f4887d3 openoffice.org-en-GB-1.9.130-1.i586.tar.gz 13399676
-MD5 5a87a94970d587f680b063d2fcd31313 openoffice.org-et-1.9.130-1.i586.tar.gz 14049674
-MD5 9899dadc740a3a1bbba8355a7df83fd0 openoffice.org-fi-1.9.130-1.i586.tar.gz 13321745
-MD5 00f25176e08d81799aa90e80c95b03de openoffice.org-fr-1.9.130-1.i586.tar.gz 14319533
-MD5 b9b52ed5759dea8309d49d9113fef726 openoffice.org-ga-1.9.130-1.i586.tar.gz 13530964
-MD5 1f37c398cc4e2ba6f7aeae7771854586 openoffice.org-hr-1.9.130-1.i586.tar.gz 13604541
-MD5 dc9921c60664427fc50fba8c6da3ebe3 openoffice.org-hu-1.9.130-1.i586.tar.gz 13376349
-MD5 b0a494bcaf261736505a3d24db42e768 openoffice.org-it-1.9.130-1.i586.tar.gz 14087713
-MD5 7325fb26bfa75c684bdc4939b9ced77d openoffice.org-km-1.9.130-1.i586.tar.gz 16079409
-MD5 5d239598e0ebddb9dd4e98935c30f923 openoffice.org-lt-1.9.130-1.i586.tar.gz 13247867
-MD5 cead49062f06bd5ce106663ee188f3aa openoffice.org-nb-1.9.130-1.i586.tar.gz 13296470
-MD5 5b92fd56dfc7268fec49c3595bd945a1 openoffice.org-ne-1.9.130-1.i586.tar.gz 13318855
-MD5 daad8d6afad39b5aea14c225c2d7f998 openoffice.org-nl-1.9.130-1.i586.tar.gz 14400129
-MD5 a67b9b33dc1227ed5a60b3d9c5949d82 openoffice.org-nn-1.9.130-1.i586.tar.gz 13271211
-MD5 1269e055ed9e6e814ae90a6c15dd7a81 openoffice.org-ns-1.9.130-1.i586.tar.gz 13232021
-MD5 09391a3047b6334e012a5f0fda708aac openoffice.org-sh-YU-1.9.130-1.i586.tar.gz 13227775
-MD5 060b7719865232c642880dafa8fdd611 openoffice.org-sk-1.9.130-1.i586.tar.gz 13915325
-MD5 c956cc060de203a5cfff2219d61f0328 openoffice.org-sl-1.9.130-1.i586.tar.gz 13247833
-MD5 e98ba8b1e33275404b782413a8f3b907 openoffice.org-sr-CS-1.9.130-1.i586.tar.gz 13276319
-MD5 227f1d6aa97bc35853e79225659b03b4 openoffice.org-sv-1.9.130-1.i586.tar.gz 13890586
-MD5 419397acb75064abc2e365a367e7e6d1 openoffice.org-tn-1.9.130-1.i586.tar.gz 13336621
-MD5 e6dce046126002de19b4cec2a6496d47 openoffice.org-xh-1.9.130-1.i586.tar.gz 13373758
-MD5 e58bab9134de4b0df44f204d1cde60b9 openoffice.org-zu-1.9.130-1.i586.tar.gz 13294677