aboutsummaryrefslogtreecommitdiffstats
path: root/debian/w3m.sh
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-05-04 07:18:09 +0000
committerTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-05-04 07:18:09 +0000
commit5f8e0f8ef9a422691dd72e8a953a42a41478fcb4 (patch)
tree4b2df4796a534793648b3c4fc532fc36bd0cd525 /debian/w3m.sh
parentReleasing debian version 0.3-2.4 (diff)
downloadw3m-5f8e0f8ef9a422691dd72e8a953a42a41478fcb4.tar.gz
w3m-5f8e0f8ef9a422691dd72e8a953a42a41478fcb4.zip
Releasing debian version 0.5.1-1debian/0.5.1-1
Diffstat (limited to 'debian/w3m.sh')
-rw-r--r--debian/w3m.sh31
1 files changed, 0 insertions, 31 deletions
diff --git a/debian/w3m.sh b/debian/w3m.sh
deleted file mode 100644
index 7c9c47b..0000000
--- a/debian/w3m.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-# Copyright (c) 1999 Fumitoshi UKAI <ukai@debian.or.jp>
-# Copyright (c) 1999 Jacobo Tarrio Barreiro <jtarrio@iname.com>
-# This program is covered by the GNU General Public License version 2
-#
-
-## for I18N variants, not yet: try w3mmee
-#W3M=${W3M:-/usr/bin/w3m-ssl-i18n}
-#test -x $W3M && exec $W3M "${params[@]}"
-#
-#for W3M in /usr/bin/w3m-ssl-i18n /usr/bin/w3m-ssl
-#do
-# test -x $W3M && exec $W3M "${params[@]}"
-#done
-
-W3M=/usr/bin/w3m-en
-if [ -x /usr/bin/locale ]; then
- eval `locale`
-fi
-locale=${LC_ALL:-$LANG}
-case X"$locale" in
- Xja|Xja_JP|Xja_JP.*)
- [ -x /usr/bin/w3m-ja ] && W3M=/usr/bin/w3m-ja
- [ -x /usr/bin/w3m-ssl-ja ] && W3M=/usr/bin/w3m-ssl-ja
- ;;
- *)
- [ -x /usr/bin/w3m-ssl-en ] && W3M=/usr/bin/w3m-ssl-en
- ;;
-esac
-exec $W3M "$@"
-