blob: b934e9d8a91aef0382970f935b9609f0d8f8ec1d (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/jumanji/jumanji-9999.ebuild,v 1.8 2013/06/22 12:20:11 xmw Exp $
EAPI=5
inherit eutils savedconfig git-2 toolchain-funcs
DESCRIPTION="highly customizable and functional web browser with minimalistic and space saving interface"
HOMEPAGE="http://pwmt.org/projects/jumanji"
EGIT_REPO_URI="git://pwmt.org/jumanji.git"
EGIT_BRANCH=develop
LICENSE="ZLIB"
SLOT="develop"
KEYWORDS=""
IUSE="+deprecated"
RDEPEND="dev-db/sqlite:3
dev-libs/glib:2
!deprecated? (
dev-libs/girara:3
net-libs/webkit-gtk:3
x11-libs/gtk+:3 )
deprecated? (
dev-libs/girara:2
net-libs/webkit-gtk:2
x11-libs/gtk+:2 )
!${CATEGORY}/${PN}:0"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
use deprecated && \
epatch "${FILESDIR}"/${PN}-0.0.0_p20130103-gtk2.patch
restore_config config.h
}
src_compile() {
emake CC="$(tc-getCC)" SFLAGS="" VERBOSE=1 || \
die "emake failed$(usex savedconfig ",please check the configfile" "")"
}
src_install() {
default
make_desktop_entry ${PN}
save_config config.h
}
|