Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master binary grimoire by George Sherwood (a4e39605f57fb08af4ff12bac467c9a42ebba5f0)

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 binary grimoire by George Sherwood (a4e39605f57fb08af4ff12bac467c9a42ebba5f0)
  • Date: Sun, 19 Oct 2008 19:51:45 -0500

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

ChangeLog | 3 ++
bin-http/firefox-obstcp/BUILD | 1
bin-http/firefox-obstcp/CONFIGURE | 2 +
bin-http/firefox-obstcp/DEPENDS | 9 ++++++++
bin-http/firefox-obstcp/DETAILS | 20 ++++++++++++++++++
bin-http/firefox-obstcp/HISTORY | 3 ++
bin-http/firefox-obstcp/INSTALL | 26
++++++++++++++++++++++++
bin-http/firefox-obstcp/PROVIDES | 3 ++
bin-http/firefox-obstcp/desktop/firefox.desktop | 8 +++++++
bin-http/firefox-obstcp/firefox-obstcp | 4 +++
10 files changed, 79 insertions(+)

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

firefox-obstcp: Added patched binary version of firefox providing
Obsfucated TCP.

diff --git a/ChangeLog b/ChangeLog
index 6dce1e0..d782446 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2008-10-19 George Sherwood <gsherwood AT sourcemage.org>
+ * bin-http/firefox-obstcp: Added new spell
+
2008-10-15 George Sherwood <gsherwood AT sourcemage.org>
* bin-editors/openoffice2-bin-lang-es: moved spell from z-rejected
* bin-editors/openoffice2-bin-lang-fr: moved spell from z-rejected
diff --git a/bin-http/firefox-obstcp/BUILD b/bin-http/firefox-obstcp/BUILD
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/bin-http/firefox-obstcp/BUILD
@@ -0,0 +1 @@
+true
diff --git a/bin-http/firefox-obstcp/CONFIGURE
b/bin-http/firefox-obstcp/CONFIGURE
new file mode 100755
index 0000000..c463e93
--- /dev/null
+++ b/bin-http/firefox-obstcp/CONFIGURE
@@ -0,0 +1,2 @@
+config_query FIREBIN_MOZLINK "Create a symlink to mozilla?" n &&
+config_query FIREBIN_FIREFOX "Create a symlink to firefox?" n
diff --git a/bin-http/firefox-obstcp/DEPENDS b/bin-http/firefox-obstcp/DEPENDS
new file mode 100755
index 0000000..a4f6769
--- /dev/null
+++ b/bin-http/firefox-obstcp/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/bin-http/firefox-obstcp/DETAILS b/bin-http/firefox-obstcp/DETAILS
new file mode 100755
index 0000000..caecde6
--- /dev/null
+++ b/bin-http/firefox-obstcp/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=firefox-obstcp
+ VERSION=3.0.3
+ SOURCE=firefox-${VERSION}-obstcp-ia32.tar.bz2
+
SOURCE_HASH=sha512:5c14bbc71036ede0bbe586d98feafc156cefc10f70b721fe48b5fae67d6adb2b54f9b2b6c909df2631692186b8a17bbd1bc3f56ab4599219ee5780872711d406
+ SOURCE_URL[0]=http://obstcp.googlecode.com/svn/trunk/distrib/$SOURCE
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/firefox-$VERSION-obstcp
+ WEB_SITE=http://code.google.com/p/obstcp/
+ ENTERED=20081019
+ LICENSE[0]=MOZILLA
+ SHORT="firefox for obfuscated TCP
+cat << EOF
+Obfuscated TCP is a transport layer protocol that adds opportunistic
+encryption. It's designed to hamper and detect large-scale wiretapping
+and corruption of TCP traffic on the Internet.
+
+The Firefox patch is a patch to the core source tree. I haven't been
+able to extract this as an extension yet because it's changing things
+very deep in the networking code and the extension system wasn't
+designed to support that level of modification.
+EOF
diff --git a/bin-http/firefox-obstcp/HISTORY b/bin-http/firefox-obstcp/HISTORY
new file mode 100644
index 0000000..461d53b
--- /dev/null
+++ b/bin-http/firefox-obstcp/HISTORY
@@ -0,0 +1,3 @@
+2008-10-19 George Sherwood <gsherwood AT sourcemage.org>
+ * ALL: Created spell for firefox-bin
+
diff --git a/bin-http/firefox-obstcp/INSTALL b/bin-http/firefox-obstcp/INSTALL
new file mode 100755
index 0000000..6a31cdd
--- /dev/null
+++ b/bin-http/firefox-obstcp/INSTALL
@@ -0,0 +1,26 @@
+# tarball has been extracted, just copy to the correct directory.
+INSTALLDIR=/opt/firefox-obstcp
+
+mkdir -pv $INSTALLDIR &&
+cp -Rv $SOURCE_DIRECTORY/* $INSTALLDIR &&
+
+cp -v $SCRIPT_DIRECTORY/firefox-obstcp /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 [ "$FIREBIN_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/firefox-bin /usr/bin/mozilla
+ fi
+fi &&
+
+if [ "$FIREBIN_FIREFOX" == "y" ]; then
+ if ! test -f $INSTALL_ROOT/usr/bin/firefox ||
+ test -h $INSTALL_ROOT/usr/bin/firefox ; then
+ ln -sv $TRACK_ROOT/usr/bin/firefox-bin /usr/bin/firefox
+ fi
+fi
diff --git a/bin-http/firefox-obstcp/PROVIDES
b/bin-http/firefox-obstcp/PROVIDES
new file mode 100755
index 0000000..e77ae65
--- /dev/null
+++ b/bin-http/firefox-obstcp/PROVIDES
@@ -0,0 +1,3 @@
+GRAPHICAL-WEB-BROWSER
+WEB-BROWSER
+NS-PLUGIN-COMPATIBLE
diff --git a/bin-http/firefox-obstcp/desktop/firefox.desktop
b/bin-http/firefox-obstcp/desktop/firefox.desktop
new file mode 100644
index 0000000..528beab
--- /dev/null
+++ b/bin-http/firefox-obstcp/desktop/firefox.desktop
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=Firefox-Obstcp
+Exec=firefox-obstcp
+Icon=/opt/firefox-obstcp/icons/mozicon16.xpm
+Terminal=false
+Type=Application
+Categories=Application;Network;Browsers
diff --git a/bin-http/firefox-obstcp/firefox-obstcp
b/bin-http/firefox-obstcp/firefox-obstcp
new file mode 100755
index 0000000..38bf281
--- /dev/null
+++ b/bin-http/firefox-obstcp/firefox-obstcp
@@ -0,0 +1,4 @@
+#!/bin/sh
+#
+cd /opt/firefox-obstcp
+./firefox $@



  • [SM-Commit] GIT changes to master binary grimoire by George Sherwood (a4e39605f57fb08af4ff12bac467c9a42ebba5f0), George Sherwood, 10/19/2008

Archive powered by MHonArc 2.6.24.

Top of Page