| 1 | # Copyright 1999-2011 Gentoo Foundation |
1 | # Copyright 1999-2011 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/www-client/midori/midori-9999.ebuild,v 1.36 2011/10/28 20:08:10 ssuominen Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/www-client/midori/midori-9999.ebuild,v 1.37 2011/11/11 16:35:40 angelos Exp $ |
| 4 | |
4 | |
| 5 | EAPI=3 |
5 | EAPI=4 |
| 6 | inherit eutils fdo-mime gnome2-utils python waf-utils git-2 |
6 | inherit eutils fdo-mime gnome2-utils python waf-utils git-2 |
| 7 | |
7 | |
| 8 | DESCRIPTION="A lightweight web browser based on WebKitGTK+" |
8 | DESCRIPTION="A lightweight web browser based on WebKitGTK+" |
| 9 | HOMEPAGE="http://www.twotoasts.de/index.php?/pages/midori_summary.html" |
9 | HOMEPAGE="http://www.twotoasts.de/index.php?/pages/midori_summary.html" |
| 10 | EGIT_REPO_URI="git://git.xfce.org/apps/${PN}" |
10 | EGIT_REPO_URI="git://git.xfce.org/apps/${PN}" |
| 11 | |
11 | |
| 12 | LICENSE="LGPL-2.1 MIT" |
12 | LICENSE="LGPL-2.1 MIT" |
| 13 | SLOT="0" |
13 | SLOT="0" |
| 14 | KEYWORDS="" |
14 | KEYWORDS="" |
| 15 | IUSE="doc gnome idn libnotify nls +unique" |
15 | IUSE="doc gnome libnotify nls +unique" |
| 16 | |
16 | |
| 17 | RDEPEND="dev-libs/libxml2:2 |
17 | RDEPEND="dev-libs/libxml2:2 |
| 18 | >=dev-db/sqlite-3.0 |
18 | dev-db/sqlite:3 |
| 19 | >=net-libs/libsoup-2.25.2:2.4 |
19 | net-libs/libsoup:2.4 |
| 20 | net-libs/webkit-gtk:2 |
20 | net-libs/webkit-gtk:2 |
| 21 | x11-libs/gtk+:2 |
21 | x11-libs/gtk+:2 |
| 22 | x11-libs/libXScrnSaver |
22 | x11-libs/libXScrnSaver |
| 23 | gnome? ( net-libs/libsoup-gnome:2.4 ) |
23 | gnome? ( net-libs/libsoup-gnome:2.4 ) |
| 24 | idn? ( net-dns/libidn ) |
|
|
| 25 | libnotify? ( x11-libs/libnotify ) |
24 | libnotify? ( x11-libs/libnotify ) |
| 26 | unique? ( dev-libs/libunique:1 )" |
25 | unique? ( dev-libs/libunique:1 )" |
| 27 | DEPEND="${RDEPEND} |
26 | DEPEND="${RDEPEND} |
| 28 | || ( dev-lang/python:2.7 dev-lang/python:2.6 ) |
27 | || ( dev-lang/python:2.7 dev-lang/python:2.6 ) |
| 29 | dev-lang/vala:0.10 |
28 | dev-lang/vala:0.10 |
| … | |
… | |
| 45 | VALAC="$(type -p valac-0.10)" \ |
44 | VALAC="$(type -p valac-0.10)" \ |
| 46 | waf-utils_src_configure \ |
45 | waf-utils_src_configure \ |
| 47 | --disable-docs \ |
46 | --disable-docs \ |
| 48 | --enable-addons \ |
47 | --enable-addons \ |
| 49 | $(use_enable doc apidocs) \ |
48 | $(use_enable doc apidocs) \ |
| 50 | $(use_enable idn libidn) \ |
|
|
| 51 | $(use_enable libnotify) \ |
49 | $(use_enable libnotify) \ |
| 52 | $(use_enable nls) \ |
50 | $(use_enable nls) \ |
| 53 | $(use_enable unique) |
51 | $(use_enable unique) |
| 54 | } |
52 | } |
| 55 | |
53 | |