blob: d8dd0b9689a29f12b01a00a8b527b04da29b437a (
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
|
# Copyright 1999-2009 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.9 2009/01/04 16:18:05 hanno Exp $
inherit git eutils multilib
DESCRIPTION="A lightweight web browser"
HOMEPAGE="http://www.twotoasts.de/index.php?/pages/midori_summary.html"
EGIT_REPO_URI="git://git.xfce.org/kalikiana/midori"
EGIT_PROJECT="midori"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="nls soup sqlite"
DEPEND="x11-libs/gtk+
net-libs/webkit-gtk
nls? ( sys-devel/gettext )
soup? ( net-libs/libsoup )
sqlite? ( dev-db/sqlite )"
pkg_setup() {
ewarn "Note: this software is not yet in a too mature status so expect some minor things to break"
}
src_compile() {
CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" ./waf --prefix="/usr/" --libdir="/usr/$(get_libdir)/" configure || die "waf configure failed."
./waf build || die "waf build failed."
}
src_install() {
DESTDIR=${D} ./waf install || die "waf install failed."
dodoc AUTHORS ChangeLog INSTALL TODO
}
|