diff options
author | erich@mine.nu <erich@mine.nu> | 2004-04-11 17:26:21 +0000 |
---|---|---|
committer | erich@mine.nu <erich@mine.nu> | 2004-04-11 17:26:21 +0000 |
commit | 5a83f982c084579a837350d33a4457410499c383 (patch) | |
tree | ca94ca7de16c6bfd85c4f52a3e8561897233756d /matchbox-wm | |
parent | e05bab5e42dd28da8755b28d1581f6e529f8d27e (diff) |
patch adds postinst and postrm scripts for matchbox-wm, and turns on a couple of extra features (patch from pb_)
BKrev: 40797fbdjoMv8cpM-l8cfJPh7F-Evg
Diffstat (limited to 'matchbox-wm')
-rw-r--r-- | matchbox-wm/matchbox-wm_0.8.1.oe | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/matchbox-wm/matchbox-wm_0.8.1.oe b/matchbox-wm/matchbox-wm_0.8.1.oe index 071ac2fc41..158a11b707 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 +} |