Gentoo Archives: gentoo-user

From: Walter Dnes <waltdnes@××××××××.org>
To: Gentoo Users List <gentoo-user@l.g.o>
Subject: [gentoo-user] I got midori working, including Flash
Date: Mon, 15 Oct 2012 13:54:59
Message-Id: 20121015135311.GB11400@waltdnes.org
1 I don't want to turn this into a Firefox-slagging thread; this is more
2 along the lines of presenting a viable alternative browser.
3
4 And it's much easier on Gentoo than most other distros. The problem
5 most people run into is that Flash video doesn't work on midori. The
6 root cause is that midori defaults to building with gtk+:3, and
7 Schlockwave Trash is a gtk:2 binary. Apparently, it's an incompatable
8 ABI. Webkit2 is supposed to fix this problem when it comes out... one
9 of these days. But in the meantime we're out of luck... no we're not.
10 I looked at the midori ebuild and noticed...
11
12 deprecated? (
13 net-libs/webkit-gtk:2
14 x11-libs/gtk+:2
15 unique? ( dev-libs/libunique:1 )
16 )
17 !deprecated? (
18 net-libs/webkit-gtk:3
19 x11-libs/gtk+:3
20 unique? ( dev-libs/libunique:3 )
21 )
22
23 I built midori with the "deprecated" USE flag, and Youtube and other
24 Flash stuff works just fine thank you. Here's the script I use to
25 launch midori...
26
27 #!/bin/bash
28 export MOZ_PLUGIN_PATH="/usr/lib/nsbrowser/plugins"
29 midori
30
31 The MOZ_PLUGIN_PATH environmental variable appears to be necessary.
32 Modify as appropriate on your machine. If you run into SSL errors,
33 export another variable before launching...
34 export WEBKIT_IGNORE_SSL_ERRORS="1"
35
36 I'm still testing it, so no guarantees midori fully works, but I want
37 an alternative to Firefox.
38
39 --
40 Walter Dnes <waltdnes@××××××××.org>
41 I don't run "desktop environments"; I run useful applications