summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-12-01 11:53:04 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-12-01 11:53:04 +0000
commitc596e52995f975296a6a1b3f6c75b9feafdee9f3 (patch)
tree07f17a3cfefb903441558522ce9418eae6fb5582
parent46ab5ef8d343917632cae114a43f6bf840c1a7aa (diff)
use update-rc.d oeclass in irda-utils - better than calling it manual
BKrev: 41adb0a0gaocipSe16RZ7LCProeEcQ
-rw-r--r--irda-utils/irda-utils_0.9.16.oe25
1 files changed, 6 insertions, 19 deletions
diff --git a/irda-utils/irda-utils_0.9.16.oe b/irda-utils/irda-utils_0.9.16.oe
index f9aec187a3..1b2272939e 100644
--- a/irda-utils/irda-utils_0.9.16.oe
+++ b/irda-utils/irda-utils_0.9.16.oe
@@ -1,16 +1,19 @@
-SECTION = "base"
DESCRIPTION = "Provides common files needed to use IrDA. \
IrDA allows communication over Infrared with other devices \
such as phones and laptops."
+SECTION = "base"
LICENSE = "GPL"
-PR="r1"
+PR = "r2"
SRC_URI = "${SOURCEFORGE_MIRROR}/irda/irda-utils-${PV}.tar.gz \
file://configure.patch;patch=1 \
file://m4.patch;patch=1 \
file://init"
-inherit autotools
+inherit autotools update-rc.d
+
+INITSCRIPT_NAME = "irattach"
+INITSCRIPT_PARAMS = "defaults 20"
do_compile () {
oe_runmake -e -C irattach
@@ -25,19 +28,3 @@ do_install () {
install -d ${D}/${sysconfdir}/init.d
install -m 0755 ${WORKDIR}/init ${D}/etc/init.d/irattach
}
-
-pkg_postinst_irda-utils() {
-if test "x$D" != "x"; then
- exit 1
-else
- update-rc.d irattach defaults
-fi
-}
-
-pkg_postrm_irda-utils() {
-if test "x$D" != "x"; then
- exit 1
-else
- update-rc.d -f irattach remove
-fi
-}