From: erich@mine.nu Date: Sun, 11 Apr 2004 17:26:21 +0000 (+0000) Subject: patch adds postinst and postrm scripts for matchbox-wm, and turns on a couple of... X-Git-Tag: 2.6.0~9778 X-Git-Url: http://code.vuplus.com/gitweb/?a=commitdiff_plain;h=5a83f982c084579a837350d33a4457410499c383;p=vuplus_openembedded patch adds postinst and postrm scripts for matchbox-wm, and turns on a couple of extra features (patch from pb_) BKrev: 40797fbdjoMv8cpM-l8cfJPh7F-Evg --- diff --git a/matchbox-wm/matchbox-wm_0.8.1.oe b/matchbox-wm/matchbox-wm_0.8.1.oe index 071ac2f..158a11b 100644 --- a/matchbox-wm/matchbox-wm_0.8.1.oe +++ b/matchbox-wm/matchbox-wm_0.8.1.oe @@ -1,6 +1,6 @@ DESCRIPTION = "Matchbox window manager" LICENSE = "GPL" -DEPENDS = "virtual/libc libmatchbox x11 xext xcomposite xfixes xdamage xrender" +DEPENDS = "virtual/libc libmatchbox x11 xext xcomposite xfixes xdamage xrender startup-notification expat" SRC_URI = "ftp://ftp.handhelds.org/matchbox/sources/matchbox-window-manager/0.8/matchbox-window-manager-${PV}.tar.bz2 \ file://${FILESDIR}/m4.patch;patch=1" @@ -14,6 +14,12 @@ FILES_${PN} = "${bindir} \ ${datadir}/themes/bluebox/matchbox \ ${datadir}/themes/borillo/matchbox" -EXTRA_OECONF = "--enable-composite" -# --enable-startup-notification -# --enable-expat +EXTRA_OECONF = "--enable-composite --enable-startup-notification --enable-expat" + +pkg_postinst() { +update-alternatives --install /usr/bin/x-window-manager x-window-manager /usr/bin/matchbox-session 10 +} + +pkg_postrm() { +update-alternatives --remove x-window-manager /usr/bin/matchbox-session +}