diff options
author | Tim Ansell <mithro@mithis.com> | 2004-11-25 11:30:58 +0000 |
---|---|---|
committer | Tim Ansell <mithro@mithis.com> | 2004-11-25 11:30:58 +0000 |
commit | 9918acbe5451abe65b61363ce851b8b16e653062 (patch) | |
tree | 8784aa5795d0b756fb4a5930bcb173ba35e1f195 /irda-utils | |
parent | 2220f0ca2b02a634cad48d563996fbde726f5e69 (diff) |
Merge bk://oe-devel@oe-devel.bkbits.net/packages
into mithis.com:/cc/packages
2004/11/25 21:26:24+10:30 mithis.com!mithro
irda now works out of the box on C700 and C860.
2004/11/25 16:00:21+10:30 mithis.com!mithro
Merge bk://oe-devel@oe-devel.bkbits.net/packages
into mithis.com:/cc/packages
2004/11/22 06:03:48+10:30 com[tim]!mithro
packages.cow7.diffs
BKrev: 41a5c272IuQI7xqgYGRkklwBvdUGNw
Diffstat (limited to 'irda-utils')
-rw-r--r-- | irda-utils/files/init | 0 | ||||
-rw-r--r-- | irda-utils/irda-utils_0.9.16.oe | 23 |
2 files changed, 22 insertions, 1 deletions
diff --git a/irda-utils/files/init b/irda-utils/files/init new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/irda-utils/files/init diff --git a/irda-utils/irda-utils_0.9.16.oe b/irda-utils/irda-utils_0.9.16.oe index 36c1e11cfe..f9aec187a3 100644 --- a/irda-utils/irda-utils_0.9.16.oe +++ b/irda-utils/irda-utils_0.9.16.oe @@ -3,10 +3,12 @@ DESCRIPTION = "Provides common files needed to use IrDA. \ IrDA allows communication over Infrared with other devices \ such as phones and laptops." LICENSE = "GPL" +PR="r1" SRC_URI = "${SOURCEFORGE_MIRROR}/irda/irda-utils-${PV}.tar.gz \ file://configure.patch;patch=1 \ - file://m4.patch;patch=1" + file://m4.patch;patch=1 \ + file://init" inherit autotools @@ -19,4 +21,23 @@ do_install () { install -d ${D}${sbindir} oe_runmake -C irattach ROOT="${D}" install oe_runmake -C irdaping ROOT="${D}" 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 } |