blob: d2907e0253c72d38df2062e7835ddf2557703e36 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/midori/midori-9999.ebuild,v 1.25 2011/01/31 21:39:31 ssuominen Exp $
EAPI=2
inherit eutils multilib python xfconf git
DESCRIPTION="A lightweight web browser based on WebKitGTK+"
HOMEPAGE="http://www.twotoasts.de/index.php?/pages/midori_summary.html"
EGIT_REPO_URI="git://git.xfce.org/apps/midori"
EGIT_PROJECT="midori"
SRC_URI=""
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS=""
IUSE="doc gnome +html idn libnotify nls +unique vala"
RDEPEND="libnotify? ( x11-libs/libnotify )
>=net-libs/libsoup-2.25.2
>=net-libs/webkit-gtk-1.1.1
>=dev-db/sqlite-3.0
dev-libs/libxml2
>=x11-libs/gtk+-2.10:2
gnome? ( net-libs/libsoup-gnome )
idn? ( net-dns/libidn )
unique? ( dev-libs/libunique )
vala? ( dev-lang/vala:0 )"
DEPEND="${RDEPEND}
|| ( dev-lang/python:2.7 dev-lang/python:2.6 )
dev-util/intltool
dev-util/pkgconfig
doc? ( dev-util/gtk-doc )
html? ( dev-python/docutils )
nls? ( sys-devel/gettext )"
pkg_setup() {
python_set_active_version 2
}
src_configure() {
strip-linguas -i po
CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" ./waf \
--prefix="/usr/" \
--libdir="/usr/$(get_libdir)" \
--docdir="/usr/share/doc/${PF}/html" \
--disable-docs \
--enable-addons \
$(use_enable doc apidocs) \
$(use_enable html userdocs) \
$(use_enable idn libidn) \
$(use_enable libnotify) \
$(use_enable nls) \
$(use_enable unique) \
$(use_enable vala) \
configure || die
}
src_compile() {
# This is from dev-libs/boost, keep it synced
jobs=$( echo " ${MAKEOPTS} " | \
sed -e 's/ --jobs[= ]/ -j /g' \
-e 's/ -j \([1-9][0-9]*\)/ -j\1/g' \
-e 's/ -j\>/ -j1/g' | \
( while read -d ' ' j ; do if [[ "${j#-j}" = "$j" ]]; then continue; fi;
jobs="${j#-j}"; done; echo ${jobs} ) )
if [[ "${jobs}" != "" ]]; then NUMJOBS="-j"${jobs}; fi;
./waf build ${NUMJOBS} || die
}
src_install() {
DESTDIR=${D} ./waf install || die
dodoc AUTHORS ChangeLog INSTALL TODO || die
}
|