Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master z-rejected grimoire by George Sherwood (c06ecb06a36162d1f2a1941bec1f970882c28f42)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: George Sherwood <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master z-rejected grimoire by George Sherwood (c06ecb06a36162d1f2a1941bec1f970882c28f42)
  • Date: Sun, 22 Jul 2007 01:52:50 -0500

GIT changes to master z-rejected grimoire by George Sherwood
<gsherwood AT sourcemage.org>:

ChangeLog | 3 +++
z-http/seamonkey-bin/BUILD | 1 +
z-http/seamonkey-bin/CONFIGURE | 5 +++++
z-http/seamonkey-bin/DEPENDS | 9 +++++++++
z-http/seamonkey-bin/DETAILS | 20 ++++++++++++++++++++
z-http/seamonkey-bin/HISTORY | 3 +++
z-http/seamonkey-bin/INSTALL | 20 ++++++++++++++++++++
z-http/seamonkey-bin/PROVIDES | 3 +++
z-http/seamonkey-bin/seamonkey-bin | 4 ++++
9 files changed, 68 insertions(+)

New commits:
commit c06ecb06a36162d1f2a1941bec1f970882c28f42
Author: George Sherwood <gsherwood AT sourcemage.org>
Commit: George Sherwood <gsherwood AT sourcemage.org>

seamonkey-bin: Added new spell. We have the rest of mozilla products,
why not this one.

diff --git a/ChangeLog b/ChangeLog
index a1c5e51..ad03854 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2007-07-22 George Sherwood <george AT beernabeer.com>
+ * z-http/seamonkey-bin: Created new spell
+
2007-07-11 Arjan Bouter <abouter AT sourcemage.org>
* gurus.gpg: added my key

diff --git a/z-http/seamonkey-bin/BUILD b/z-http/seamonkey-bin/BUILD
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/z-http/seamonkey-bin/BUILD
@@ -0,0 +1 @@
+true
diff --git a/z-http/seamonkey-bin/CONFIGURE b/z-http/seamonkey-bin/CONFIGURE
new file mode 100755
index 0000000..8080b92
--- /dev/null
+++ b/z-http/seamonkey-bin/CONFIGURE
@@ -0,0 +1,5 @@
+# Standard rejected warnings.
+#
+source $GRIMOIRE/REJECTED_MSG &&
+
+config_query SEAMONKBIN_MOZLINK "Create a symlink to mozilla?" n
diff --git a/z-http/seamonkey-bin/DEPENDS b/z-http/seamonkey-bin/DEPENDS
new file mode 100755
index 0000000..a4f6769
--- /dev/null
+++ b/z-http/seamonkey-bin/DEPENDS
@@ -0,0 +1,9 @@
+depends gcc33 &&
+depends zlib &&
+depends jpeg &&
+depends libpng &&
+depends zip &&
+depends perl &&
+depends gtk+2 &&
+depends freetype2 &&
+depends libidl
diff --git a/z-http/seamonkey-bin/DETAILS b/z-http/seamonkey-bin/DETAILS
new file mode 100755
index 0000000..687c3d6
--- /dev/null
+++ b/z-http/seamonkey-bin/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=seamonkey-bin
+ VERSION=1.1.3
+ SOURCE=seamonkey-${VERSION}.en-US.linux-i686.tar.gz
+
SOURCE_HASH="sha512:a0f74339f806de892f4a9bf072e4c9a0107175d184e7c88fe5ce9fe51534713c841fceaf74a24ab9eab408d537a044e511b1c29ecb7328cccf76a024989bb6ca"
+
SOURCE_URL[0]=http://releases.mozilla.org/pub/mozilla.org/seamonkey/releases/$VERSION/${SOURCE}
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/seamonkey
+ WEB_SITE=http://www.mozilla.org/seamonkey
+ ENTERED=20070722
+ LICENSE[0]=MOZILLA
+ REJECT="is non-source"
+ SHORT="The binary version of seamonkey."
+cat << EOF
+The SeaMonkey project is a community effort to deliver
+production-quality releases of code derived from the application
+formerly known as "Mozilla Application Suite". Whereas the main focus of
+the Mozilla Foundation is on Mozilla Firefox and Mozilla Thunderbird,
+our group of dedicated volunteers works to ensure that you can have
+"everything but the kitchen sink" — and have it stable enough for
+corporate use.
+EOF
diff --git a/z-http/seamonkey-bin/HISTORY b/z-http/seamonkey-bin/HISTORY
new file mode 100644
index 0000000..6d28643
--- /dev/null
+++ b/z-http/seamonkey-bin/HISTORY
@@ -0,0 +1,3 @@
+2007-07-22 George Sherwood <george AT beernabeer.com>
+ * DETAILS, BUILD CONFIGURE, DEPENDS, HISTORY, INSTALL, PROVIDES,
+ seamonkey-bin: Created spell.
diff --git a/z-http/seamonkey-bin/INSTALL b/z-http/seamonkey-bin/INSTALL
new file mode 100755
index 0000000..03a0269
--- /dev/null
+++ b/z-http/seamonkey-bin/INSTALL
@@ -0,0 +1,20 @@
+# tarball has been extracted, just copy to the correct directory.
+INSTALLDIR=/opt/seamonkey
+
+
+mkdir -pv $INSTALLDIR &&
+cp -Rv $SOURCE_DIRECTORY/* $INSTALLDIR &&
+cp -v $SCRIPT_DIRECTORY/seamonkey-bin /usr/bin/ &&
+
+#
+# Create symlink to mozilla or firefox if selected
+# Only create if /usr/bin/mozilla or firefox does not exist or is
+# already a symlink
+#
+if [ "$SEAMONKBIN_MOZLINK" == "y" ]; then
+ if ! test -f $INSTALL_ROOT/usr/bin/mozilla ||
+ test -h $INSTALL_ROOT/usr/bin/mozilla ; then
+ ln -sv $TRACK_ROOT/usr/bin/seamonkey-bin /usr/bin/mozilla
+ fi
+fi
+
diff --git a/z-http/seamonkey-bin/PROVIDES b/z-http/seamonkey-bin/PROVIDES
new file mode 100755
index 0000000..e77ae65
--- /dev/null
+++ b/z-http/seamonkey-bin/PROVIDES
@@ -0,0 +1,3 @@
+GRAPHICAL-WEB-BROWSER
+WEB-BROWSER
+NS-PLUGIN-COMPATIBLE
diff --git a/z-http/seamonkey-bin/seamonkey-bin
b/z-http/seamonkey-bin/seamonkey-bin
new file mode 100755
index 0000000..c92dcb3
--- /dev/null
+++ b/z-http/seamonkey-bin/seamonkey-bin
@@ -0,0 +1,4 @@
+#!/bin/sh
+#
+cd /opt/seamonkey/
+./seamonkey $@



  • [SM-Commit] GIT changes to master z-rejected grimoire by George Sherwood (c06ecb06a36162d1f2a1941bec1f970882c28f42), George Sherwood, 07/22/2007

Archive powered by MHonArc 2.6.24.

Top of Page