-rw-r--r-- | qt/qte234-for-opie091-fontdir.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/qte234-for-opie091-fontdir.patch b/qt/qte234-for-opie091-fontdir.patch index 4db7df2..a765d44 100644 --- a/qt/qte234-for-opie091-fontdir.patch +++ b/qt/qte234-for-opie091-fontdir.patch | |||
@@ -1,65 +1,65 @@ | |||
1 | --- /dev/null2003-01-17 15:37:44.000000000 -0600 | 1 | --- /dev/null2003-01-17 15:37:44.000000000 -0600 |
2 | +++ qt-2.3.5/bin/update-qtfontdir2003-04-22 00:37:07.000000000 -0500 | 2 | +++ bin/update-qtfontdir2003-04-22 00:37:07.000000000 -0500 |
3 | @@ -0,0 +1,62 @@ | 3 | @@ -0,0 +1,62 @@ |
4 | +#!/bin/sh | 4 | +#!/bin/sh |
5 | + | 5 | + |
6 | +usage() | 6 | +usage() |
7 | +{ | 7 | +{ |
8 | + echo "usage: $0 [font directory, defaults to QTDIR/lib/fonts]" | 8 | + echo "usage: $0 [font directory, defaults to QTDIR/lib/fonts]" |
9 | + exit 1 | 9 | + exit 1 |
10 | +} | 10 | +} |
11 | + | 11 | + |
12 | +setVar() | 12 | +setVar() |
13 | +{ | 13 | +{ |
14 | + eval "$1='$2'" | 14 | + eval "$1='$2'" |
15 | +} | 15 | +} |
16 | + | 16 | + |
17 | +getVar() | 17 | +getVar() |
18 | +{ | 18 | +{ |
19 | + eval "echo \$$1" | 19 | + eval "echo \$$1" |
20 | +} | 20 | +} |
21 | + | 21 | + |
22 | +handleQPF() | 22 | +handleQPF() |
23 | +{ | 23 | +{ |
24 | + base=`basename $1` | 24 | + base=`basename $1` |
25 | + family=`echo $base|cut -d_ -f1` | 25 | + family=`echo $base|cut -d_ -f1` |
26 | + pt=`echo $base|cut -d_ -f2` | 26 | + pt=`echo $base|cut -d_ -f2` |
27 | + weight=`echo $base|cut -d_ -f3|sed -e 's,i$,,'` | 27 | + weight=`echo $base|cut -d_ -f3|sed -e 's,i$,,'` |
28 | + if (echo $base|cut -d_ -f3|grep -q 'i$'); then | 28 | + if (echo $base|cut -d_ -f3|grep -q 'i$'); then |
29 | + italic="y" | 29 | + italic="y" |
30 | + else | 30 | + else |
31 | + italic="n" | 31 | + italic="n" |
32 | + fi | 32 | + fi |
33 | + echo "$family $base.qpf QPF $italic $weight $pt u" | 33 | + echo "$family $base.qpf QPF $italic $weight $pt u" |
34 | +} | 34 | +} |
35 | + | 35 | + |
36 | +if [ -z "$1" ]; then | 36 | +if [ -z "$1" ]; then |
37 | + if [ -n "$QTDIR" ]; then | 37 | + if [ -n "$QTDIR" ]; then |
38 | + fontdir=$QTDIR/lib/fonts | 38 | + fontdir=$QTDIR/lib/fonts |
39 | + else | 39 | + else |
40 | + usage | 40 | + usage |
41 | + fi | 41 | + fi |
42 | +else | 42 | +else |
43 | + fontdir=$1 | 43 | + fontdir=$1 |
44 | +fi | 44 | +fi |
45 | + | 45 | + |
46 | +if ! [ -d $fontdir ]; then | 46 | +if ! [ -d $fontdir ]; then |
47 | + echo Error: $fontdir not a directory | 47 | + echo Error: $fontdir not a directory |
48 | + exit 1 | 48 | + exit 1 |
49 | +fi | 49 | +fi |
50 | + | 50 | + |
51 | +if [ -e $fontdir/fontdir ]; then | 51 | +if [ -e $fontdir/fontdir ]; then |
52 | + cat $fontdir/fontdir | grep -v '\.qpf' > $fontdir/fontdir.new | 52 | + cat $fontdir/fontdir | grep -v '\.qpf' > $fontdir/fontdir.new |
53 | +fi | 53 | +fi |
54 | + | 54 | + |
55 | +( | 55 | +( |
56 | + for file in `ls $fontdir/*.qpf|sed -e's,\.qpf$,,; s,_t[^_]*$,,;'|sort -u`; do | 56 | + for file in `ls $fontdir/*.qpf|sed -e's,\.qpf$,,; s,_t[^_]*$,,;'|sort -u`; do |
57 | + handleQPF $file | 57 | + handleQPF $file |
58 | + done | 58 | + done |
59 | +) >> $fontdir/fontdir.new | 59 | +) >> $fontdir/fontdir.new |
60 | + | 60 | + |
61 | +mv $fontdir/fontdir.new $fontdir/fontdir | 61 | +mv $fontdir/fontdir.new $fontdir/fontdir |
62 | + | 62 | + |
63 | +exit 0 | 63 | +exit 0 |
64 | + | 64 | + |
65 | +# vim:ai:et:sts=4:sw=4:tw=0: | 65 | +# vim:ai:et:sts=4:sw=4:tw=0: |