blob: 9c06237d513aa75b50d7af4a50799ce20413b1a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "GNOME default webbrowser"
DEPENDS = "libsoup-2.4 gnome-desktop gnome-vfs libgnomeui webkit-gtk iso-codes startup-notification"
RDEPENDS = "gnome-vfs-plugin-http iso-codes"
inherit gnome
EXTRA_OECONF = "--disable-nss --with-engine=webkit --with-distributor-name=${DISTRO}"
do_configure_prepend() {
touch ${S}/gnome-doc-utils.make
sed -i -e s:help::g Makefile.am
}
do_stage () {
autotools_stage_all
}
FILES_${PN} += "${datadir}/icons ${datadir}/dbus-1"
|