blob: 38846fecd26f9641cd5bc544f0cded799603e51e (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
DESCRIPTION = "Matrix GUI for Qt Embedded"
HOMEPAGE = "https://gforge.ti.com/gf/project/matrix_gui/"
LICENSE = "BSD"
SECTION = "multimedia"
PRIORITY = "optional"
SRCREV = "58"
PV = "1.0"
PR = "r7+svnr${SRCPV}"
SRC_URI = "svn://gforge.ti.com/svn/matrix_gui/;module=trunk;proto=https;user=anonymous;pswd='' \
file://init \
"
S = "${WORKDIR}/trunk"
INITSCRIPT_NAME = "matrix-gui-e"
INITSCRIPT_PARAMS = "defaults 99"
inherit qt4e update-rc.d
MATRIX_EXTRA_BINS = " \
memInfo \
networkSettings \
runOGLES2Coverflow \
runOGLES2Shaders \
runOGLESChameleonMan \
runOGLESVase \
setopp1 \
setopp2 \
setopp3 \
setopp4 \
standby \
sysSettings \
taskInfo \
"
do_install() {
install -d ${D}/${bindir}
install -m 0755 ${S}/matrix_gui ${D}/${bindir}/matrix_guiE
for i in ${MATRIX_EXTRA_BINS}; do
install -m 0755 ${S}/bin/${i} ${D}/${bindir}
done
install -d ${D}/${datadir}/matrix/html
install -m 0644 ${S}/*.html ${D}/${datadir}/matrix/html/
install -d ${D}/${datadir}/matrix/images
install -m 0644 ${S}/images/*.png ${D}/${datadir}/matrix/images/
install -d ${D}${sysconfdir}/init.d/
install -c -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/matrix-gui-e
}
RRECOMMENDS_${PN} = "qt4-embedded-plugin-mousedriver-tslib"
FILES_${PN} += "${datadir}/matrix/*"
|