summaryrefslogtreecommitdiff
path: root/root
authorkergoth <kergoth>2003-04-23 19:22:49 (UTC)
committer kergoth <kergoth>2003-04-23 19:22:49 (UTC)
commite42cddcf7c6c97801eef357e009e0d37ebb6a3a4 (patch) (side-by-side diff)
treef7f24942cebeccb41662165c36ef75396bbd1938 /root
parentf99c8e576030a7e8e83aa850b09ec69cc6217bb1 (diff)
downloadopie-e42cddcf7c6c97801eef357e009e0d37ebb6a3a4.zip
opie-e42cddcf7c6c97801eef357e009e0d37ebb6a3a4.tar.gz
opie-e42cddcf7c6c97801eef357e009e0d37ebb6a3a4.tar.bz2
Move update-qtfontdir somewhere a bit more appropriate
Diffstat (limited to 'root') (more/less context) (ignore whitespace changes)
-rwxr-xr-xroot/usr/sbin/update-qtfontdir62
1 files changed, 62 insertions, 0 deletions
diff --git a/root/usr/sbin/update-qtfontdir b/root/usr/sbin/update-qtfontdir
new file mode 100755
index 0000000..6df7b50
--- a/dev/null
+++ b/root/usr/sbin/update-qtfontdir
@@ -0,0 +1,62 @@
+#!/bin/sh
+
+usage()
+{
+ echo "usage: $0 [font directory, defaults to QTDIR/lib/fonts]"
+ exit 1
+}
+
+setVar()
+{
+ eval "$1='$2'"
+}
+
+getVar()
+{
+ eval "echo \$$1"
+}
+
+handleQPF()
+{
+ base=`basename $1`
+ family=`echo $base|cut -d_ -f1`
+ pt=`echo $base|cut -d_ -f2`
+ weight=`echo $base|cut -d_ -f3|sed -e 's,i$,,'`
+ if (echo $base|cut -d_ -f3|grep -q 'i$'); then
+ italic="y"
+ else
+ italic="n"
+ fi
+ echo "$family $base.qpf QPF $italic $weight $pt u"
+}
+
+if [ -z "$1" ]; then
+ if [ -n "$QTDIR" ]; then
+ fontdir=$QTDIR/lib/fonts
+ else
+ fontdir=/opt/QtPalmtop/lib/fonts
+ fi
+else
+ fontdir=$1
+fi
+
+if ! [ -d $fontdir ]; then
+ echo Error: $fontdir not a directory
+ exit 1
+fi
+
+if [ -e $fontdir/fontdir ]; then
+ cat $fontdir/fontdir | grep -v '\.qpf' > $fontdir/fontdir.new
+fi
+
+(
+ for file in `ls $fontdir/*.qpf|sed -e's,\.qpf$,,; s,_t[^_]*$,,;'|sort -u`; do
+ handleQPF $file
+ done
+) >> $fontdir/fontdir.new
+
+mv $fontdir/fontdir.new $fontdir/fontdir
+
+exit 0
+
+# vim:ai:et:sts=4:sw=4:tw=0: