summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Proschofsky <suka@gentoo.org>2004-04-11 18:12:54 +0000
committerAndreas Proschofsky <suka@gentoo.org>2004-04-11 18:12:54 +0000
commit40124e6dc223459ac730347e6f361af25f247aea (patch)
tree5b40732209d33d7d676f934f72530cc7c0fd2669
parentMarked 1.6.8-r6, 1.8.0-r5 and 1.8.1-r2 stable on all arches. Removed old vers... (diff)
downloadhistorical-40124e6dc223459ac730347e6f361af25f247aea.tar.gz
historical-40124e6dc223459ac730347e6f361af25f247aea.tar.bz2
historical-40124e6dc223459ac730347e6f361af25f247aea.zip
remove old version and associated cruft
-rw-r--r--app-office/openoffice-ximian/Manifest7
-rw-r--r--app-office/openoffice-ximian/files/1.1.0/ooffice-wrapper-1.3266
-rw-r--r--app-office/openoffice-ximian/files/digest-openoffice-ximian-1.1.463
-rw-r--r--app-office/openoffice-ximian/files/drawing.desktop53
-rw-r--r--app-office/openoffice-ximian/files/presentation.desktop53
-rw-r--r--app-office/openoffice-ximian/files/spreadsheet.desktop54
-rw-r--r--app-office/openoffice-ximian/files/textdoc.desktop54
-rw-r--r--app-office/openoffice-ximian/openoffice-ximian-1.1.46.ebuild608
8 files changed, 0 insertions, 1098 deletions
diff --git a/app-office/openoffice-ximian/Manifest b/app-office/openoffice-ximian/Manifest
index 77fdcc2df747..50b69e9815a6 100644
--- a/app-office/openoffice-ximian/Manifest
+++ b/app-office/openoffice-ximian/Manifest
@@ -1,16 +1,9 @@
MD5 9fb397e7d778042a6ff86a0f7b25a634 openoffice-ximian-1.1.51.ebuild 14857
-MD5 9db58898583f97148b0694d8802b0302 openoffice-ximian-1.1.46.ebuild 18267
MD5 987b9cc61bd74ae41a06d7397c49fca0 openoffice-ximian-1.1.52.ebuild 15157
MD5 ac0c8dcd83c58485129d49587320253f ChangeLog 7979
MD5 f3942f82433bf5ae16461240cbcc4984 metadata.xml 300
-MD5 f0de3fac5fcb75c45346444d17cca718 files/drawing.desktop 1653
-MD5 4657a820e8c5914e37383fa3e014ab38 files/textdoc.desktop 1969
-MD5 4834c6f3d1bac4ab5567ba499c3a584e files/spreadsheet.desktop 1709
-MD5 61809b2d86430fb760a3545a0d27cbb6 files/presentation.desktop 1941
-MD5 0a7f30e95eac54db54a2be02603f2036 files/digest-openoffice-ximian-1.1.46 213
MD5 bd8a36025a84cb2ad840e822f513e468 files/digest-openoffice-ximian-1.1.51 213
MD5 ebb47daad89ff2dd462d21aad878b42b files/digest-openoffice-ximian-1.1.52 215
-MD5 9caea43966f68ba0f3d7c364c9a01b89 files/1.1.0/ooffice-wrapper-1.3 8964
MD5 6ecbfeab440a03f031dbfa0631404aa0 files/1.1.0/ximian-openoffice.applications 980
MD5 d1a499cfa276614323b547e013d5c6a0 files/1.1.0/ximian-openoffice.keys 6298
MD5 0b9b6204209b8be145648863dbffaa99 files/1.1.0/openoffice-1.1.0-sparc64-fix.patch 400
diff --git a/app-office/openoffice-ximian/files/1.1.0/ooffice-wrapper-1.3 b/app-office/openoffice-ximian/files/1.1.0/ooffice-wrapper-1.3
deleted file mode 100644
index b43b796c4670..000000000000
--- a/app-office/openoffice-ximian/files/1.1.0/ooffice-wrapper-1.3
+++ /dev/null
@@ -1,266 +0,0 @@
-#!/bin/sh
-#
-# Wrapper script for openoffice
-#
-# (C) Peter 'Nidd' Novodvorsky, 2001,2002
-# (C) Martin 'empty' Quinson, 2002.
-# Modifications by Chris Halls
-# Modifications by Lucien Saviot
-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# 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
-
-# this string should be exactly as in ~/.sversionrc
-PV=<pv>
-OOVERSION="OpenOffice.org ${PV}"
-
-##
-## Source system configuration file
-##
-[ -r /etc/openoffice/openoffice.conf ] && . /etc/openoffice/openoffice.conf
-
-###
-### Get user settings directory from ~/.sversionrc and echo directory name to stdout
-### get_settings_dir <Version>
-### return: 0 - directory found,
-### 1 - ~/.sversionrc non existent
-### 2 - entry exists in ~/.sversionrc but directory not found
-### 3 - ~/.sversionrc exists but no entry found
-get_settings_dir()
-{
- [ -r ${HOME}/.sversionrc ] || exit 1
- # warning, .sversionrc is DOS encoded so strip ^M
- settings_dir="`tr -d '\r' < ~/.sversionrc | sed -n "/^$1=/s%^$1=file://\(.*\)$%\1%p"`"
- echo "$settings_dir"
- [ -n "$settings_dir" ] || exit 3
- [ -d "$settings_dir" ] || exit 2
-}
-
-##
-## where does OO live for this user ?
-##
-OOHOME="`get_settings_dir "$OOVERSION"`"
-if [ $? -eq 2 ] ; then
- # .sversionrc contains a version yet the directory does not exist
- echo "I'm confused because I can't find OpenOffice's user files."
- echo "Your ~/.sversionrc file tells they should be under $OOHOME,"
- echo "but they are not. Please fix the situation manually."
- echo "You may want to edit ~/.sversionrc to indicate where is OO"
- echo "installed, or remove it if you did remove your installation"
- echo "directory manually (you bad one)."
- exit 1
-fi
-
-##
-## Unset SESSION_MANAGER if gnome-session is the session manager
-## See http://www.openoffice.org/issues/show_bug.cgi?id=4494
-##
-SMPID=`echo $SESSION_MANAGER | sed --quiet "s,local.*/,,p"`
-if [ -n "$SMPID" ] && [ -L /proc/"$SMPID"/exe ]; then
-
- SESMGR="`readlink -f /proc/$SMPID/exe`"
- case "$SESMGR" in
- /usr/bin/gnome-session*)
- echo "Gnome session manager detected - session management disabled"
- unset SESSION_MANAGER
- ;;
- esac
-fi
-
-##
-## Add known Debian fonts locations to search path
-##
-## Please report if you have problems with fonts, or know of non-defoma integrated packages that place fonts in other
-## paths.
-##
-
-# Default font path. This is used if SAL_FONTPATH_USER is not defined.
-DEBOO_FONTPATH="/usr/lib/X11/fonts/misc/;/usr/lib/X11/fonts/cyrillic/;\
-/usr/lib/X11/fonts/100dpi/:unscaled;/usr/lib/X11/fonts/75dpi/:unscaled;\
-/usr/lib/X11/fonts/Type1/;/usr/lib/X11/fonts/CID;/usr/lib/X11/fonts/Speedo/;\
-/usr/lib/X11/fonts/100dpi/;/usr/lib/X11/fonts/75dpi/;\
-/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType;\
-/usr/lib/X11/fonts/TrueType;\
-/usr/share/fonts/truetype/kochi;\
-/usr/lib/X11/fonts/TrueType/larabie-straight;\
-/usr/lib/X11/fonts/TrueType/larabie-uncommon"
-
-SAL_FONTPATH_USER=${SAL_FONTPATH_USER:-"$DEBOO_FONTPATH"}
-export SAL_FONTPATH_USER
-
-## search LOCALE
-if [ -n "$LC_ALL" ]; then
- LOCALE="$LC_ALL"
- # OOo doesn't understand LC_ALL, so set LANG
- LANG="$LC_ALL"
-elif [ -n "$LANG" ]; then
- LOCALE="$LANG"
-elif [ -n "$LC_MESSAGES" ]; then
- LOCALE="$LC_MESSAGES"
- LANG="$LC_MESSAGES"
-else
- LOCALE="en_US"
-fi
-
-# Set locale to en_US if locale is C
-if [ "x$LOCALE" = "xC" ] ; then LOCALE="en_US"; fi
-
-LOCALEOO=`echo $LOCALE | sed 's/_/-/'`
-
-##
-## install OO for this user if needed
-##
-if [ -z "$OOHOME" ] ; then
- if [ -e /etc/openoffice/autoresponse-<pv>.conf ] && \
- grep -q DESTINATIONPATH /etc/openoffice/autoresponse-<pv>.conf ; then
-
-# Do not take old settings as migration results in broken behaviour
-#
-# UPDATEFLAG=""
-# if oldhome="`get_settings_dir "OpenOffice.org 1.0.3"`" ; then
-# OOHOME="$oldhome"
-# echo "Using settings from 1.0.3: /${oldhome}"
-# /bin/echo -e "OpenOffice.org <pv>=file://$oldhome\r" >> ~/.sversionrc
-# UPDATEFLAG="-update:/$oldhome"
-# fi
- # first install
- OOHOME=`grep DESTINATIONPATH /etc/openoffice/autoresponse-<pv>.conf | \
- sed -e 's/DESTINATIONPATH=//' -e "s|<home>|$HOME|"`
-
- if [ -d "$OOHOME" ]; then
- echo "openoffice.org: You have no entry for $OOVERSION in ~/.sversionrc, "
- echo "yet the directory $OOHOME exists."
- echo "Please remove $OOHOME and try again."
- exit 1
- fi
-
- echo "running openoffice.org setup..."
- if ! /opt/Ximian-OpenOffice/program/setup ${UPDATEFLAG} -R:/etc/openoffice/autoresponse-<pv>.conf >& /dev/null; then
- echo "setup failed.. abort"
- exit 1
- fi
-
-
-# fi
-
- echo "Setup complete. Running openoffice.org..."
-
-else
- echo "openoffice.org: Damnit! I can't find OpenOffice's user files. Did you break"
- echo "the /etc/openoffice/autoresponse-<pv>.conf file manually ?"
- echo "This file should contain DESTINATIONPATH"
- exit 1
- fi
-fi
-
-##
-## If no file is specified on the command line, which application to start?
-## The wrapper can be called from several links in /usr/bin
-##
-if [ $# = 0 ]; then
- case `basename $0` in
- oocalc) set -- private:factory/scalc;;
- oodraw) set -- private:factory/sdraw;;
- ooimpress) set -- private:factory/simpress;;
- oomath) set -- private:factory/smath;;
- oowriter) set -- private:factory/swriter;;
- oohtml) set -- private:factory/swriter/web;;
- oomaster) set -- private:factory/swriter/Global;;
- esac
-fi
-
-## Previous dead installation?
-[ -d $HOME/.openoffice/user ] && echo "Warning: you have a user settings directory from 1.0.0 in ~/.openoffice/user - this is no longer used"
-
-# There is no locale import file
-## Change the ooLocale key in SETUPFILE acording to LOCALE
-#TMPFILE=`mktemp -t oooLocale.XXXXXXXXXX` && {
-# cat >${TMPFILE} <<EOF
-#<?xml version="1.0" encoding="UTF-8"?>
-#<oor:node xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:name="Setup" oor:package="org.openoffice">
-# <node oor:name="L10N">
-# <prop oor:name="ooLocale" oor:type="xs:string">
-# <value>$LOCALEOO</value>
-# </prop>
-# </node>
-#</oor:node>
-#EOF
-# ooconfigimport $TMPFILE >/dev/null
-# rm -f ${TMPFILE}
-#}
-
-# Check whether the programs actually link to anything, or are from an old
-# version.
-
-if [ ! -s $OOHOME/setup ]; then
- echo "${OOHOME}/setup links to nothing, resetting link"
- ln -sf /opt/Ximian-OpenOffice/program/setup ${OOHOME}/setup
-fi
-if [ ! -s $OOHOME/soffice ]; then
- echo "${OOHOME}/soffice links to nothing, resetting link"
- ln -sf /opt/Ximian-OpenOffice/program/soffice ${OOHOME}/soffice
-fi
-if [ ! -s $OOHOME/spadmin ]; then
- echo "${OOHOME}/spadmin links to nothing, resetting link"
- ln -sf /opt/Ximian-OpenOffice/program/soffice ${OOHOME}/spadmin
-fi
-
-
-##
-## That's it. Launch the beast (with the given args)
-##
-LANG=$LOCALE
-export LANG
-case `basename $0` in
- oosetup) exec "$OOHOME/setup"
- ;;
- oopadmin) exec "$OOHOME/spadmin"
- ;;
- *) exec "$OOHOME/soffice" "$@"
- ;;
-esac
-## Changelog
-# 2003/04/01 halls
-# * Version 1.1beta
-# 2003/02/03 halls
-# * Check for nonexistent ooLocale every run
-# 2003/01/09 halls
-# * Version 1.0.2
-# 12/15 saviot
-# * Change ooLocale at startup in Setup.xml
-# <ooLocale cfg:type="string"/> doesn't work for help.
-# 12/03 challs
-# * Add Debian font paths to user font path
-# 11/14 saviot
-# * correct handling of UI language
-# * don't change Linguistic.xml after first startup(#168780)
-# * TODO: provide better defaults on first startup
-# 10/03 challs
-# * Fix use with LC_ALL
-# 07/10 challs
-# * use 1.0.1 directory and improve error checking
-# 07/02 challs
-# * use readlink in /proc/PID/exe to get
-# real session manager name
-# 06/12 challs
-# * merge into main package
-# * change $@ to "$@"
-# * source configuration file:
-# /etc/openoffice/openoffice.conf
-# 06/12 mquinson
-# * strace only when DEBUG is set to yes
-# * readd the $@ to pass the args to soffice
-# 06/06 mquinson
-# * Make sure the OLDLOCALE is never empty
-# * handle the case where the locale is C
diff --git a/app-office/openoffice-ximian/files/digest-openoffice-ximian-1.1.46 b/app-office/openoffice-ximian/files/digest-openoffice-ximian-1.1.46
deleted file mode 100644
index 053b5e00b60a..000000000000
--- a/app-office/openoffice-ximian/files/digest-openoffice-ximian-1.1.46
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 bec8b41089ebdad2831f3c456973ad4e OOo_1.1.0_source.tar.bz2 189164050
-MD5 ff8d22ac9351cc31890baa75480c4f7b ooo-build-1.1.46.tar.gz 1014914
-MD5 3f73b262e35011e42d0b4fbfa46c34cd ooo-icons-OOO_1_1-6.tar.gz 1336587
diff --git a/app-office/openoffice-ximian/files/drawing.desktop b/app-office/openoffice-ximian/files/drawing.desktop
deleted file mode 100644
index 6fbcfef9392e..000000000000
--- a/app-office/openoffice-ximian/files/drawing.desktop
+++ /dev/null
@@ -1,53 +0,0 @@
-[Desktop Entry]
-Name=Drawing
-Name[az]=Rəsm
-Name[ca]=Dibuix
-Name[cs]=Kreslení
-Name[da]=Tegneprogram
-Name[de]=Zeichnung
-Name[es]=Dibujo
-Name[fr]=Dessin
-Name[hr]=Crtanje
-Name[ms]=Lukisan
-Name[nl]=Tekenen
-Name[no]=Tegning
-Name[pl]=Rysunek
-Name[pt]=Drawing
-Name[sq]=Vizatim
-Name[sr]=Цртање
-Name[sr@Latn]=Crtanje
-Name[sv]=Teckning
-Name[vi]=Drawing
-Name[wa]=Dessinaedje
-Name[zh_CN]=画图工具
-Name[zh_TW]=繪圖
-Comment=OpenOffice.org drawing package
-Comment[az]=OpenOffice.org rəsm çəkmə paketi
-Comment[ca]=Paquet de dibuix d'OpenOffice.org
-Comment[cs]=Kreslicí balík OpenOffice.org
-Comment[da]=OpenOffice.org-tegnepakke
-Comment[de]=OpenOffice.org Zeichnungspaket
-Comment[es]=Paquete de dibujo de OpenOffice.org
-Comment[fr]=Dessin OpenOffice.org
-Comment[hr]=OpenOffice.org paket za crtanje
-Comment[ms]=Pakej lukisan OpenOffice.org
-Comment[nl]=OpenOffice.org tekenpakket
-Comment[no]=OpenOffice.org tegneprogram
-Comment[pl]=Rysunek OpenOffice.org
-Comment[pt]=Pacote de desenho OpenOffice.org
-Comment[sq]=Paketa për vizatimet në OpenOffice.org
-Comment[sr]=Пакет за цртање из Отворене канцеларије
-Comment[sr@Latn]=Paket za crtanje iz Otvorene kancelarije
-Comment[sv]=OpenOffice.org-teckningspaket
-Comment[vi]=Gói OpenOffice.org Drawing
-Comment[wa]=Programe di dessinaedje d' OpenOffice.org
-Comment[zh_CN]=OpenOffice.org 画图工具包
-Comment[zh_TW]=OpenOffice.org 繪圖軟體
-TryExec=oodraw
-Exec=oodraw
-Icon=ximian-openoffice-draw.png
-Terminal=false
-Type=Application
-Categories=GNOME;Application;Office;X-Ximian-Main;
-X-GNOME-Bugzilla-Bugzilla=Ximian
-X-GNOME-Bugzilla-Product=OpenOffice.org Ximian Edition
diff --git a/app-office/openoffice-ximian/files/presentation.desktop b/app-office/openoffice-ximian/files/presentation.desktop
deleted file mode 100644
index ea5c8bfbf8ab..000000000000
--- a/app-office/openoffice-ximian/files/presentation.desktop
+++ /dev/null
@@ -1,53 +0,0 @@
-[Desktop Entry]
-Name=Presentation
-Name[az]=Təqdimat
-Name[ca]=Presentació
-Name[cs]=Prezentace
-Name[da]=Præsentation
-Name[de]=Präsentation
-Name[es]=Presentación
-Name[fr]=Présentation
-Name[hr]=Prezentacija
-Name[ms]=Persembahan
-Name[nl]=Presentatie
-Name[no]=Presentasjon
-Name[pl]=Prezentacja
-Name[pt]=Presentation
-Name[sq]=Prezantime
-Name[sr]=Презентација
-Name[sr@Latn]=Prezentacija
-Name[sv]=Presentation
-Name[vi]=Presentation
-Name[wa]=Prezintåcion
-Name[zh_CN]=文档演示
-Name[zh_TW]=簡報
-Comment=OpenOffice.org presentation application
-Comment[az]=OpenOffice.org təqdimat proqramı
-Comment[ca]=Aplicació de presentacions d'OpenOffice.org
-Comment[cs]=Aplikace OpenOffice.org pro prezentace
-Comment[da]=OpenOffice.org-præsentationsprogram
-Comment[de]=OpenOffice.org Präsentationsanwendung
-Comment[es]=Aplicación de presentaciones de OpenOffice.org
-Comment[fr]=Application de présentation OpenOffice.org
-Comment[hr]=OpenOffice.org aplikacija za prezentacije
-Comment[ms]=Aplikasi persembahan OpenOffice.org
-Comment[nl]=OpenOffice.org presentatie-programma
-Comment[no]=Openoffice.org presentasjonsprogram
-Comment[pl]=Prezentacje OpenOffice.org
-Comment[pt]=Aplicação de apresentações OpenOffice.org
-Comment[sq]=Aplikativi për prezantimet i OpenOffice.org
-Comment[sr]=Програм за презентације из Отворене канцеларије
-Comment[sr@Latn]=Program za prezentacije iz Otvorene kancelarije
-Comment[sv]=OpenOffice.org-presentationsprogram
-Comment[vi]=Ứng dụng OpenOffice.org Presentation
-Comment[wa]=Programe di prezintåcion d' OpenOffice.org
-Comment[zh_CN]=OpenOffice.org 文档演示程序
-Comment[zh_TW]=OpenOffice.org 簡報應用程式
-TryExec=ooimpress
-Exec=ooimpress
-Icon=ximian-openoffice-impress.png
-Terminal=false
-Type=Application
-Categories=GNOME;Application;Office;X-Ximian-Main;
-X-GNOME-Bugzilla-Bugzilla=Ximian
-X-GNOME-Bugzilla-Product=OpenOffice.org Ximian Edition
diff --git a/app-office/openoffice-ximian/files/spreadsheet.desktop b/app-office/openoffice-ximian/files/spreadsheet.desktop
deleted file mode 100644
index 47a1897b989a..000000000000
--- a/app-office/openoffice-ximian/files/spreadsheet.desktop
+++ /dev/null
@@ -1,54 +0,0 @@
-[Desktop Entry]
-Name=Spreadsheet
-Name[az]=Hesab Cədvəli
-Name[ca]=Full de càlcul
-Name[cs]=Tabulkový kalkulátor
-Name[da]=Regneark
-Name[de]=Tabellenkalkulation
-Name[es]=Hoja de cálculo
-Name[fr]=Tableur
-Name[hr]=Tablični kalkulator
-Name[ms]=Hamparan
-Name[nl]=Spreadsheet
-Name[no]=Regneark
-Name[pl]=Arkusz Kalkulacyjny
-Name[pt]=Spreadsheet
-Name[sq]=Fleta elektronike
-Name[sr]=Табеле
-Name[sr@Latn]=Tabele
-Name[sv]=Kalkylblad
-Name[vi]=Spreadsheet
-Name[wa]=Tåvleu
-Name[zh_CN]=电子表格
-Name[zh_TW]=試算表
-Comment=OpenOffice.org spreadsheet
-Comment[az]=OpenOffice.org hesab cədvəli
-Comment[ca]=Full de càlcul d'OpenOffice.org
-Comment[cs]=Tabulkový kalkulátor OpenOffice.org
-Comment[da]=OpenOffice.org-regneark
-Comment[de]=OpenOffice.org Tabellenkalkulation
-Comment[es]=Hoja de cálculo de OpenOffice.org
-Comment[fr]=Tableur OpenOffice.org
-Comment[hr]=Proračunska tablica OpenOffice.org
-Comment[ms]=hamparan OpenOffice.org
-Comment[nl]=OpenOffice.org spreadsheet
-Comment[no]=OpenOffice.org regneark
-Comment[pl]=Arkusz Kalkulacyjny OpenOffice.org
-Comment[pt]=Folha de cálculo OpenOffice.org
-Comment[sq]=Fleta elektronike e OpenOffice.org
-Comment[sr]=Табеле из Отворене канцеларије
-Comment[sr@Latn]=Tabele iz Otvorene kancelarije
-Comment[sv]=OpenOffice.org-kalkylblad
-Comment[vi]=OpenOffice.org spreadsheet
-Comment[wa]=Tåvleu d' OpenOffice.org
-Comment[zh_CN]=OpenOffice.org 电子表格
-Comment[zh_TW]=OpenOffice.org 試算表
-TryExec=oocalc
-Exec=oocalc
-Icon=ximian-openoffice-calc.png
-Terminal=false
-Type=Application
-Categories=GNOME;Application;Office;Finance;X-Ximian-Main;
-X-GNOME-Bugzilla-Bugzilla=Ximian
-X-GNOME-Bugzilla-Product=OpenOffice.org Ximian Edition
-
diff --git a/app-office/openoffice-ximian/files/textdoc.desktop b/app-office/openoffice-ximian/files/textdoc.desktop
deleted file mode 100644
index bedd72528926..000000000000
--- a/app-office/openoffice-ximian/files/textdoc.desktop
+++ /dev/null
@@ -1,54 +0,0 @@
-[Desktop Entry]
-Name=Word Processor
-Name[az]=Kəlmə İşlədici
-Name[ca]=Processador de textos
-Name[cs]=Textový procesor
-Name[da]=Tekstbehandler
-Name[de]=Textverarbeitung
-Name[es]=Procesador de textos
-Name[fr]=Traitement de texte
-Name[hr]=Program za obradu teksta
-Name[ms]=Pemproses Perkataan
-Name[nl]=Tekstverwerker
-Name[no]=Tekstbehandling
-Name[pl]=Procesor tekstu
-Name[pt]=Word Processor
-Name[sq]=Procesues teksti
-Name[sr]=Обрада текста
-Name[sr@Latn]=Obrada teksta
-Name[sv]=Ordbehandlare
-Name[vi]=Word Processor
-Name[wa]=Aspougneu d' tecse
-Name[zh_CN]=文字处理工具
-Name[zh_TW]=文書處理器
-Comment=OpenOffice.org word processor
-Comment[az]=OpenOffice.org kəlmə işlədicisi
-Comment[ca]=Processador de textos d'OpenOffice.org
-Comment[cs]=Textový procesor OpenOffice.org
-Comment[da]=OpenOffice.org-tekstbehandler
-Comment[de]=OpenOffice.org Textverarbeitung
-Comment[es]=Procesador de textos de OpenOffice.org
-Comment[fr]=Traitement de texte OpenOffice.org
-Comment[hr]=OpenOffice.org program za obradu teksta
-Comment[ms]=Pemproses perkataan OpenOffice.org
-Comment[nl]=OpenOffice.org tekstverwerker
-Comment[no]=OpenOffice.org tekstbehandling
-Comment[pl]=Procesor tekstu OpenOffice.org
-Comment[pt]=Processador de texto OpenOffice.org
-Comment[sq]=Procesuesi i tekstit i OpenOffice.org
-Comment[sr]=Обрада текста из Отворене канцеларије
-Comment[sr@Latn]=Obrada teksta iz Otvorene kancelarije
-Comment[sv]=OpenOffice.org-ordbehandlare
-Comment[vi]=OpenOffice.org word processor
-Comment[wa]=Aspougneu d' tecse d' OpenOffice.org
-Comment[zh_CN]=OpenOffice.org 文字处理工具
-Comment[zh_TW]=OpenOffice.org 文書處理器
-TryExec=oowriter
-Exec=oowriter
-Icon=ximian-openoffice-writer.png
-Terminal=false
-Type=Application
-Categories=GNOME;Application;Office;X-Ximian-Main;
-X-GNOME-Bugzilla-Bugzilla=Ximian
-X-GNOME-Bugzilla-Product=OpenOffice.org Ximian Edition
-X-GNOME-Bugzilla-OtherBinaries=soffice.bin;getstyle-gnome
diff --git a/app-office/openoffice-ximian/openoffice-ximian-1.1.46.ebuild b/app-office/openoffice-ximian/openoffice-ximian-1.1.46.ebuild
deleted file mode 100644
index 65c2c427ffd5..000000000000
--- a/app-office/openoffice-ximian/openoffice-ximian-1.1.46.ebuild
+++ /dev/null
@@ -1,608 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/openoffice-ximian/openoffice-ximian-1.1.46.ebuild,v 1.8 2004/01/28 13:56:56 suka Exp $
-
-# IMPORTANT: This is extremely alpha!!!
-
-# Notes:
-#
-# This will take a HELL of a long time to compile, be warned.
-# According to openoffice.org, it takes approximately 12 hours on a
-# P3/600 with 256mb ram. And thats where building is its only task.
-#
-# It takes about 6 hours on my P4 1.8 with 512mb memory, and the
-# build only needs about 2.1GB of disk space - Azarah.
-#
-# You will also need a bucketload of diskspace ... in the order of
-# 4-5 gb free to store all the compiled files and installation
-# directories.
-#
-# The information on how to build and what is required comes from:
-# http://www.openoffice.org/dev_docs/source/build_linux.html
-# http://tools.openoffice.org/ext_comp.html
-#
-# Todo:
-#
-# Get support going for installing a custom language pack. Also
-# need to be able to install more than one language pack.
-
-inherit flag-o-matic eutils
-
-# Compile problems with these ...
-filter-flags "-funroll-loops"
-filter-flags "-fomit-frame-pointer"
-filter-flags "-fprefetch-loop-arrays"
-append-flags "-fno-strict-aliasing"
-replace-flags "-O3" "-O2"
-replace-flags "-Os" "-O2"
-
-# Enable Bytecode Interpreter for freetype ...
-append-flags "-DTT_CONFIG_OPTION_BYTECODE_INTERPRETER"
-
-inherit gcc
-# We want gcc3 if possible!!!!
-export WANT_GCC_3="yes"
-
-inherit virtualx
-
-# Set $ECPUS to amount of processes multiprocessing build should use.
-# NOTE: Setting this too high might cause dmake to segfault!!
-# Setting this to anything but "1" on my pentium4 causes things
-# to segfault :(
-[ -z "${ECPUS}" ] && export ECPUS="1"
-
-
-OO_VER=1.1.0
-XIMIAN_VER=${PV}
-PATCHLEVEL=OOO_1_1_0
-ICON_VER=OOO_1_1-6
-INSTDIR="/opt/Ximian-OpenOffice"
-PATCHDIR=${WORKDIR}/ooo-build-${XIMIAN_VER}
-ICONDIR=${WORKDIR}/ooo-icons-${ICON_VER}
-S="${WORKDIR}/oo_${OO_VER/1.1.0/1.1}_src"
-DESCRIPTION="Ximian-ized version of OpenOffice.org, a full office productivity suite."
-SRC_URI="mirror://openoffice/stable/${OO_VER}/OOo_${OO_VER}_source.tar.bz2
- http://ooo.ximian.com/packages/${PATCHLEVEL}/ooo-build-${XIMIAN_VER}.tar.gz
- http://ooo.ximian.com/packages/ooo-icons-${ICON_VER}.tar.gz"
-
-HOMEPAGE="http://ooo.ximian.com"
-
-LICENSE="LGPL-2 | SISSL-1.1"
-SLOT="0"
-KEYWORDS="~x86 ppc"
-IUSE="gnome kde"
-
-RDEPEND=">=sys-libs/glibc-2.1
- !=sys-libs/glibc-2.3.1*
- >=dev-lang/perl-5.0
- >=x11-libs/gtk+-2.0
- >=gnome-base/libgnome-2.2
- >=gnome-base/gnome-vfs-2.0
- >=net-print/libgnomecups-0.1.4
- >=net-print/gnome-cups-manager-0.16
- >=dev-libs/libxml2-2.0
- >=media-libs/libart_lgpl-2.3.13
- >=x11-libs/startup-notification-0.5
- media-fonts/ttf-bitstream-vera
- media-libs/fontconfig
- media-gfx/imagemagick
- media-libs/libpng
- sys-devel/flex
- sys-devel/bison
- virtual/x11
- app-arch/zip
- app-arch/unzip
- dev-libs/expat
- virtual/lpr
- ppc? ( >=sys-libs/glibc-2.2.5-r7
- >=sys-devel/gcc-3.2.1 )"
-
-DEPEND="${RDEPEND}
- app-shells/tcsh
- !app-office/openoffice-bin
- !app-office/openoffice
- >=sys-apps/findutils-4.1.20-r1
- dev-libs/libxslt
- !dev-util/dmake"
-
-pkg_setup() {
-
- ewarn "****************************************************************"
- ewarn " It is important to note that OpenOffice.org is a very fragile "
- ewarn " build when it comes to CFLAGS. A number of flags have already "
- ewarn " been filtered out. If you experience difficulty merging this "
- ewarn " package and use agressive CFLAGS, lower the CFLAGS and try to "
- ewarn " merge again. "
- ewarn "****************************************************************"
-
- set_languages
-
-}
-
-
-set_languages () {
-
- if [ -z "$LANGUAGE" ]; then
- LANGUAGE=01
- fi
-
- case "$LANGUAGE" in
- 01 | ENUS ) LANGNO=01; LANGNAME=ENUS; LFULLNAME="US English (default)"
- ;;
- 03 | PORT ) LANGNO=03; LANGNAME=PORT; LFULLNAME=Portuguese
- ;;
- 07 | RUSS ) LANGNO=07; LANGNAME=RUSS; LFULLNAME=Russian
- ;;
- 30 | GREEK ) LANGNO=30; LANGNAME=GREEK; LFULLNAME=Greek
- ;;
- 31 | DTCH ) LANGNO=31; LANGNAME=DTCH; LFULLNAME=Dutch
- ;;
- 33 | FREN ) LANGNO=33; LANGNAME=FREN; LFULLNAME=French
- ;;
- 34 | SPAN ) LANGNO=34; LANGNAME=SPAN; LFULLNAME=Spanish
- ;;
- 35 | FINN ) LANGNO=35; LANGNAME=FINN; LFULLNAME=Finnish
- ;;
- 37 | CAT ) LANGNO=37; LANGNAME=CAT; LFULLNAME=Catalan
- ;;
- 39 | ITAL ) LANGNO=39; LANGNAME=ITAL; LFULLNAME=Italian
- ;;
- 42 | CZECH ) LANGNO=42; LANGNAME=CZECH; LFULLNAME=Czech
- ;;
- 43 | SLOVAK ) LANGNO=43; LANGNAME=SLOVAK; LFULLNAME=Slovak
- ;;
- 45 | DAN ) LANGNO=45; LANGNAME=DAN; LFULLNAME=Danish
- ;;
- 46 | SWED ) LANGNO=46; LANGNAME=SWED; LFULLNAME=Swedish
- ;;
- 48 | POL ) LANGNO=48; LANGNAME=POL; LFULLNAME=Polish
- ;;
- 49 | GER ) LANGNO=49; LANGNAME=GER; LFULLNAME=German
- ;;
- 55 | PORTBR ) LANGNO=55; LANGNAME=PORTBR; LFULLNAME="Portuguese brazilian"
- ;;
- 66 | THAI ) LANGNO=66; LANGNAME=THAI; LFULLNAME=Thai
- ;;
- 77 | ESTONIAN ) LANGNO=77; LANGNAME=ESTONIAN; LFULLNAME=Estonian
- ;;
- 81 | JAPN ) LANGNO=81; LANGNAME=JAPN; LFULLNAME="Japanese"
- ;;
- 82 | KOREAN ) LANGNO=82; LANGNAME=KOREAN; LFULLNAME=Korean
- ;;
- 86 | CHINSIM ) LANGNO=86; LANGNAME=CHINSIM; LFULLNAME="Simplified Chinese (PRC)"
- ;;
- 88 | CHINTRAD ) LANGNO=88; LANGNAME=CHINTRAD; LFULLNAME="Traditional Chinese (taiwan)"
- ;;
- 90 | TURK ) LANGNO=90; LANGNAME=TURK; LFULLNAME=Turkish
- ;;
- 91 | HINDI ) LANGNO=91; LANGNAME=HINDI; LFULLNAME=Hindi
- ;;
- 96 | ARAB ) LANGNO=96; LANGNAME=ARAB; LFULLNAME=Arabic
- ;;
- 97 | HEBREW ) LANGNO=97; LANGNAME=HEBREW; LFULLNAME=Hebrew
- ;;
- * )
- eerror "Unknown LANGUAGE setting!"
- eerror
- eerror "Known LANGUAGE settings are:"
- eerror " ENUS | PORT | RUSS | GREEK | DTCH | FREN | SPAN | FINN | CAT | ITAL |"
- eerror " CZECH | SLOVAK | DAN | SWED | POL | GER | PORTBR | THAI | ESTONIAN |"
- eerror " JAPN | KOREAN | CHINSIM | CHINTRAD | TURK | HINDI | ARAB | HEBREW"
- die
- ;;
- esac
-}
-
-oo_setup() {
-
- unset LANGUAGE
- unset LANG
-
- export NEW_GCC="0"
-
- if [ -x /usr/sbin/gcc-config ]
- then
- # Do we have a gcc that use the new layout and gcc-config ?
- if /usr/sbin/gcc-config --get-current-profile &> /dev/null
- then
- export NEW_GCC="1"
- export GCC_PROFILE="$(/usr/sbin/gcc-config --get-current-profile)"
-
- # Just recheck gcc version ...
- if [ "$(gcc-version)" != 3.2 -a "$(gcc-version)" != "3.3" ]
- then
- # See if we can get a gcc profile we know is proper ...
- if /usr/sbin/gcc-config --get-bin-path ${CHOST}-3.2.1 &> /dev/null
- then
- export PATH="$(/usr/sbin/gcc-config --get-bin-path ${CHOST}-3.2.1):${PATH}"
- export GCC_PROFILE="${CHOST}-3.2.1"
- else
- eerror "This build needs gcc-3.2.1 or later!"
- eerror
- eerror "Use gcc-config to change your gcc profile:"
- eerror
- eerror " # gcc-config $CHOST-3.2.1"
- eerror
- eerror "or whatever gcc version is relevant."
- die
- fi
- fi
- fi
- fi
-
-}
-
-src_unpack() {
-
- oo_setup
-
- cd ${WORKDIR}
- unpack OOo_${OO_VER}_source.tar.bz2 ooo-build-${XIMIAN_VER}.tar.gz ooo-icons-${ICON_VER}.tar.gz
-
- #Still needed: The STLport patch
- cd ${S}
- rm stlport/STLport-4.5.3.patch
- epatch ${FILESDIR}/${OO_VER}/newstlportfix.patch
-
- #Fix compilation with gcc 3.2.x
- epatch ${FILESDIR}/${OO_VER}/config.patch
-
- #Fix nptl compile issues
- epatch ${FILESDIR}/${OO_VER}/nptl.patch
-
- #Additional patch for Kernel 2.6
- epatch ${FILESDIR}/${OO_VER}/openoffice-1.1.0-linux-2.6-fix.patch
-
- if [ ${ARCH} = "sparc" ]; then
- epatch ${FILESDIR}/${OO_VER}/openoffice-1.1.0-sparc64-fix.patch
- fi
-
- einfo "Applying Ximian OO.org Patches"
- ${PATCHDIR}/patches/apply.pl ${PATCHDIR}/patches/${PATCHLEVEL} ${S} -f --distro=Ximian || die "Ximian patches failed"
-
- einfo "Installing / Scaling Icons"
- ${PATCHDIR}/bin/scale-icons ${S}
- cp -avf ${ICONDIR}/* ${S}
-
- if [ "$(gcc-version)" == "3.2" ]; then
- einfo "You use a buggy gcc, so replacing -march=pentium4 with -march=pentium3"
- replace-flags "-march=pentium4" "-march=pentium3 -mcpu=pentium4"
- fi
-
- # Now for our optimization flags ...
- perl -pi -e "s|^CFLAGSOPT=.*|CFLAGSOPT=${CFLAGS}|g" \
- ${S}/solenv/inc/unxlngi3.mk
- perl -pi -e "s|^CFLAGSOPT=.*|CFLAGSOPT=${CFLAGS}|g" \
- ${S}/solenv/inc/unxlngi4.mk
-
- # Some makefiles are not multiprocess ready (Mandrake)
- cd ${S}; einfo "Fixing makefiles for multiprocess builds..."
- for x in io/source/stm dtrans/source/X11 idlc/source nas zlib toolkit/util \
- comphelper/util padmin/source svtools/util bridges/source/prot_uno \
- framework/util framework/source/unotypes
- do
- perl -pi -e "s/^(PRJNAME)/MAXPROCESS=1\n\1/" ${x}/makefile.mk
- done
-
- #Do our own branding by setting gentoo linux as the vendor
- sed -i -e "s,\(//\)\(.*\)\(my company\),\2Gentoo Linux," ${S}/offmgr/source/offapp/intro/ooo.src
-}
-
-get_EnvSet() {
-
- # Determine what Env file we should be using (Az)
- export LinuxEnvSet="LinuxIntelEnv.Set.sh"
- use sparc && export LinuxEnvSet="LinuxSparcEnv.Set.sh"
- use sparc64 && export LinuxEnvSet="LinuxSparcEnv.Set.sh"
- use ppc && export LinuxEnvSet="LinuxPPCEnv.Set.sh"
- use alpha && export LinuxEnvSet="LinuxAlphaEnv.Set.sh"
-
- # Get build specific stuff (Az)
- export SOLVER="$(awk '/^UPD=/ {gsub(/\"/, ""); gsub(/UPD=/, ""); print $0}' ${LinuxEnvSet})"
- export SOLPATH="$(awk '/^INPATH=/ {gsub(/\"/, ""); gsub(/INPATH=/, ""); print $0}' ${LinuxEnvSet})"
-
-}
-
-src_compile() {
-
- addpredict /bin
- addpredict /root/.gconfd
- local buildcmd=""
-
- set_languages
-
- oo_setup
-
- # Setup default compilers (We overide gcc2 if that is default here)
- export CC="$(gcc-getCC)"
- export CXX="$(gcc-getCXX)"
-
- # Enable ccache for this build (Az)
- if [ "${FEATURES/-ccache/}" = "${FEATURES}" -a \
- "${FEATURES/ccache/}" != "${FEATURES}" -a \
- -d /usr/bin/ccache -a -x /usr/bin/ccache/ccache ]
- then
- # Build uses its own env with $PATH, etc, so
- # we take the easy way out. (Az)
- export CC="/usr/bin/ccache/ccache ${CC}"
- export CXX="/usr/bin/ccache/ccache ${CXX}"
-
- # Enable new ccache for this build
- elif [ "${FEATURES/-ccache/}" = "${FEATURES}" -a \
- "${FEATURES/ccache/}" != "${FEATURES}" -a \
- -x /usr/bin/ccache -a ! -d /usr/bin/ccache ]
- then
- einfo "We're using ccache for this build..."
- # Build uses its own env with $PATH, etc, so
- # we take the easy way out. (Az)
- export CC="/usr/bin/ccache ${CC}"
- export CXX="/usr/bin/ccache ${CXX}"
- fi
-
- # Enable distcc for this build (Az)
- if [ "${FEATURES/-distcc/}" = "${FEATURES}" -a \
- "${FEATURES/distcc/}" != "${FEATURES}" -a \
- -x /usr/bin/distcc ]
- then
- einfo "We're using distcc for this build..."
- # Do not bump ECPUS if the user did not touch it, as currently
- # it -PP do not work properly (segfaulting). (Az)
- [ "$(echo ${DISTCC_HOSTS} | wc -w)" -gt 1 -a "${ECPUS}" -qt 1 ] && \
- export ECPUS="$(echo ${DISTCC_HOSTS} | wc -w)"
-
- export CC="distcc ${CC}"
- export CXX="distcc ${CXX}"
- fi
-
- # dmake security patch
- cd ${S}/dmake
- autoconf || die
-
- # Do NOT compile with a external STLport, as gcc-2.95.3 users will
- # get linker errors due to the ABI being different (STLport will be
- # compiled with 2.95.3, while OO is compiled with 3.x). (Az)
- einfo "Configuring OpenOffice.org with language support for ${LFULLNAME}..."
- cd ${S}/config_office
- rm -f config.cache
- autoconf
- ./configure \
- --enable-libart \
- --enable-libsn \
- --enable-crashdump=no \
- --with-lang=ENUS,${LANGNAME} \
- --without-fonts \
- --disable-rpath \
- --disable-java \
- --enable-fontconfig \
- --with-system-zlib || die
-
- cd ${S}
- get_EnvSet
-
- # Build as minimal as possible
- export BUILD_MINIMAL="${LANGNO}"
-
- # Do not include /usr/include in header search path, and
- # same thing for internal gcc include dir, as gcc3 handles
- # it correctly by default! (Az)
- perl -pi -e "s| -I/usr/include||g" ${LinuxEnvSet}
-# perl -pi -e "s| -I$(gcc-libpath)/include||g" ${LinuxEnvSet}
-
- if [ "${NEW_GCC}" -eq "1" ]
- then
- local gcc_path="$(/usr/sbin/gcc-config --get-bin-path ${GCC_PROFILE})"
-
- # Setup path for new gcc layout in $LinuxEnvSet, else the build
- # environment will not find gcc ... (Az)
- perl -pi -e "s|PATH \.:\$SOLARVER|PATH \.:${gcc_path}:\$SOLARVER|" ${LinuxEnvSet}
- # New builds start quoting stuff ...
- perl -pi -e "s|PATH \"\.:\$SOLARVER|PATH \"\.:${gcc_path}:\$SOLARVER|" ${LinuxEnvSet}
- fi
-
- # Should the build use multiprocessing?
- if [ "${ECPUS}" -gt 1 ]
- then
- buildcmd="${S}/solenv/bin/build.pl --all -P ${ECPUS} product=full --dlv_switch link"
- else
- buildcmd="${S}/solenv/bin/build.pl --all product=full --dlv_switch link"
- fi
-
- if [ -z "$(grep 'CCCOMP' ${S}/${LinuxEnvSet})" ]
- then
- # Set CCCOMP and CXXCOMP. This is still needed for STLport
- export CCCOMP=${CC}
- export CXXCOMP=${CXX}
- fi
-
- if [ "$(gcc-major-version)" -eq 3 ]
- then
- mkdir -p ${S}/solver/${SOLVER}/${SOLPATH}/{lib,inc}
-
- einfo "Installing GCC related libs..."
- # Workaround for missing libs with GCC3 (thanks to Debian) (Az)
- cd ${S}/solver/${SOLVER}/${SOLPATH}/lib
- cp $(gcc-libpath)/libstdc++.so.$(gcc-libstdcxx-major-version)* . || \
- die "Could not copy gcc-libs!"
- cp $(gcc-libpath)/libgcc_s.so* . || die "Could not copy gcc-libs!"
- cd ${S}
- fi
-
- einfo "Bootstrapping OpenOffice.org..."
- # Get things ready for bootstrap (Az)
- chmod 0755 ${S}/solenv/bin/*.pl
- mkdir -p ${S}/solver/${SOLVER}/${SOLPATH}/inc
- touch ${S}/solver/${SOLVER}/${SOLPATH}/inc/minormkchanged.flg
- # Bootstrap ...
- ./bootstrap
-
- if [ "$(gcc-major-version)" -eq 3 ]
- then
- local LIBFILE="$(readlink `gcc-libpath`/libstdc++.so.`gcc-libstdcxx-major-version`)"
- local LIBVERSION="$(echo ${LIBFILE} | sed -e 's|libstdc++\.so\.||g')"
- # Get this beast to use the right version of libstdc++ ... (Az)
- echo "LIBSTDCPP3:=${LIBVERSION}" >> \
- ${S}/solver/${SOLVER}/${SOLPATH}/inc/comp_ver.mk
- cd ${S}
- fi
-
- einfo "Building OpenOffice.org..."
- # Setup virtualmake
- export maketype="sh"
- echo "source ${S}/${LinuxEnvSet} && cd ${S}/instsetoo && ${buildcmd}" > build.sh
- # Build needs X to compile! (Az)
- virtualmake build.sh || die "Build failed!"
-
-# einfo "Building Language Pack"
- # Setup virtualmake
-# export maketype="sh"
-# echo "source ${S}/${LinuxEnvSet} && cd ${S}/instsetoo && ${buildcmd} --from instsetoo -- instsetext=${LANGNO}" > buildlang.sh
- # Build needs X to compile! (Az)
-# virtualmake buildlang.sh || die "Build failed!"
-
- [ -d ${S}/instsetoo/${SOLPATH} ] || die "Cannot find build directory!"
-}
-
-src_install() {
-
- # Sandbox issues; bug #11838
- addpredict "/user"
- addpredict "/share"
- addpredict "/dev/dri"
- addpredict "/usr/bin/soffice"
- addpredict "/pspfontcache"
-
- # This allows us to change languages without editing the ebuild.
- #
- # languages1="ENUS,FREN,GERM,SPAN,ITAL,DTCH,PORT,SWED,POL,RUSS"
- # languages2="DAN,GREEK,TURK,CHINSIM,CHINTRAD,JAPN,KOREAN,CZECH,CAT"
- #
- # Supported languages for localized help files
- #
- # helplangs="ENUS,FREN,GERM,SPAN,ITAL,SWED"
- #
- set_languages
-
- get_EnvSet
-
- # The install part should now be relatively OK compared to
- # what it was. Basically we use autoresponse files to install
- # unattended, running under a Xvfb if needed. Afterwards we
- # just cleanout ${D} from the registry, etc. This way we
- # do not need pre-generated registry, and also fixes some weird
- # bugs related to the old way we did things.
- #
- # <azarah@gentoo.org> (9 Sep 2002)
-
- # Autoresponse file for main installation
- cat > ${T}/rsfile-global <<-"END_RS"
- [ENVIRONMENT]
- INSTALLATIONMODE=INSTALL_NETWORK
- INSTALLATIONTYPE=STANDARD
- DESTINATIONPATH=<destdir>
- OUTERPATH=
- LOGFILE=
- LANGUAGELIST=<LANGUAGE>
-
- [JAVA]
- JavaSupport=preinstalled_or_none
- END_RS
-
- # Autoresponse file for user installation
- cat > ${T}/rsfile-local <<-"END_RS"
- [ENVIRONMENT]
- INSTALLATIONMODE=INSTALL_WORKSTATION
- INSTALLATIONTYPE=WORKSTATION
- DESTINATIONPATH=<home>/.openoffice/<pv>
-
- [JAVA]
- JavaSupport=none
- END_RS
-
- # Fixing install location in response file
- sed -e "s|<destdir>|${D}${INSTDIR}|" \
- ${T}/rsfile-global > ${T}/autoresponse
-
- einfo "Installing OpenOffice.org into build root..."
- dodir ${INSTDIR}
- cd ${S}/instsetoo/${SOLPATH}/${LANGNO}/normal
- # Setup virtualmake
- export maketype="./setup"
- # We need X to install...
- virtualmake "-v -noexit -r:${T}/autoresponse"
-
- echo
- einfo "Removing build root from registry..."
- # Remove totally useless stuff.
- rm -f ${D}${INSTDIR}/program/{setup.log,sopatchlevel.sh}
- # Remove build root from registry and co
- egrep -rl "${D}" ${D}${INSTDIR}/* | \
- xargs -i perl -pi -e "s|${D}||g" {} || :
-
- einfo "Fixing permissions..."
- # Fix permissions
- find ${D}${INSTDIR}/ -type f -exec chmod a+r {} \;
- chmod a+x ${D}${INSTDIR}/share/config/webcast/*.pl
-
- # Fix symlinks
- dosym program/setup ${INSTDIR}/setup
-
- # Install user autoresponse file
- insinto /etc/openoffice
- sed -e "s|<pv>|${OO_VER}|g" ${T}/rsfile-local > ${T}/autoresponse-${OO_VER}.conf
- doins ${T}/autoresponse-${OO_VER}.conf
-
- # Install wrapper script
- exeinto /usr/bin
- sed -e "s|<pv>|${OO_VER}|g" \
- ${FILESDIR}/${OO_VER}/ooffice-wrapper-1.3 > ${T}/ooffice
- doexe ${T}/ooffice
-
- # Component symlinks
- for app in calc draw impress html math writer setup; do
- dosym ooffice /usr/bin/oo${app}
- done
-
- # Install ximian icons
- cd ${PATCHDIR}/desktop/
- insinto /usr/share/pixmaps
- doins *.png
-
- einfo "Installing Menu shortcuts (need \"gnome\" or \"kde\" in USE)..."
- if [ -n "`use gnome`" ]
- then
- insinto /usr/share/applications
- doins ${FILESDIR}/*.desktop
- fi
-
- if [ -n "`use kde`" ]
- then
- insinto /usr/share/applnk/Office
- doins ${FILESDIR}/*.desktop
- fi
-
- # Install corrected Symbol Font
- insinto /usr/X11R6/lib/X11/fonts/truetype/
- doins ${PATCHDIR}/fonts/*.ttf
-
- # Remove unneeded stuff
- rm -rf ${D}${INSTDIR}/share/cde
-
- # Make sure these do not get nuked.
- keepdir ${INSTDIR}/user/registry/res/en-us/org/openoffice/{Office,ucb}
- keepdir ${INSTDIR}/user/psprint/{driver,fontmetric}
- keepdir ${INSTDIR}/user/{autocorr,backup,plugin,store,temp,template}
-}
-
-pkg_postinst() {
-
- einfo "******************************************************************"
- einfo " To start OpenOffice.org, run:"
- einfo
- einfo " $ ooffice"
- einfo
- einfo " Also, for individual components, you can use any of:"
- einfo
- einfo " oocalc, oodraw, ooimpress, oomath, ooweb or oowriter"
- einfo
- einfo "******************************************************************"
-}