Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master z-rejected grimoire by Sukneet Basuta (33bfd9cfe51e6ba418a0f1f9d5943433dc0ae0ab)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Sukneet Basuta <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master z-rejected grimoire by Sukneet Basuta (33bfd9cfe51e6ba418a0f1f9d5943433dc0ae0ab)
  • Date: Thu, 19 May 2011 20:03:37 -0500

GIT changes to master z-rejected grimoire by Sukneet Basuta
<sukneet AT sourcemage.org>:

z-http/flash/CONFIGURE | 3 ++-
z-http/flash/HISTORY | 8 ++++++++
z-http/flash/INSTALL | 26 ++++++++++++++++++++++----
3 files changed, 32 insertions(+), 5 deletions(-)

New commits:
commit 33bfd9cfe51e6ba418a0f1f9d5943433dc0ae0ab
Author: Sukneet Basuta <sukneet AT sourcemage.org>
Commit: Sukneet Basuta <sukneet AT sourcemage.org>

fixed flash install for Firefox since it no longer relies on Xulrunner.
CONFIGURE: Checks for Firefox and XULRunner separately now.
INSTALL: New Case for just Firefox. Creates /usr/lib/xulrunner/plugins if
it does not exist, since /usr/lib/firefox/plugins seems to be symlinked to
this by default. Plugin is still copied to /usr/lib/xulrunner/plugins.

diff --git a/z-http/flash/CONFIGURE b/z-http/flash/CONFIGURE
index 21abb64..d992bd2 100755
--- a/z-http/flash/CONFIGURE
+++ b/z-http/flash/CONFIGURE
@@ -24,7 +24,8 @@ echo "Select which currently installed applications you
wish to install Flash fo
persistent_add MOZILLA FIREFOX MIDORI SEAMONKEY FIRE_BIN KDEBASE OPERA
NETSCAPE XULRUNNER ICE_BIN ICECAT &&

ask_spell mozilla Mozilla MOZILLA &&
-ask_spell xulrunner "Firefox/XULRunner" FIREFOX &&
+ask_spell xulrunner "XULRunner" XULRUNNER &&
+ask_spell firefox "Firefox" FIREFOX &&
ask_spell midori "Midori/WebKit" MIDORI &&
ask_spell seamonkey Seamonkey SEAMONKEY &&
ask_spell firefox-bin Firefox-bin FIRE_BIN &&
diff --git a/z-http/flash/HISTORY b/z-http/flash/HISTORY
index ed2c865..1544337 100644
--- a/z-http/flash/HISTORY
+++ b/z-http/flash/HISTORY
@@ -1,3 +1,11 @@
+2011-05-19 Sukneet Basuta <sukneet AT sourcemage.org>
+ * CONFIGURE: Separated checking of XULRunner and Firefox
+ * INSTALL: Made new case for Firefox.
+ In the case of Firefox, /usr/lib/xulrunner/plugins is made
+ if it does not exist, since /usr/lib/firefox/plugins is
+ symlinked to /usr/lib/xulrunner/plugins by default.
+ Flash is still installed to /usr/lib/xulrunner/plugins
+
2011-05-13 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 10.3.181.14, SECURITY_PATCH=14
http://www.adobe.com/support/security/bulletins/apsb11-12.html
diff --git a/z-http/flash/INSTALL b/z-http/flash/INSTALL
index cb184fb..f7b657c 100755
--- a/z-http/flash/INSTALL
+++ b/z-http/flash/INSTALL
@@ -26,13 +26,31 @@ case $FIREFOX in
fi &&
if [[ -e /usr/lib/xulrunner/plugins/flashplayer.xpt
]]; then
rm -f
/usr/lib/xulrunner/plugins/flashplayer.xpt
- fi &&
-
- cp libflashplayer.so /usr/lib/xulrunner/plugins/
- fi
+ fi
+ else
+ mkdir -p /usr/lib/xulrunner/plugins
+ fi &&
+ cp libflashplayer.so /usr/lib/xulrunner/plugins/
;;
esac &&

+case $XULRUNNER in
+ y|Y)
+ if [[ -d /usr/lib/xulrunner/plugins ]]; then
+ message "${MESSAGE_COLOR}Installing for
Firefox/XULRunner${DEFAULT_COLOR}\n" &&
+
+ if [[ -e
/usr/lib/xulrunner/plugins/libflashplayer.so ]]; then
+ rm -f
/usr/lib/xulrunner/plugins/libflashplayer.so
+ fi &&
+ if [[ -e /usr/lib/xulrunner/plugins/flashplayer.xpt
]]; then
+ rm -f
/usr/lib/xulrunner/plugins/flashplayer.xpt
+ fi &&
+
+ cp libflashplayer.so /usr/lib/xulrunner/plugins/
+ fi
+ ;;
+esac &&
+
case $MIDORI in
y|Y)
if [[ -d /usr/lib/midori/plugins ]]; then



  • [SM-Commit] GIT changes to master z-rejected grimoire by Sukneet Basuta (33bfd9cfe51e6ba418a0f1f9d5943433dc0ae0ab), Sukneet Basuta, 05/19/2011

Archive powered by MHonArc 2.6.24.

Top of Page