aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gtk-webcore
diff options
context:
space:
mode:
authorThomas Zimmermann <zimmermann@vdm-design.de>2009-09-16 16:06:07 +0000
committerKlaus Kurzmann <mok@fluxnetz.de>2009-09-16 21:28:51 +0200
commit4dca81d597c915396276f13d05b9d0ff4216c90b (patch)
tree394133f39e833d825f4835f22eb629319ab03559 /recipes/gtk-webcore
parent38dd42000ab4cd590a97a79e270afa9d80b75672 (diff)
downloadopenembedded-4dca81d597c915396276f13d05b9d0ff4216c90b.tar.gz
Midori: add fullscreentoggle to toolbar
Signed-off-by: Klaus Kurzmann <mok@fluxnetz.de>
Diffstat (limited to 'recipes/gtk-webcore')
-rw-r--r--recipes/gtk-webcore/midori/config4
-rw-r--r--recipes/gtk-webcore/midori_0.1.10.bb8
2 files changed, 11 insertions, 1 deletions
diff --git a/recipes/gtk-webcore/midori/config b/recipes/gtk-webcore/midori/config
new file mode 100644
index 0000000000..7b6991d063
--- /dev/null
+++ b/recipes/gtk-webcore/midori/config
@@ -0,0 +1,4 @@
+
+[settings]
+enforce-96-dpi=true
+toolbar-items=Back,Forward,ReloadStop,Fullscreen,Location,Panel,
diff --git a/recipes/gtk-webcore/midori_0.1.10.bb b/recipes/gtk-webcore/midori_0.1.10.bb
index d8101d417d..89f4400885 100644
--- a/recipes/gtk-webcore/midori_0.1.10.bb
+++ b/recipes/gtk-webcore/midori_0.1.10.bb
@@ -5,9 +5,10 @@ DEPENDS += "python-native librsvg python-docutils-native"
SRC_URI = "\
http://archive.xfce.org/src/apps/midori/0.1/midori-${PV}.tar.bz2\
file://ua-iphone-0.1.10.patch;patch=1\
+ file://config\
"
-PR = "r1"
+PR = "r2"
CC += "-lstdc++"
@@ -27,3 +28,8 @@ do_configure() {
--mandir=${mandir} \
${EXTRA_OECONF}
}
+
+do_install_append() {
+ install -d ${D}${sysconfdir}/xdg/midori
+ install -m 0644 ${WORKDIR}/config ${D}${sysconfdir}/xdg/midori
+}