Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master z-rejected grimoire by Alexander Tsamutali (c7b8b51408d5633ead2c5887072be05b9630f972)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Alexander Tsamutali <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master z-rejected grimoire by Alexander Tsamutali (c7b8b51408d5633ead2c5887072be05b9630f972)
  • Date: Fri, 18 Jul 2008 11:10:41 -0500

GIT changes to master z-rejected grimoire by Alexander Tsamutali
<astsmtl AT gmail.com>:

ChangeLog | 4 ++++
z-http/xulrunner-bin/BUILD | 1 +
z-http/xulrunner-bin/CONFIGURE | 2 ++
z-http/xulrunner-bin/DEPENDS | 12 ++++++++++++
z-http/xulrunner-bin/DETAILS | 20 ++++++++++++++++++++
z-http/xulrunner-bin/HISTORY | 3 +++
z-http/xulrunner-bin/INSTALL | 16 ++++++++++++++++
z-http/xulrunner-bin/PREPARE | 1 +
z-http/xulrunner-bin/PROVIDES | 1 +
z-http/xulrunner-bin/xulrunner.gpg |binary
10 files changed, 60 insertions(+)

New commits:
commit c7b8b51408d5633ead2c5887072be05b9630f972
Author: Alexander Tsamutali <astsmtl AT gmail.com>
Commit: Alexander Tsamutali <astsmtl AT gmail.com>

z-http/xulrunner-bin: new spell, Mozilla runtime package that can be used
to
bootstrap XUL+XPCOM applications

diff --git a/ChangeLog b/ChangeLog
index 6d5720c..8ec51fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-07-18 Alexander Tsamutali <astsmtl AT gmail.com>
+ * z-http/xulrunner-bin: Mozilla runtime package that can be used to
+ bootstrap XUL+XPCOM applications
+
2008-06-26 Alexander Tsamutali <astsmtl AT gmail.com>
* z-audio/tuxguitar-bin: new spell, multitrack tablature editor and
player
diff --git a/z-http/xulrunner-bin/BUILD b/z-http/xulrunner-bin/BUILD
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/z-http/xulrunner-bin/BUILD
@@ -0,0 +1 @@
+true
diff --git a/z-http/xulrunner-bin/CONFIGURE b/z-http/xulrunner-bin/CONFIGURE
new file mode 100755
index 0000000..7e13a77
--- /dev/null
+++ b/z-http/xulrunner-bin/CONFIGURE
@@ -0,0 +1,2 @@
+config_query SYMLINK_XULRUNNER "Create a symlink to xulrunner?" n &&
+config_query REGISTER_GLOBAL "Register this installation globally?" n
diff --git a/z-http/xulrunner-bin/DEPENDS b/z-http/xulrunner-bin/DEPENDS
new file mode 100755
index 0000000..5c5b092
--- /dev/null
+++ b/z-http/xulrunner-bin/DEPENDS
@@ -0,0 +1,12 @@
+depends g++ &&
+depends zlib &&
+depends expat &&
+depends libpng &&
+depends glitz &&
+depends cairo &&
+depends fontconfig &&
+depends freetype2 &&
+depends pango &&
+depends glib2 &&
+depends atk &&
+depends gtk+2
diff --git a/z-http/xulrunner-bin/DETAILS b/z-http/xulrunner-bin/DETAILS
new file mode 100755
index 0000000..053c10c
--- /dev/null
+++ b/z-http/xulrunner-bin/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=xulrunner-bin
+ VERSION=1.9.0.0
+ SOURCE=xulrunner-${VERSION:0:3}.en-US.linux-i686.tar.bz2
+ SOURCE2=$SOURCE.asc
+ SOURCE_GPG="xulrunner.gpg:$SOURCE2"
+
SOURCE_URL[0]=http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/${VERSION}/runtimes/${SOURCE}
+
SOURCE2_URL[0]=http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/${VERSION}/runtimes/${SOURCE}.asc
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/xulrunner
+ WEB_SITE=http://developer.mozilla.org/en/docs/XULRunner
+ ENTERED=20080718
+ LICENSE[0]=MOZILLA
+ REJECT="is non-source"
+ SHORT="Mozilla runtime package that can be used to bootstrap
XUL+XPCOM applications"
+cat << EOF
+XULRunner is a Mozilla runtime package that can be used to bootstrap
XUL+XPCOM
+applications that are as rich as Firefox and Thunderbird. It will provide
+mechanisms for installing, upgrading, and uninstalling these applications.
+XULRunner will also provide libxul, a solution which allows the embedding of
+Mozilla technologies in other projects and products.
+EOF
diff --git a/z-http/xulrunner-bin/HISTORY b/z-http/xulrunner-bin/HISTORY
new file mode 100644
index 0000000..88827c2
--- /dev/null
+++ b/z-http/xulrunner-bin/HISTORY
@@ -0,0 +1,3 @@
+2008-07-18 Alexander Tsamutali <astsmtl AT gmail.com>
+ * PREPARE, DETAILS, CONFIGURE, DEPENDS, PROVIDES, BUILD, INSTALL,
+ HISTORY, xulrunner.gpg: Created this spell
diff --git a/z-http/xulrunner-bin/INSTALL b/z-http/xulrunner-bin/INSTALL
new file mode 100755
index 0000000..98e0be2
--- /dev/null
+++ b/z-http/xulrunner-bin/INSTALL
@@ -0,0 +1,16 @@
+INSTALL_DIRECTORY=$INSTALL_ROOT/opt/xulrunner &&
+
+mkdir -pv $INSTALL_DIRECTORY &&
+cp -rv $SOURCE_DIRECTORY/* $INSTALL_DIRECTORY &&
+ln -sv $INSTALL_DIRECTORY/xulrunner /usr/bin/xulrunner-bin &&
+
+if [ "$SYMLINK_XULRUNNER" == "y" ]; then
+ if ! test -f $INSTALL_ROOT/usr/bin/xulrunner ||
+ test -h $INSTALL_ROOT/usr/bin/xulrunner ; then
+ ln -sv $INSTALL_ROOT/usr/bin/xulrunner-bin
$INSTALL_ROOT/usr/bin/xulrunner
+ fi
+fi &&
+
+if [ "$REGISTER_GLOBAL" == "y" ]; then
+ xulrunner-bin --register-global
+fi
diff --git a/z-http/xulrunner-bin/PREPARE b/z-http/xulrunner-bin/PREPARE
new file mode 100755
index 0000000..b8424fe
--- /dev/null
+++ b/z-http/xulrunner-bin/PREPARE
@@ -0,0 +1 @@
+source $GRIMOIRE/REJECTED_MSG
diff --git a/z-http/xulrunner-bin/PROVIDES b/z-http/xulrunner-bin/PROVIDES
new file mode 100755
index 0000000..f88d9c4
--- /dev/null
+++ b/z-http/xulrunner-bin/PROVIDES
@@ -0,0 +1 @@
+XULRUNNER
diff --git a/z-http/xulrunner-bin/xulrunner.gpg
b/z-http/xulrunner-bin/xulrunner.gpg
new file mode 100644
index 0000000..adb886e
Binary files /dev/null and b/z-http/xulrunner-bin/xulrunner.gpg differ



  • [SM-Commit] GIT changes to master z-rejected grimoire by Alexander Tsamutali (c7b8b51408d5633ead2c5887072be05b9630f972), Alexander Tsamutali, 07/18/2008

Archive powered by MHonArc 2.6.24.

Top of Page