diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-03-14 12:54:12 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-14 17:30:31 -0500 |
commit | 02bd218a6c33daea937ae80803f467f76bb5d9dd (patch) | |
tree | 53bbb0df543cc9925696f9534aa4b650f9bd337b /office/go_openoffice/patches | |
parent | e4d4e467c092100907b51ba0ed7367349a2bdeec (diff) |
office/go_openoffice: Removed (superceded by libreoffice)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'office/go_openoffice/patches')
3 files changed, 0 insertions, 154 deletions
diff --git a/office/go_openoffice/patches/Slackware.conf.in b/office/go_openoffice/patches/Slackware.conf.in deleted file mode 100644 index 46c1537bd4..0000000000 --- a/office/go_openoffice/patches/Slackware.conf.in +++ /dev/null @@ -1,56 +0,0 @@ ---with-vendor=\"Slackware\" ---prefix=/usr ---mandir=/usr/man ---sysconfdir=/etc ---without-binsuffix ---localstatedir=/var/lib ---with-ant-home=/usr/share/apache-ant ---with-extension-integration ---with-java ---with-x ---disable-odk ---disable-pam ---disable-pam-link ---disable-mono ---disable-kde ---disable-post-install-scripts ---disable-rpath ---enable-bonobo ---enable-libart ---enable-libsn ---enable-opengl ---enable-openldap ---enable-openxml ---enable-cups ---enable-fontconfig ---enable-dbus ---enable-access ---enable-cairo ---enable-kde4 ---enable-gtk ---enable-systray ---enable-presenter-console ---enable-pdfimport ---enable-minimizer ---enable-split-app-modules ---enable-split-opt-features ---with-system-sane-header ---with-system-libpwd ---with-system-python ---with-system-expat ---with-system-freetype ---with-system-jpeg ---with-system-curl ---with-system-redland ---with-system-poppler ---with-system-libwpd ---with-system-cairo ---with-system-neon ---with-system-icu ---with-system-boost ---with-system-mozilla=mozilla ---with-system-libsvg ---with-system-sndfile ---with-gcc-speedup=ccache ---with-system-db ---with-drink=ale diff --git a/office/go_openoffice/patches/calc-perf-speedup-pagebreak-update.patch b/office/go_openoffice/patches/calc-perf-speedup-pagebreak-update.patch deleted file mode 100644 index f97bd3523e..0000000000 --- a/office/go_openoffice/patches/calc-perf-speedup-pagebreak-update.patch +++ /dev/null @@ -1,88 +0,0 @@ -From 7ec7a07f6ef1e4cbc27f51a5b54edf4442125b29 Mon Sep 17 00:00:00 2001 -From: Petr Mladek <pmladek@walk.suse.cz> -Date: Fri, 18 Jun 2010 17:44:23 +0000 -Subject: Fix calc-perf-speedup-pagebreak-update.diff to apply with patch-2.5.4 - -* patches/dev300/calc-perf-speedup-pagebreak-update.diff: add context to help - patch-2.5.4 to apply the hunks correctly; thanks Sandor Geller <wildy at - muhelybt dot hu ---- -diff --git a/patches/dev300/calc-perf-speedup-pagebreak-update.diff b/patches/dev300/calc-perf-speedup-pagebreak-update.diff -index ba4b938..0856eae 100644 ---- a/patches/dev300/calc-perf-speedup-pagebreak-update.diff -+++ b/patches/dev300/calc-perf-speedup-pagebreak-update.diff -@@ -574,7 +574,19 @@ index 789de6d..56c7f49 100644 - } - } - --@@ -2519,7 +2558,7 @@ void ScTable::DBShowRows(SCROW nRow1, SCROW nRow2, BOOL bShow) -+@@ -2516,31 +2516,31 @@ void ScTable::DBShowRows(SCROW nRow1, SC -+ { -+ SCROW nStartRow = nRow1; -+ while (nStartRow <= nRow2) -+ { -+ SCROW nEndRow = -1; -+ bool bWasVis = !RowHidden(nStartRow, nEndRow); -+ if (nEndRow > nRow2) -+ nEndRow = nRow2; -+ -+ BOOL bChanged = ( bWasVis != bShow ); -+ if ( bChanged ) -+ { - ScDrawLayer* pDrawLayer = pDocument->GetDrawLayer(); - if (pDrawLayer) - { -@@ -583,7 +595,31 @@ index 789de6d..56c7f49 100644 - if (bShow) - pDrawLayer->HeightChanged( nTab, nStartRow, nHeight ); - else --@@ -2569,7 +2608,7 @@ void ScTable::ShowRows(SCROW nRow1, SCROW nRow2, BOOL bShow) -+ pDrawLayer->HeightChanged( nTab, nStartRow, -nHeight ); -+ } -+ } -+ -+ SetRowHidden(nStartRow, nEndRow, !bShow); -+ SetRowFiltered(nStartRow, nEndRow, !bShow); -+ -+ if ( bChanged ) -+ { -+ ScChartListenerCollection* pCharts = pDocument->GetChartListenerCollection(); -+ if ( pCharts ) -+ pCharts->SetRangeDirty(ScRange( 0, nStartRow, nTab, MAXCOL, nEndRow, nTab )); -+@@ -2563,31 +2563,31 @@ void ScTable::ShowRows(SCROW nRow1, SCRO -+ IncRecalcLevel(); -+ InitializeNoteCaptions(); -+ while (nStartRow <= nRow2) -+ { -+ SCROW nEndRow = -1; -+ bool bWasVis = !RowHidden(nStartRow, nEndRow); -+ if (nEndRow > nRow2) -+ nEndRow = nRow2; -+ -+ BOOL bChanged = ( bWasVis != bShow ); -+ if ( bChanged ) -+ { - ScDrawLayer* pDrawLayer = pDocument->GetDrawLayer(); - if (pDrawLayer) - { -@@ -592,6 +628,18 @@ index 789de6d..56c7f49 100644 - if (bShow) - pDrawLayer->HeightChanged( nTab, nStartRow, nHeight ); - else -+ pDrawLayer->HeightChanged( nTab, nStartRow, -nHeight ); -+ } -+ } -+ -+ SetRowHidden(nStartRow, nEndRow, !bShow); -+ if (bShow) -+ SetRowFiltered(nStartRow, nEndRow, false); -+ -+ if ( bChanged ) -+ { -+ ScChartListenerCollection* pCharts = pDocument->GetChartListenerCollection(); -+ if ( pCharts ) - @@ -2681,7 +2720,10 @@ SCROW ScTable::GetLastChangedRow() const - if (!ValidRow(nLastFlags)) - nLastFlags = 0; --- -cgit v0.8.3-6-g21f6 diff --git a/office/go_openoffice/patches/qt-use-native-backend.diff b/office/go_openoffice/patches/qt-use-native-backend.diff deleted file mode 100644 index 3834970262..0000000000 --- a/office/go_openoffice/patches/qt-use-native-backend.diff +++ /dev/null @@ -1,10 +0,0 @@ -*** vcl/unx/kde4/KDEXLib.cxx_ 2010-02-21 22:34:18.917502324 +0200 ---- vcl/unx/kde4/KDEXLib.cxx 2010-02-21 22:35:29.642770570 +0200 -*************** -*** 134,137 **** ---- 134,138 ---- - KCmdLineArgs::init( m_nFakeCmdLineArgs, m_pAppCmdLineArgs, kAboutData ); - -+ KApplication::setGraphicsSystem( "native" ); - m_pApplication = new VCLKDEApplication(); - kapp->disableSessionManagement(); |