blob: 42df0e8c37c32b9bb941b173a1119187c9c6e346 (
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
|
DESCRIPTION = "GNOME utilities"
SECTION = "x11/gnome"
LICENSE = "GPL"
DEPENDS = "gnome-common glib-2.0 gtk+ gconf"
inherit gnome pkgconfig
SRC_URI += "file://no-try-run-strftime.diff;patch=1"
EXTRA_OECONF = "--disable-scrollkeeper"
do_configure_append() {
for i in $(find ${S} -name "Makefile") ; do
sed -i -e s:-Werror::g $i
done
}
do_stage () {
autotools_stage_all
}
FILES_${PN} += "${datadir}/baobab \
${datadir}/gdict-1.0 \
${datadir}/gnome-dictionary \
${datadir}/gnome-screenshot \
"
|