blob: 93fe0439a571e8209b507e5d3c3211ab704a25c5 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-client/qupzilla/qupzilla-1.3.1.ebuild,v 1.1 2012/07/16 12:30:07 yngwin Exp $
EAPI=4
inherit multilib qt4-r2 vcs-snapshot
MY_P="QupZilla%20${PV}"
DESCRIPTION="Qt WebKit web browser"
HOMEPAGE="http://www.qupzilla.com/"
SRC_URI="https://github.com/downloads/QupZilla/qupzilla/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dbus debug kde"
DEPEND="
>=x11-libs/qt-core-4.7:4
>=x11-libs/qt-gui-4.7:4
>=x11-libs/qt-script-4.7:4
>=x11-libs/qt-sql-4.7:4
>=x11-libs/qt-webkit-4.7:4
dbus? ( >=x11-libs/qt-dbus-4.7:4 )
"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
DOCS="AUTHORS CHANGELOG FAQ TODO"
src_configure() {
export QUPZILLA_PREFIX=${EPREFIX}/usr/
export USE_LIBPATH=${QUPZILLA_PREFIX}$(get_libdir)
export DISABLE_DBUS=$(use dbus && echo false || echo true)
export KDE=$(use kde && echo true || echo false)
eqmake4
}
# TODO: translation handling
|