diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-10-12 19:19:46 +0000 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-10-12 19:19:46 +0000 |
commit | 873bae700614a4ab543d7dfd2ae18c8e50e1a757 (patch) | |
tree | 206b633f9dc976825d6e9827f07679f0dcbcb7b0 /packages | |
parent | 30160614d2f9522f898f566f0defd26e2e3d6c82 (diff) |
ivman: oops recipe got doubled, fix it
Diffstat (limited to 'packages')
-rw-r--r-- | packages/ivman/ivman_0.6.14.bb | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/packages/ivman/ivman_0.6.14.bb b/packages/ivman/ivman_0.6.14.bb index 8ee4a02049..5c0f1cc906 100644 --- a/packages/ivman/ivman_0.6.14.bb +++ b/packages/ivman/ivman_0.6.14.bb @@ -29,34 +29,3 @@ pkg_postinst_${PN} () { pkg_postrm_${PN} () { deluser ivman || true } -DESCRIPTION = "Daemon to mount/unmount devices, based on info from HAL" -HOMEPAGE = "http://ivman.sf.net" -LICENSE = "GPLv2" -PR = "r0" - -DEPENDS = "hal libxml2" -RDEPENDS = "hal pmount-hal" - -SRC_URI = "${SOURCEFORGE_MIRROR}/ivman/${P}.tar.bz2 \ - file://ivman-0.6-hotpluggable.patch;patch=1 \ - file://ivman-launch.patch;patch=1 " - -inherit autotools - -# Add user ivman into group plugdev -pkg_postinst_${PN} () { - # can't do this offline - if [ "x$D" != "x" ]; then - exit 1 - fi - - grep "^ivman:" /etc/passwd > /dev/null || \ - adduser --disabled-password --system --home /dev/null \ - --no-create-home --ingroup plugdev -s /bin/false \ - -g "IVMAN" ivman - /etc/init.d/populate-volatile.sh update -} - -pkg_postrm_${PN} () { - deluser ivman || true -} |