diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-04-29 13:34:30 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-04-29 13:34:30 +0000 |
commit | dafbe6c9300436dac3a21674f53958a16fb338e8 (patch) | |
tree | f349c55d8f9d3a2247808548506deecc0c9d9523 /packages/freesmartphone | |
parent | cdf928e1bd0916c9e8f5edee7cbb870c0e8cf33e (diff) |
gsm0710muxd svn update to 283, including Marcel Holtmann's patches. Ship init script, but don't attach runlevels to
it (alternative to dbus system activation)
Diffstat (limited to 'packages/freesmartphone')
-rw-r--r-- | packages/freesmartphone/gsm0710muxd_svn.bb | 26 |
1 files changed, 8 insertions, 18 deletions
diff --git a/packages/freesmartphone/gsm0710muxd_svn.bb b/packages/freesmartphone/gsm0710muxd_svn.bb index 09b3b8c4fb..07eac3c919 100644 --- a/packages/freesmartphone/gsm0710muxd_svn.bb +++ b/packages/freesmartphone/gsm0710muxd_svn.bb @@ -2,32 +2,22 @@ DESCRIPTION = "GSM 07.10 muxer userspace daemon" HOMEPAGE = "http://www.freesmartphone.org" AUTHOR = "M. Dietrich" SECTION = "console/network" -DEPENDS = "intltool-native dbus dbus-glib" +DEPENDS = "dbus dbus-glib" RDEPENDS = "dbus dbus-glib" LICENSE = "GPL" -PV = "0.9.0+svnr${SRCREV}" -PR = "r0" +PV = "0.9.1+svnr${SRCREV}" +PR = "r1" SRC_URI = "svn://projects.linuxtogo.org/svn/smartphones/trunk/software;module=gsm0710muxd" S = "${WORKDIR}/gsm0710muxd" inherit autotools +# install init script for people who want to manually +# start/stop it, but don't add runlevels. do_install_append() { - # temp hack - mv -f ${D}${datadir}/dbus-1/system-services/org.freesmartphone.GSM.MUX.service ${D}${datadir}/dbus-1/system-services/org.mobile.mux.service + install -d ${D}${sysconfdir}/init.d + install -m 0755 data/gsm0710muxd ${D}${sysconfdir}/init.d/ } -pkg_postinst_${PN}() { - # can't do this offline - if [ "x$D" != "x" ]; then - exit 1 - fi - # reload dbus configuration files - for i in `pidof dbus-daemon`; do - kill -SIGHUP $i - done -} - -FILES_${PN} += "${datadir}" - +FILES_${PN} += "${datadir} ${sysconfdir}" |