author | harlekin <harlekin> | 2002-08-30 12:38:14 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-08-30 12:38:14 (UTC) |
commit | 81946d699779a30dc09b3ecc8cf5998bae19b343 (patch) (unidiff) | |
tree | ca1b12a09a18eb65ff4e761e8ca55648ac073b42 | |
parent | 56640f56c2c0a5191a47927d48dea1e7df98c985 (diff) | |
download | opie-81946d699779a30dc09b3ecc8cf5998bae19b343.zip opie-81946d699779a30dc09b3ecc8cf5998bae19b343.tar.gz opie-81946d699779a30dc09b3ecc8cf5998bae19b343.tar.bz2 |
think first, then commit .-)
-rwxr-xr-x | mkipks | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,141 +1,141 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | QTE_VERSION=2.3.3 | 3 | QTE_VERSION=2.3.3 |
4 | DEB_VERSION=2.0 | 4 | DEB_VERSION=2.0 |
5 | 5 | ||
6 | # Have to do this here, since CVS can't store symlinks | 6 | # Have to do this here, since CVS can't store symlinks |
7 | mkdir -p etc/rc2.d | 7 | mkdir -p etc/rc2.d |
8 | rm -f etc/rc2.d/S98opie | 8 | rm -f etc/rc2.d/S98opie |
9 | ln -s ../init.d/opie etc/rc2.d/S98opie | 9 | ln -s ../init.d/opie etc/rc2.d/S98opie |
10 | 10 | ||
11 | mkdir -p etc/rcS.d | 11 | mkdir -p etc/rcS.d |
12 | rm -f etc/rcS.d/S01bootsplash | 12 | rm -f etc/rcS.d/S01bootsplash |
13 | ln -s ../init.d/opie etc/rcS.d/S01bootsplash | 13 | ln -s ../init.d/bootsplash etc/rcS.d/S01bootsplash |
14 | 14 | ||
15 | rm -f ipaq/etc/rc2.d/S96opieatd | 15 | rm -f ipaq/etc/rc2.d/S96opieatd |
16 | ln -s ../init.d/opieatd ipaq/etc/rc2.d/S96opieatd | 16 | ln -s ../init.d/opieatd ipaq/etc/rc2.d/S96opieatd |
17 | 17 | ||
18 | 18 | ||
19 | 19 | ||
20 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) | 20 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) |
21 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION ".*\.\([0-9]*\)\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) | 21 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION ".*\.\([0-9]*\)\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) |
22 | VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION ".*\..*\.\([0-9]*\).*/\1/p' <$OPIEDIR/include/qpe/version.h) | 22 | VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION ".*\..*\.\([0-9]*\).*/\1/p' <$OPIEDIR/include/qpe/version.h) |
23 | SUB_VERSION=$(sed -n -e 's,.*SUB_VERSION \"\(.*\)\".*,\1,p' <$OPIEDIR/include/qpe/version.h) | 23 | SUB_VERSION=$(sed -n -e 's,.*SUB_VERSION \"\(.*\)\".*,\1,p' <$OPIEDIR/include/qpe/version.h) |
24 | if grep -q 'QPE_VERSION .*snapshot' $OPIEDIR/include/qpe/version.h | 24 | if grep -q 'QPE_VERSION .*snapshot' $OPIEDIR/include/qpe/version.h |
25 | then | 25 | then |
26 | VERSION_CVS="$(date +%Y%m%d)" | 26 | VERSION_CVS="$(date +%Y%m%d)" |
27 | SUB_VERSION=$VERSION_CVS | 27 | SUB_VERSION=$VERSION_CVS |
28 | else | 28 | else |
29 | VERSION_CVS="" | 29 | VERSION_CVS="" |
30 | fi | 30 | fi |
31 | 31 | ||
32 | QPE_VERSION=$VERSION_MAJ.$VERSION_MIN.$VERSION_PAT | 32 | QPE_VERSION=$VERSION_MAJ.$VERSION_MIN.$VERSION_PAT |
33 | 33 | ||
34 | ARCH=arm | 34 | ARCH=arm |
35 | STRIP=arm-linux-strip | 35 | STRIP=arm-linux-strip |
36 | STRIP_FILES="*ARM*not stripped" | 36 | STRIP_FILES="*ARM*not stripped" |
37 | 37 | ||
38 | TDIR=/tmp/ipk$$ | 38 | TDIR=/tmp/ipk$$ |
39 | DATADIR=$TDIR | 39 | DATADIR=$TDIR |
40 | CTRLDIR=$TDIR/CONTROL | 40 | CTRLDIR=$TDIR/CONTROL |
41 | 41 | ||
42 | IMAGEDIR= | 42 | IMAGEDIR= |
43 | VERB= | 43 | VERB= |
44 | LIST= | 44 | LIST= |
45 | RPM= | 45 | RPM= |
46 | 46 | ||
47 | while [ $# -ne 0 ] | 47 | while [ $# -ne 0 ] |
48 | do | 48 | do |
49 | case "$1" in | 49 | case "$1" in |
50 | -v) | 50 | -v) |
51 | VERB=1 | 51 | VERB=1 |
52 | echo >&2 "Packaging for version $VERSION_MAJ.$VERSION_MIN.$VERSION_PAT$VERSION_CVS" | 52 | echo >&2 "Packaging for version $VERSION_MAJ.$VERSION_MIN.$VERSION_PAT$VERSION_CVS" |
53 | ;; -l) | 53 | ;; -l) |
54 | LIST=1 | 54 | LIST=1 |
55 | ;; -i) | 55 | ;; -i) |
56 | shift | 56 | shift |
57 | IMAGEDIR=$1 | 57 | IMAGEDIR=$1 |
58 | DATADIR=$IMAGEDIR | 58 | DATADIR=$IMAGEDIR |
59 | mkdir -p $IMAGEDIR | 59 | mkdir -p $IMAGEDIR |
60 | ;; -rpm) | 60 | ;; -rpm) |
61 | if [ "$OPIEDIR" != "/opt/Qtopia" ] | 61 | if [ "$OPIEDIR" != "/opt/Qtopia" ] |
62 | then | 62 | then |
63 | echo >&2 '$OPIEDIR is not the standard /usr/Qtopia directory.' | 63 | echo >&2 '$OPIEDIR is not the standard /usr/Qtopia directory.' |
64 | sleep 1 | 64 | sleep 1 |
65 | #exit 1 | 65 | #exit 1 |
66 | fi | 66 | fi |
67 | RPM=1 | 67 | RPM=1 |
68 | ;; -arch) | 68 | ;; -arch) |
69 | shift | 69 | shift |
70 | ARCH=$1 | 70 | ARCH=$1 |
71 | STRIP= | 71 | STRIP= |
72 | STRIP_FILES= | 72 | STRIP_FILES= |
73 | ;; /*) | 73 | ;; /*) |
74 | FILES="$FILES $1" | 74 | FILES="$FILES $1" |
75 | ;; *) | 75 | ;; *) |
76 | FILES="$FILES $PWD/$1" | 76 | FILES="$FILES $PWD/$1" |
77 | esac | 77 | esac |
78 | shift | 78 | shift |
79 | done | 79 | done |
80 | 80 | ||
81 | 81 | ||
82 | if [ -z "$FILES" ] | 82 | if [ -z "$FILES" ] |
83 | then | 83 | then |
84 | FILES=`find $OPIEDIR -name "*.control" -print` | 84 | FILES=`find $OPIEDIR -name "*.control" -print` |
85 | fi | 85 | fi |
86 | 86 | ||
87 | RDIR=$PWD | 87 | RDIR=$PWD |
88 | cd $OPIEDIR | 88 | cd $OPIEDIR |
89 | 89 | ||
90 | for i in $FILES | 90 | for i in $FILES |
91 | do | 91 | do |
92 | rm -rf $TDIR | 92 | rm -rf $TDIR |
93 | 93 | ||
94 | mkdir -p $DATADIR | 94 | mkdir -p $DATADIR |
95 | mkdir -p $CTRLDIR | 95 | mkdir -p $CTRLDIR |
96 | 96 | ||
97 | packagename=${i##*/}; packagename=${packagename%.control} | 97 | packagename=${i##*/}; packagename=${packagename%.control} |
98 | version=$(eval echo '"'$(sed -n -e "s/^Version: *//p" $i)'"') | 98 | version=$(eval echo '"'$(sed -n -e "s/^Version: *//p" $i)'"') |
99 | depends=$(eval echo '"'$(sed -n -e "s/^Depends: *//p" $i)'"') | 99 | depends=$(eval echo '"'$(sed -n -e "s/^Depends: *//p" $i)'"') |
100 | files=$(eval echo $(sed -n -e "s/^Files://p" $i)) | 100 | files=$(eval echo $(sed -n -e "s/^Files://p" $i)) |
101 | arch=$(eval echo $(sed -n -e "s/^Arch://p" $i)) | 101 | arch=$(eval echo $(sed -n -e "s/^Arch://p" $i)) |
102 | section=$(sed -n -e "s/^Section: *//p" $i) | 102 | section=$(sed -n -e "s/^Section: *//p" $i) |
103 | provides=$(sed -n -e "s/^Provides: *//p" $i) | 103 | provides=$(sed -n -e "s/^Provides: *//p" $i) |
104 | conflicts=$(sed -n -e "s/^Conflicts: *//p" $i) | 104 | conflicts=$(sed -n -e "s/^Conflicts: *//p" $i) |
105 | license=$(sed -n -e "s/^License: *//p" $i) | 105 | license=$(sed -n -e "s/^License: *//p" $i) |
106 | summary=$(sed -n -e "s/^Description: *//p" $i) | 106 | summary=$(sed -n -e "s/^Description: *//p" $i) |
107 | package=${packagename}_${version}_$ARCH | 107 | package=${packagename}_${version}_$ARCH |
108 | ERROR= | 108 | ERROR= |
109 | if [ -z "$files" ] | 109 | if [ -z "$files" ] |
110 | then | 110 | then |
111 | mkdir -p $DATADIR/usr/share/doc/$packagename | 111 | mkdir -p $DATADIR/usr/share/doc/$packagename |
112 | else | 112 | else |
113 | for f in $files | 113 | for f in $files |
114 | do | 114 | do |
115 | if [ -d $f ] | 115 | if [ -d $f ] |
116 | then | 116 | then |
117 | ffiles=$(find $f -type f -o -type b -o -type c -o -type l) | 117 | ffiles=$(find $f -type f -o -type b -o -type c -o -type l) |
118 | else | 118 | else |
119 | ffiles=$f | 119 | ffiles=$f |
120 | fi | 120 | fi |
121 | for ff in $ffiles | 121 | for ff in $ffiles |
122 | do | 122 | do |
123 | case $ff in | 123 | case $ff in |
124 | */CVS/*) | 124 | */CVS/*) |
125 | continue | 125 | continue |
126 | ;;*~) | 126 | ;;*~) |
127 | continue | 127 | continue |
128 | ;;*.control) | 128 | ;;*.control) |
129 | continue | 129 | continue |
130 | ;; $QTDIR/*) | 130 | ;; $QTDIR/*) |
131 | BASE=$(dirname /opt/QtPalmtop/${ff#$QTDIR/}) | 131 | BASE=$(dirname /opt/QtPalmtop/${ff#$QTDIR/}) |
132 | ;; etc/*.d/*) | 132 | ;; etc/*.d/*) |
133 | BASE=$(dirname /$ff) | 133 | BASE=$(dirname /$ff) |
134 | ;; ipaq/*) | 134 | ;; ipaq/*) |
135 | BASE=$(dirname ${ff#ipaq}) | 135 | BASE=$(dirname ${ff#ipaq}) |
136 | ;; *) | 136 | ;; *) |
137 | # For SHARP ROM compatibility. Should change to Qtopia. | 137 | # For SHARP ROM compatibility. Should change to Qtopia. |
138 | BASE=/opt/QtPalmtop/$(dirname $ff) | 138 | BASE=/opt/QtPalmtop/$(dirname $ff) |
139 | esac | 139 | esac |
140 | 140 | ||
141 | if [ -f $ff -o -b $ff -o -c $ff ] | 141 | if [ -f $ff -o -b $ff -o -c $ff ] |