blob: 3ad8a0f27019b85fd094fabff227dfc20839b54a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DEPENDS = "gtk+ startup-notification dbus dbus-glib"
SRCREV = "2087"
PV = "0.1.0+svnr${SRCPV}"
PR = "r0"
SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=matchbox-window-manager-2;proto=http \
file://fix-timeout-handler-free.patch;apply=yes \
file://makefile-vars.patch;apply=yes;striplevel=0 \
"
S = "${WORKDIR}/matchbox-window-manager-2"
inherit autotools pkgconfig
# FIXME: --enable-glib-main-loop causes hard grab-freeze
EXTRA_OECONF = "--with-gtk --with-pango --enable-matchbox-remote --enable-png-theme --enable-maemo-manager"
do_install_append() {
mv ${D}${bindir}/matchbox-remote ${D}${bindir}/matchbox-remote-2
# Without libmatchbox there are no includes and no libraries, just empty directories:
rm -r ${D}${includedir} ${D}${libdir}
}
FILES_${PN} += "${datadir}/themes/*"
|