diff options
author | Tomas Frydrych <tf@openedhand.com> | 2007-12-21 12:29:04 +0000 |
---|---|---|
committer | Tomas Frydrych <tf@openedhand.com> | 2007-12-21 12:29:04 +0000 |
commit | 4f67e7c86cf7db1c0e41a7d225669d2efd58f609 (patch) | |
tree | a04da117989a7e7609624354c2997349d24d0fe2 | |
parent | 6b3e57c8c085594c820d492110c6dcd5d129a93d (diff) | |
download | openembedded-core-4f67e7c86cf7db1c0e41a7d225669d2efd58f609.tar.gz openembedded-core-4f67e7c86cf7db1c0e41a7d225669d2efd58f609.tar.bz2 openembedded-core-4f67e7c86cf7db1c0e41a7d225669d2efd58f609.zip |
matchbox-wm-2 recipe
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3368 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/packages/matchbox-wm-2/matchbox-wm-2_svn.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/packages/matchbox-wm-2/matchbox-wm-2_svn.bb b/meta/packages/matchbox-wm-2/matchbox-wm-2_svn.bb new file mode 100644 index 0000000000..1584f3d585 --- /dev/null +++ b/meta/packages/matchbox-wm-2/matchbox-wm-2_svn.bb @@ -0,0 +1,33 @@ +SECTION = "x11/wm" +DESCRIPTION = "Matchbox window manager" +LICENSE = "GPL" +DEPENDS = "virtual/libx11 libxext libxrender startup-notification expat gconf pango libxdamage libxcomposite" + +PV = "0.0+svnr${SRCREV}" +PR = "r1" + +SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=matchbox-window-manager-2;proto=http \ + " + +S = "${WORKDIR}/matchbox-window-manager-2" + +inherit autotools pkgconfig update-alternatives + +ALTERNATIVE_NAME = "x-window-manager" +ALTERNATIVE_LINK = "${bindir}/x-window-manager" +ALTERNATIVE_PATH = "${bindir}/matchbox-session" +ALTERNATIVE_PRIORITY = "10" + +FILES_${PN} = "${bindir}/* \ + ${datadir}/matchbox-2 \ + ${sysconfdir}/matchbox-2 \ + ${datadir}/themes/*" + +EXTRA_OECONF = "--enable-debug \ + --enable-compositing-manager \ + " + +do_install_append () { + cd ${D}${bindir} + ln -s matchbox-window-manager-2-simple matchbox-window-manager +} |