blob: d8a9ba5fa2c52bf5fc71de0e4678a1f3152dc341 (
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
|
DESCRIPTION = "Standard Gtk+ theme for the OpenMoko distribution"
SECTION = "openmoko/base"
PV = "0.0+svn${SRCDATE}"
PR = "r3"
inherit openmoko-base
SRC_URI = "${OPENMOKO_MIRROR}/src/target/${OPENMOKO_RELEASE}/artwork;module=themes;proto=https"
S = "${WORKDIR}"
dirs = "themes/openmoko-standard"
do_install() {
find ${WORKDIR} -name ".svn" | xargs rm -rf
install -d ${D}${datadir}/themes/
for i in ${dirs}; do
cp -fpPR ${WORKDIR}/$i ${D}${datadir}/themes/
done
install -d ${D}${sysconfdir}/gtk-2.0
echo 'include "${datadir}/themes/openmoko-standard/gtk-2.0/gtkrc"' >> ${D}${sysconfdir}/gtk-2.0/gtkrc
}
FILES_${PN} = "${datadir} ${sysconfdir}"
|