diff options
author | Andreas Proschofsky <suka@gentoo.org> | 2005-10-29 22:20:37 +0000 |
---|---|---|
committer | Andreas Proschofsky <suka@gentoo.org> | 2005-10-29 22:20:37 +0000 |
commit | 1ea8eed0e9bef0144707599670f598f54fe8d23c (patch) | |
tree | 25ffcb2d07f7a135e500f686477df895572950d6 /app-office/ooqstart-gnome/files | |
parent | Old-style PHP update, fixes a couple of bugs. (diff) | |
download | gentoo-2-1ea8eed0e9bef0144707599670f598f54fe8d23c.tar.gz gentoo-2-1ea8eed0e9bef0144707599670f598f54fe8d23c.tar.bz2 gentoo-2-1ea8eed0e9bef0144707599670f598f54fe8d23c.zip |
update for openoffice 2.0
(Portage version: 2.0.53_rc6)
Diffstat (limited to 'app-office/ooqstart-gnome/files')
-rw-r--r-- | app-office/ooqstart-gnome/files/digest-ooqstart-gnome-0.8.3-r1 | 1 | ||||
-rw-r--r-- | app-office/ooqstart-gnome/files/gnome2update-2.0.patch.bz2 | bin | 0 -> 8007 bytes | |||
-rw-r--r-- | app-office/ooqstart-gnome/files/ooqstart-gnome-0.8.3-optflags.diff | 24 | ||||
-rw-r--r-- | app-office/ooqstart-gnome/files/ooqstart-gnome-0.8.3-options-2.0.diff | 24 |
4 files changed, 49 insertions, 0 deletions
diff --git a/app-office/ooqstart-gnome/files/digest-ooqstart-gnome-0.8.3-r1 b/app-office/ooqstart-gnome/files/digest-ooqstart-gnome-0.8.3-r1 new file mode 100644 index 000000000000..e67ad0f13bcd --- /dev/null +++ b/app-office/ooqstart-gnome/files/digest-ooqstart-gnome-0.8.3-r1 @@ -0,0 +1 @@ +MD5 f3c15a29e8bbd7780972e69f11f564a4 ooqstart-0.8.3.tgz 72272 diff --git a/app-office/ooqstart-gnome/files/gnome2update-2.0.patch.bz2 b/app-office/ooqstart-gnome/files/gnome2update-2.0.patch.bz2 Binary files differnew file mode 100644 index 000000000000..d44d5559ce99 --- /dev/null +++ b/app-office/ooqstart-gnome/files/gnome2update-2.0.patch.bz2 diff --git a/app-office/ooqstart-gnome/files/ooqstart-gnome-0.8.3-optflags.diff b/app-office/ooqstart-gnome/files/ooqstart-gnome-0.8.3-optflags.diff new file mode 100644 index 000000000000..e0b693bf6acb --- /dev/null +++ b/app-office/ooqstart-gnome/files/ooqstart-gnome-0.8.3-optflags.diff @@ -0,0 +1,24 @@ +--- Makefile.xx 2005-02-06 20:51:51.407074108 +0100 ++++ Makefile 2005-02-06 20:52:14.797707000 +0100 +@@ -47,16 +47,17 @@ + ##################################################################### + # COMPILATION RULES + ##################################################################### +-CFLAGS=-g -DVERSION='"$(VERSION)"' -Wall -Werror -I. ++OPTFLAGS=-O2 ++CFLAGS=-g $(OPTFLAGS) -DVERSION='"$(VERSION)"' -Wall -Werror -I. + + console.o : console/console.cxx +- $(CXX) $(CFLAGS) -O2 -o $@ -c $< ++ $(CXX) $(CFLAGS) -o $@ -c $< + + gnome.o : gnome/gnome.cxx +- $(CXX) $(CFLAGS) `pkg-config --cflags libpanelapplet-2.0` -O2 -o $@ -c $< ++ $(CXX) $(CFLAGS) `pkg-config --cflags libpanelapplet-2.0` -o $@ -c $< + + %.o : %.cxx +- $(CXX) $(CFLAGS) -O2 -o $@ -c $< ++ $(CXX) $(CFLAGS) -o $@ -c $< + + + ##################################################################### diff --git a/app-office/ooqstart-gnome/files/ooqstart-gnome-0.8.3-options-2.0.diff b/app-office/ooqstart-gnome/files/ooqstart-gnome-0.8.3-options-2.0.diff new file mode 100644 index 000000000000..8883d52d8817 --- /dev/null +++ b/app-office/ooqstart-gnome/files/ooqstart-gnome-0.8.3-options-2.0.diff @@ -0,0 +1,24 @@ +Index: model.cxx +=================================================================== +--- model.cxx.orig ++++ model.cxx +@@ -24,8 +24,8 @@ static const char *SCALC = "private:f + static const char *SDRAW = "private:factory/sdraw"; + static const char *SIMPRESS = "private:factory/simpress"; + +-static const char *PLUGIN = "-plugin"; +-static const char *QSTART = "-quickstart"; ++static const char *NOLOGO = "-nologo"; ++static const char *NODEFAULT = "-nodefault"; + + + /*========================================================================= +@@ -160,7 +160,7 @@ void Model::process () { + // accidentally terminated. + if (_enabled) { + if (!running && _soffice != 0) { +- _daemonPID = startProcess(BIN_SH, _soffice, PLUGIN, QSTART); ++ _daemonPID = startProcess(BIN_SH, _soffice, NOLOGO, NODEFAULT); + _status = MODEL_OFFICE_STARTING; + _tick = time(0); + } |