-rw-r--r-- | library/opie-base.control | 2 | ||||
-rwxr-xr-x | library/opie-base.postinst | 11 | ||||
-rwxr-xr-x | library/opie-base.prerm | 5 | ||||
-rwxr-xr-x | mkipks | 2 |
4 files changed, 17 insertions, 3 deletions
diff --git a/library/opie-base.control b/library/opie-base.control index 2441809..41b0e2e 100644 --- a/library/opie-base.control +++ b/library/opie-base.control | |||
@@ -1,7 +1,7 @@ | |||
1 | Files: etc/colors root/etc/init.d/opie root/etc/rc2.d/S98opie bin/opie-reorgfiles $QTDIR/lib/libqpe.so.1 $QTDIR/lib/libqpe.so.1.5 $QTDIR/lib/libqpe.so.1.5.0 apps/*/.directory etc/mime.types apps/Settings/quit.desktop pics/logo/* | 1 | Files: etc/colors root/etc/init.d/opie bin/opie-reorgfiles $QTDIR/lib/libqpe.so.1 $QTDIR/lib/libqpe.so.1.5 $QTDIR/lib/libqpe.so.1.5.0 apps/*/.directory etc/mime.types apps/Settings/quit.desktop pics/logo/* |
2 | Priority: required | 2 | Priority: required |
3 | Section: opie/system | 3 | Section: opie/system |
4 | Maintainer: Project Opie <opie@handhelds.org> | 4 | Maintainer: Project Opie <opie@handhelds.org> |
5 | Architecture: arm | 5 | Architecture: arm |
6 | Version: $QPE_VERSION-$SUB_VERSION.2 | 6 | Version: $QPE_VERSION-$SUB_VERSION.2 |
7 | Provides: qpe-base | 7 | Provides: qpe-base |
diff --git a/library/opie-base.postinst b/library/opie-base.postinst new file mode 100755 index 0000000..1d50a99 --- a/dev/null +++ b/library/opie-base.postinst | |||
@@ -0,0 +1,11 @@ | |||
1 | #/bin/sh | ||
2 | |||
3 | ln -sf ../init.d/opie /etc/rc0.d/K98opie | ||
4 | ln -sf ../init.d/opie /etc/rc1.d/K98opie | ||
5 | ln -sf ../init.d/opie /etc/rc6.d/K98opie | ||
6 | ln -sf ../init.d/opie /etc/rc2.d/S98opie | ||
7 | ln -sf ../init.d/opie /etc/rc3.d/S98opie | ||
8 | ln -sf ../init.d/opie /etc/rc4.d/S98opie | ||
9 | ln -sf ../init.d/opie /etc/rc5.d/S98opie | ||
10 | |||
11 | exit 0 | ||
diff --git a/library/opie-base.prerm b/library/opie-base.prerm new file mode 100755 index 0000000..664160b --- a/dev/null +++ b/library/opie-base.prerm | |||
@@ -0,0 +1,5 @@ | |||
1 | #/bin/sh | ||
2 | |||
3 | find /etc -name [SK][0-9][0-9]opie | xargs rm -f | ||
4 | |||
5 | exit 0 | ||
@@ -1,14 +1,12 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | QTE_VERSION=2.3.4 | 3 | QTE_VERSION=2.3.4 |
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 $OPIEDIR/etc/rc2.d | ||
8 | ln -sf ../init.d/opie $OPIEDIR/etc/rc2.d/S98opie | ||
9 | 7 | ||
10 | mkdir -p $OPIEDIR/etc/rcS.d | 8 | mkdir -p $OPIEDIR/etc/rcS.d |
11 | ln -sf ../init.d/bootsplash $OPIEDIR/etc/rcS.d/S01bootsplash | 9 | ln -sf ../init.d/bootsplash $OPIEDIR/etc/rcS.d/S01bootsplash |
12 | 10 | ||
13 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) | 11 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) |
14 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION ".*\.\([0-9]*\)\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) | 12 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION ".*\.\([0-9]*\)\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) |