blob: 9d29348f2b9d9a8945da84a4a8d2c6ccf66cea24 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/dwb/dwb-2013.03.30.ebuild,v 1.3 2014/07/06 13:23:12 mgorny Exp $
EAPI=5
inherit toolchain-funcs eutils
DESCRIPTION="Dynamic web browser based on WebKit and GTK+"
HOMEPAGE="http://portix.bitbucket.org/dwb/"
SRC_URI="https://www.bitbucket.org/portix/dwb/downloads/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="examples gtk3"
RDEPEND=">=net-libs/libsoup-2.32:2.4
dev-libs/json-c
net-libs/gnutls
!gtk3? (
>=net-libs/webkit-gtk-1.8.0:2
x11-libs/gtk+:2
)
gtk3? (
>=net-libs/webkit-gtk-1.8.0:3
x11-libs/gtk+:3
)"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${P}-verbose-build.patch
epatch "${FILESDIR}"/${P}-json-c.patch
sed -i '/^CFLAGS += -\(pipe\|g\|O2\)/d' config.mk || die
}
src_compile() {
local myconf
use gtk3 && myconf+=" GTK=3"
# uclibc and other systems don't have execinfo.h (bug #465170)
if ! (echo '#include <execinfo.h>' | $(tc-getCC) -E - &>/dev/null) ; then
myconf+=" WITHOUT_EXECINFO=1"
fi
emake CC="$(tc-getCC)" ${myconf}
}
src_install() {
default
if use examples ; then
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}
|