diff options
author | Mihai Prica <mihai.prica@intel.com> | 2013-08-27 14:12:05 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-28 00:51:45 +0100 |
commit | 4fd453ef7cd2e7e2b1d72284440dac574603ed27 (patch) | |
tree | c64d5665c1c5284d2705a92320648874fa6d1cb8 /meta/recipes-sato | |
parent | 5aa0ececfca3af586c7ab157993443f740c8ced9 (diff) | |
download | poky-4fd453ef7cd2e7e2b1d72284440dac574603ed27.tar.gz |
midori: add version 0.5.5 from meta-gnome
Midori is a lightweight web browser that uses the WebKit
rendering engine and the GTK interface. This allows a more
easy testing of the functionality of webkit-gtk component
that is already in oe-core.
(From OE-Core rev: 88d9d7e47dedd9bfa26da860e6ff77ee5206d9e8)
Signed-off-by: Mihai Prica <mihai.prica@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato')
-rw-r--r-- | meta/recipes-sato/midori/midori_0.5.5.bb | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/meta/recipes-sato/midori/midori_0.5.5.bb b/meta/recipes-sato/midori/midori_0.5.5.bb new file mode 100644 index 0000000000..e545753814 --- /dev/null +++ b/meta/recipes-sato/midori/midori_0.5.5.bb | |||
@@ -0,0 +1,43 @@ | |||
1 | DESCRIPTION = "Midori is a lightweight web browser." | ||
2 | HOMEPAGE = "http://www.twotoasts.de/index.php?/pages/midori_summary.html" | ||
3 | LICENSE = "LGPLv2.1" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" | ||
5 | DEPENDS = "webkit-gtk libsoup-2.4 openssl python-native python-docutils-native librsvg-native libnotify libunique" | ||
6 | |||
7 | SRC_URI = "http://www.midori-browser.org/downloads/${PN}_${PV}_all_.tar.bz2 \ | ||
8 | " | ||
9 | |||
10 | SRC_URI[md5sum] = "b99e87d4b73a4732ed1c1e591f0242ac" | ||
11 | SRC_URI[sha256sum] = "ca69382a285222a86028abebd73fed1976735883027ff0adc094b627789bbd62" | ||
12 | |||
13 | inherit gtk-icon-cache pkgconfig vala pythonnative | ||
14 | |||
15 | do_configure() { | ||
16 | sed -i -e 's:, shell=False::g' -e s:/usr/X11R6/include::g -e s:/usr/X11R6/lib::g wscript | ||
17 | ./configure \ | ||
18 | --prefix=${prefix} \ | ||
19 | --bindir=${bindir} \ | ||
20 | --sbindir=${sbindir} \ | ||
21 | --libexecdir=${libexecdir} \ | ||
22 | --datadir=${datadir} \ | ||
23 | --sysconfdir=${sysconfdir} \ | ||
24 | --sharedstatedir=${sharedstatedir} \ | ||
25 | --localstatedir=${localstatedir} \ | ||
26 | --libdir=${libdir} \ | ||
27 | --includedir=${includedir} \ | ||
28 | --infodir=${infodir} \ | ||
29 | --mandir=${mandir} \ | ||
30 | --disable-gtk3 \ | ||
31 | --disable-zeitgeist \ | ||
32 | } | ||
33 | |||
34 | PARALLEL_MAKE = "" | ||
35 | TARGET_CC_ARCH += "${LDFLAGS}" | ||
36 | |||
37 | do_install() { | ||
38 | oe_runmake DESTDIR=${D} install | ||
39 | } | ||
40 | |||
41 | RRECOMMENDS_${PN} += "glib-networking ca-certificates gnome-icon-theme" | ||
42 | |||
43 | FILES_${PN}-dev += "${datadir}/vala/vapi" | ||