New commits:
commit 0f3883327f795ed174715edef58e9cdf044aa182
Author: George Sherwood <gsherwood AT sourcemage.org>
Commit: George Sherwood <gsherwood AT sourcemage.org>
seamonkey: default to not use system cairo. Newer version of cairo
are causing crashes. Need to consider for all mozilla products.
diff --git a/http/seamonkey/CONFIGURE b/http/seamonkey/CONFIGURE
index 8c23f7a..37e0587 100755
--- a/http/seamonkey/CONFIGURE
+++ b/http/seamonkey/CONFIGURE
@@ -36,9 +36,15 @@ if [[ "$SEAMONKEY_XINERAMA" == "--enable-xinerama" || \
else
SEAMONKEY_XINERAMA=n
fi &&
+
+config_query SEAMONKEY_CAIRO \
+ "Use system installed cairo?" \
+ n &&
+
config_query SEAMONKEY_XINERAMA \
'Enable Xinerama support?' \
n &&
+
config_query SEAMONKEY_PANGO \
'Enable Pango support for complex font rendering?' \
n &&
diff --git a/http/seamonkey/DEPENDS b/http/seamonkey/DEPENDS
index eb01c9d..c267ad7 100755
--- a/http/seamonkey/DEPENDS
+++ b/http/seamonkey/DEPENDS
@@ -1,4 +1,6 @@
-depends cairo &&
+if [[ "$SEAMONKEY_CAIRO" == "y" ]]; then
+ depends cairo
+fi &&
depends gtk+2 &&
depends jpeg &&
depends libidl &&
diff --git a/http/seamonkey/HISTORY b/http/seamonkey/HISTORY
index 5687f44..54d5261 100644
--- a/http/seamonkey/HISTORY
+++ b/http/seamonkey/HISTORY
@@ -1,3 +1,9 @@
+2010-09-12 George Sherwood <gsherwood AT sourcemage.org>
+ * CONFIGURE: Added option to use system installed cairo
+ * PRE_BUILD: Set option to enable/disable system installed cairo
+ * blfs-mozconfig: Removed default use of system cairo
+ * DEPENDS: Make depends cairo conditional
+
2010-09-08 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 2.0.7, SECURITY_PATCH=26
* PRE_BUILD: added --disable-crashreporter, broken
diff --git a/http/seamonkey/PRE_BUILD b/http/seamonkey/PRE_BUILD
index 5fee834..d3cf3c6 100755
--- a/http/seamonkey/PRE_BUILD
+++ b/http/seamonkey/PRE_BUILD
@@ -7,6 +7,12 @@ cp -v $SPELL_DIRECTORY/blfs-mozconfig .mozconfig &&