New commits:
commit 6f1d8bd073f676a356a17ae785095eb042b8d33c
Author: George Sherwood <gsherwood AT sourcemage.org>
Commit: George Sherwood <gsherwood AT sourcemage.org>
seamonkey: Major update to the spell to get it to
work with 2.0. Hopefully not too many bugs.
-patch -p1 < $SCRIPT_DIRECTORY/cairo-fixes.patch &&
+if [[ "$SEAMONKEY_MAILNEWS" == "n" ]]; then
+ sed -i '85iac_add_options --disable-mailnews' .mozconfig
+fi &&
-# Need to link sqlite staticly
+if [[ "$SEAMONKEY_COMPOSER" == "n" ]]; then
+ sed -i '85iac_add_options --disable-composer' .mozconfig
+fi &&
-patch -p0 < $SCRIPT_DIRECTORY/seamonkey-sqlite.patch
+if [[ "$SEAMONKEY_JS" == "y" ]]; then
+ sed -i '85iac_add_options --enable-xpctools' .mozconfig
+else
+ sed -i '85iac_add_options --disable-xpctools' .mozconfig
+fi &&
+
+if [[ "$SEAMONKEY_XINERAMA" == "y" ]]; then
+ sed -i '85iac_add_options --enable-xinerama' .mozconfig
+fi &&
+
+if [[ "$SEAMONKEY_PANGO" == "y" ]]; then
+ sed -i '85iac_add_options --enable-pango' .mozconfig
+fi
diff --git a/http/seamonkey/blfs-mozconfig b/http/seamonkey/blfs-mozconfig
new file mode 100644
index 0000000..cdc3eb4
--- /dev/null
+++ b/http/seamonkey/blfs-mozconfig
@@ -0,0 +1,89 @@
+# $LastChangedBy: bdubbs $
+# $Date: 2009-11-04 14:57:47 +0000 (Wed, 04 Nov 2009) $
+#
+# This file contains the options used in the SeaMonkey build. You may
+# need to specify additional options for your specific build needs.
+# Use the information provided by running './configure --help' to
+# help you determine if you need to add any additional options.
+# Some additional options can be added by uncommenting the examples
+# in this file or adding options by inserting a line containing
+# 'ac_add_options --some-option-you-need'.
+
+
+# Create an object directory and specify to build the package in that
+# directory. If desired, modify the location of the object directory
+# to a directory inside the source tree by removing '../' from the
+# line below.
+mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/seamonkey-build
+
+# This option is used to specify that the SeaMonkey suite is
+# being built and to use all the default options for SeaMonkey.
+ac_add_options --enable-application=suite
+
+# Specify the installation prefix. If you would prefer SeaMonkey
+# installed in a different prefix, modify the line below to fit
+# your needs. You'll also need to modify some of the instructions in
+# the BLFS book to point to your desired prefix.
+ac_add_options --prefix=/usr
+
+# These options are used so that the SeaMonkey binaries are linked to
+# the system-installed copies of the specified libraries instead of
+# the source tree code which may not be the most recent versions.
+ac_add_options --with-system-zlib
+ac_add_options --with-system-png
+ac_add_options --with-system-jpeg
+ac_add_options --enable-system-cairo
+
+# This option specifies to include support for rendering the HTML
+# <canvas></canvas> tag in the SeaMonkey browser.
+ac_add_options --enable-canvas
+
+# This option is used so that the debugging symbols are removed from
+# the installed binaries during the installation process. Comment out
+# this option if you may have a need to retain the debugging symbols
+# in the installed binaries. Note that this can substantially
+# increase the size of the installed binaries.
+ac_add_options --enable-strip
+
+# This option is added so that test libraries and programs are not
+# built. These would only be required for debugging purposes.
+ac_add_options --disable-tests
+
+# This option is added so that the Mozilla Installer program is not
+# built or installed. The program is not required for a BLFS
+# installation of SeaMonkey.
+ac_add_options --disable-installer
+
+# This option is used to disable the a11y support in the SeaMonkey
+# binaries. Comment out this option if you require a11y support.
+ac_add_options --disable-accessibility
+
+# This option is used to enable support for rendering SVG files in the
+# SeaMonkey browser.
+ac_add_options --enable-svg
+
+# This option is used to enable source tree included LDAP support in
+# the SeaMonkey binaries.
+ac_add_options --enable-ldap
+
+# These two options enable support for building SeaMonkey with
+# system-installed versions of the Network Security Services (NSS)
+# and Netscape Portable Runtime (NSPR) libraries. Uncomment both
+# lines to enable support for system-installed NSS/NSPR.
+ac_add_options --with-system-nspr
+ac_add_options --with-system-nss
+
+# Uncomment this option if you desire support for dual-monitor
+# display of SeaMonkey using the X-Window Xinerama libraries.
+#ac_add_options --enable-xinerama
+
+# Complex scripts such as Thai can only be rendered in SeaMonkey with the
+# help of Pango. This option significantly slows rendering, so only use
+# it if necessary.
+#ac_add_options --enable-pango
+
+# This option identifies the default binary directory of the SeaMonkey
+# installation and is used to locate SeaMonkey's installed files. This
+# option is not required for end-user browsing, and is only used for
+# development purposes.
+ac_add_options --with-default-mozilla-five-home=/usr/lib/seamonkey
diff --git a/http/seamonkey/cairo-fixes.patch
b/http/seamonkey/cairo-fixes.patch
deleted file mode 100644
index f11250e..0000000
--- a/http/seamonkey/cairo-fixes.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/content/canvas/src/nsCanvasRenderingContext2D.cpp 2007-09-16
02:28:55.602763128 +0000
-+++ b/content/canvas/src/nsCanvasRenderingContext2D.cpp 2007-09-16
02:28:27.527046255 +0000
-@@ -98,6 +98,12 @@
- #include "nsTArray.h"
-
- #include "cairo.h"
-+typedef enum _cairo_font_type {
-+ CAIRO_FONT_TYPE_TOY,
-+ CAIRO_FONT_TYPE_FT,
-+ CAIRO_FONT_TYPE_WIN32,
-+ CAIRO_FONT_TYPE_ATSUI
-+} cairo_font_type_t;
- #include "imgIEncoder.h"
- #ifdef MOZILLA_1_8_BRANCH
- #define imgIEncoder imgIEncoder_MOZILLA_1_8_BRANCH
diff --git a/http/seamonkey/seamonkey-sqlite.patch
b/http/seamonkey/seamonkey-sqlite.patch
deleted file mode 100644
index 5b3683d..0000000
--- a/http/seamonkey/seamonkey-sqlite.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- db/sqlite3/src/Makefile.in.orig 2009-09-05 12:34:27.000000000 -0500
-+++ db/sqlite3/src/Makefile.in 2009-09-05 12:35:04.000000000 -0500
-@@ -46,7 +46,7 @@
- MODULE = sqlite3
- LIBRARY_NAME = sqlite3
- MODULE_NAME = sqlite3
--FORCE_SHARED_LIB = 1
-+FORCE_STATIC_LIB = 1
- VISIBILITY_FLAGS =
-
- ifeq (,$(filter-out WINNT WINCE, $(OS_ARCH)))
[SM-Commit] GIT changes to master grimoire by George Sherwood (6f1d8bd073f676a356a17ae785095eb042b8d33c),
George Sherwood, 11/08/2009