]> git.pld-linux.org Git - packages/thunderbird.git/commitdiff
- rename patches, update script
authorJan Rękorajski <baggins@pld-linux.org>
Tue, 14 Mar 2017 06:58:39 +0000 (07:58 +0100)
committerJan Rękorajski <baggins@pld-linux.org>
Tue, 14 Mar 2017 06:58:39 +0000 (07:58 +0100)
hunspell.patch [moved from icedove-hunspell.patch with 100% similarity]
icedove.sh [deleted file]
install.patch [moved from icedove-install.patch with 100% similarity]
prefs.patch [moved from icedove-prefs.patch with 100% similarity]
rm_nonfree.sh [moved from icedove-rm_nonfree.sh with 100% similarity]
thunderbird.desktop [moved from icedove.desktop with 100% similarity]
thunderbird.sh [new file with mode: 0644]
thunderbird.spec

similarity index 100%
rename from icedove-hunspell.patch
rename to hunspell.patch
diff --git a/icedove.sh b/icedove.sh
deleted file mode 100644 (file)
index 6c88b2e..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-# based on script by (c) vip at linux.pl, wolf at pld-linux.org
-
-LIBDIR="@LIBDIR@/icedove"
-
-# copy profile from Thunderbird if its available and if no Icedove
-# profile exists
-if [ ! -d $HOME/.icedove ] && [ -d $HOME/.thunderbird ]; then
-       echo "Copying profile from Thunderbird"
-       cp -a $HOME/.thunderbird $HOME/.icedove
-fi
-
-# compreg.dat and/or chrome.rdf will screw things up if it's from an
-# older version. http://bugs.gentoo.org/show_bug.cgi?id=63999
-for f in ~/.icedove/*/{compreg.dat,chrome.rdf,XUL.mfasl}; do
-       [ -f "$f" ] || continue
-       if [ "$f" -ot "$0" ] || [ "$f" -ot "$LIBDIR/components/compreg.dat" ]; then
-               echo "Removing $f leftover from older Icedove"
-               rm -f "$f"
-       fi
-done
-
-ICEDOVE="$LIBDIR/icedove"
-
-if [ "$1" = "-remote" ]; then
-       exec $ICEDOVE "$@"
-else
-       PING=$($ICEDOVE -remote 'ping()' 2>&1 >/dev/null)
-       if [ -n "$PING" ]; then
-               exec $ICEDOVE "$@"
-       else
-               case "$1" in
-               -compose|-editor)
-                       exec $ICEDOVE -remote 'xfeDoCommand (composeMessage)'
-                       ;;
-               *)
-                       exec $ICEDOVE -remote 'xfeDoCommand (openInbox)'
-                       ;;
-               esac
-       fi
-fi
similarity index 100%
rename from icedove-install.patch
rename to install.patch
similarity index 100%
rename from icedove-prefs.patch
rename to prefs.patch
similarity index 100%
rename from icedove-rm_nonfree.sh
rename to rm_nonfree.sh
similarity index 100%
rename from icedove.desktop
rename to thunderbird.desktop
diff --git a/thunderbird.sh b/thunderbird.sh
new file mode 100644 (file)
index 0000000..cad467e
--- /dev/null
@@ -0,0 +1,41 @@
+#!/bin/sh
+# based on script by (c) vip at linux.pl, wolf at pld-linux.org
+
+LIBDIR="@LIBDIR@/thunderbird"
+
+# copy profile from Icedove if its available and if no Thunderbird
+# profile exists
+if [ ! -d $HOME/.thunderbird ] && [ -d $HOME/.icedove ]; then
+       echo "Copying profile from Icedove"
+       cp -a $HOME/.icedove $HOME/.thunderbird
+fi
+
+# compreg.dat and/or chrome.rdf will screw things up if it's from an
+# older version. http://bugs.gentoo.org/show_bug.cgi?id=63999
+for f in ~/.thunderbird/*/{compreg.dat,chrome.rdf,XUL.mfasl}; do
+       [ -f "$f" ] || continue
+       if [ "$f" -ot "$0" ] || [ "$f" -ot "$LIBDIR/components/compreg.dat" ]; then
+               echo "Removing $f leftover from older Thunderbird"
+               rm -f "$f"
+       fi
+done
+
+THUNDERBIRD="$LIBDIR/thunderbird"
+
+if [ "$1" = "-remote" ]; then
+       exec $THUNDERBIRD "$@"
+else
+       PING=$($THUNDERBIRD -remote 'ping()' 2>&1 >/dev/null)
+       if [ -n "$PING" ]; then
+               exec $THUNDERBIRD "$@"
+       else
+               case "$1" in
+               -compose|-editor)
+                       exec $THUNDERBIRD -remote 'xfeDoCommand (composeMessage)'
+                       ;;
+               *)
+                       exec $THUNDERBIRD -remote 'xfeDoCommand (openInbox)'
+                       ;;
+               esac
+       fi
+fi
index e4762aa03e70fe4d11a7733d12855ae5283ebf96..eb0e4ed5b398cb5bd9890ba35f7e02a5ea34532b 100644 (file)
@@ -35,7 +35,7 @@ Source0:      http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/%{vers
 # Source0-md5: 4e04b1618273f946f00f8ea547578895
 Source4:       %{name}.desktop
 Source5:       %{name}.sh
-Patch2:                %{name}-prefs.patch
+Patch2:                prefs.patch
 Patch6:                no-subshell.patch
 Patch8:                enable-addons.patch
 Patch9:                mozilla-1269171-badalloc.patch
This page took 0.046048 seconds and 4 git commands to generate.