summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Proschofsky <suka@gentoo.org>2007-03-07 06:14:33 +0000
committerAndreas Proschofsky <suka@gentoo.org>2007-03-07 06:14:33 +0000
commit00a925457d6fec4e8753aaa9ea18b8ffd227f971 (patch)
treeb7dc7f56a7d41eb1456de838188815bc997b1a98 /app-office
parentApply patch from upstream to fix bug #163782. Removed obsolete ebuilds. (diff)
downloadgentoo-2-00a925457d6fec4e8753aaa9ea18b8ffd227f971.tar.gz
gentoo-2-00a925457d6fec4e8753aaa9ea18b8ffd227f971.tar.bz2
gentoo-2-00a925457d6fec4e8753aaa9ea18b8ffd227f971.zip
Add missing patch, oops.
(Portage version: 2.1.2.1)
Diffstat (limited to 'app-office')
-rw-r--r--app-office/openoffice/ChangeLog6
-rw-r--r--app-office/openoffice/files/2.1.0/detect-db4.5.diff20
2 files changed, 25 insertions, 1 deletions
diff --git a/app-office/openoffice/ChangeLog b/app-office/openoffice/ChangeLog
index 14f79d709cde..4814ec04a86c 100644
--- a/app-office/openoffice/ChangeLog
+++ b/app-office/openoffice/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-office/openoffice
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/openoffice/ChangeLog,v 1.304 2007/03/06 19:04:22 suka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/openoffice/ChangeLog,v 1.305 2007/03/07 06:14:33 suka Exp $
+
+ 07 Mar 2007; Andreas Proschofsky <suka@gentoo.org>
+ +files/2.1.0/detect-db4.5.diff:
+ Add missing patch, oops.
06 Mar 2007; Andreas Proschofsky <suka@gentoo.org>
files/2.1.0/wrapper-readd.diff, files/2.1.0/gentoo-2.1.0.diff,
diff --git a/app-office/openoffice/files/2.1.0/detect-db4.5.diff b/app-office/openoffice/files/2.1.0/detect-db4.5.diff
new file mode 100644
index 000000000000..0a708e9c2ce8
--- /dev/null
+++ b/app-office/openoffice/files/2.1.0/detect-db4.5.diff
@@ -0,0 +1,20 @@
+--- patches/src680.orig/system-db-check.diff 2007-02-08 14:18:23.000000000 +0100
++++ patches/src680/system-db-check.diff 2007-03-06 10:56:17.754647295 +0100
+@@ -12,7 +12,7 @@
+ - [ AC_MSG_ERROR(no. install the db4 libraries) ], []+ )
+ - ], []
+ - )
+-+ for dbver in -4.4 4.4 -4.3 4.3 -4.2 4.2 -4.1 4.1 -4 4 ''; do
+++ for dbver in -4.5 4.5 -4.4 4.4 -4.3 4.3 -4.2 4.2 -4.1 4.1 -4 4 ''; do
+ + AC_CHECK_HEADER(db$dbver/db.h, [ DB_INCLUDES="/usr/include/db$dbver"; break ])
+ + done
+ + if test "$DB_INCLUDES" = ""; then
+@@ -31,7 +31,7 @@
+ - AC_HAVE_LIBRARY(db, [],
+ - [AC_MSG_ERROR([db not installed or functional])], [])
+ + save_LIBS="$LIBS"
+-+ for dbver in -4.4 4.4 -4.3 4.3 -4.2 4.2 -4.1 4.1 -4 4 ''; do
+++ for dbver in -4.5 4.5 -4.4 4.4 -4.3 4.3 -4.2 4.2 -4.1 4.1 -4 4 ''; do
+ + AC_CHECK_LIB(db$dbver, db_create, [ DB_LIB="db$dbver"; DB_CPPLIB="db_cxx$dbver"; LIBS="-ldb$dbver $LIBS"; break ])
+ + done
+ + AC_CHECK_FUNC(db_create, [], [ AC_MSG_ERROR([db not installed or functional]) ])