blob: d8b3721ee72ca16a0ba9b50e3fed96aa76b01d75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
SECTION = "x11/wm"
DESCRIPTION = "Matchbox window manager"
LICENSE = "GPL"
DEPENDS = "virtual/libx11 libxext libxrender startup-notification expat gconf pango libxdamage libxcomposite gtk+"
PV = "0.0+svnr${SRCREV}"
PR = "r2"
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 \
--enable-libmatchbox \
--enable-png-theme \
"
do_install_append () {
cd ${D}${bindir}
ln -s matchbox-window-manager-2-simple matchbox-window-manager
}
|