summaryrefslogtreecommitdiff
blob: 4ae3ed39cc227a5b3e932a8cb15095fb9c671fc7 (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
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/arora/arora-0.3.ebuild,v 1.1 2008/08/05 05:32:04 yngwin Exp $

EAPI=1
inherit eutils qt4

DESCRIPTION="A cross-platform Qt4 WebKit browser"
HOMEPAGE="http://arora.googlecode.com/"
SRC_URI="http://arora.googlecode.com/files/${P}.tar.gz"

LICENSE="|| ( GPL-3 GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND=">=x11-libs/qt-webkit-4.4.0:4"
DEPEND="${RDEPEND}"

src_compile() {
	eqmake4 arora.pro PREFIX="${D}/usr" || die "qmake failed"
	emake || die "make failed"
}

src_install() {
	emake DESTDIR="${D}" install
	dodoc AUTHORS ChangeLog README
}