blob: 4a9096c1cc85e18446dfff5c9fd3e62e08ce3f0f (
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
|
# 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.2_p20080604.ebuild,v 1.1 2008/06/04 13:36:01 yngwin Exp $
EAPI=1
inherit eutils qt4
DESCRIPTION="A cross-platform Qt4 WebKit browser"
HOMEPAGE="http://arora.googlecode.com/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
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 || die "qmake failed"
emake || die "make failed"
}
src_install() {
dobin arora
newicon src/data/browser.svg arora.svg
make_desktop_entry arora Arora arora.svg
}
|