Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: www-client/rekonq/
Date: Wed, 31 Oct 2012 15:45:34
Message-Id: 1351698206.b4ec251b2a4943db080cdfadd9f5e79b9262e721.kensington@gentoo
1 commit: b4ec251b2a4943db080cdfadd9f5e79b9262e721
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 31 15:43:08 2012 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 31 15:43:26 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b4ec251b
7
8 [www-client/rekonq] Add preview version.
9
10 Package-Manager: portage-2.1.11.31
11
12 ---
13 www-client/rekonq/rekonq-1.70.ebuild | 53 ++++++++++++++++++++++++++++++++++
14 1 files changed, 53 insertions(+), 0 deletions(-)
15
16 diff --git a/www-client/rekonq/rekonq-1.70.ebuild b/www-client/rekonq/rekonq-1.70.ebuild
17 new file mode 100644
18 index 0000000..1b0a656
19 --- /dev/null
20 +++ b/www-client/rekonq/rekonq-1.70.ebuild
21 @@ -0,0 +1,53 @@
22 +# Copyright 1999-2012 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Header: /var/cvsroot/gentoo-x86/www-client/rekonq/rekonq-1.2.ebuild,v 1.1 2012/10/13 20:55:09 johu Exp $
25 +
26 +EAPI=4
27 +
28 +WEBKIT_REQUIRED="always"
29 +QT_MINIMAL="4.8"
30 +KDE_MINIMAL="4.7"
31 +# handbook and linguas not shipped in preview
32 +#KDE_LINGUAS="bg bs ca ca@valencia cs da de el en_GB eo es et eu fa fi fr ga gl
33 +#hu is it ja km ko lt nb nds nl pl pt pt_BR ro ru sk sl sr sr@ijekavian
34 +#sr@ijekavianlatin sr@latin sv th tr ug uk zh_CN zh_TW"
35 +#KDE_HANDBOOK="optional"
36 +inherit kde4-base
37 +
38 +DESCRIPTION="A browser based on qt-webkit"
39 +HOMEPAGE="http://rekonq.kde.org/"
40 +[[ ${PV} != *9999* ]] && SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
41 +
42 +LICENSE="GPL-3"
43 +SLOT="4"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="debug opera semantic-desktop"
46 +
47 +DEPEND="
48 + $(add_kdebase_dep kdelibs 'semantic-desktop=')
49 + opera? (
50 + app-crypt/qca:2
51 + dev-libs/qoauth
52 + )
53 +"
54 +RDEPEND="${DEPEND}"
55 +
56 +# docs are not shipped in preview
57 +#src_prepare() {
58 + # KDE_LINGUAS is also used to install appropriate handbooks
59 + # since there is no en_US 'translation', it cannot be added
60 + # hence making this impossible to install
61 +# mv doc/en_US doc/en || die "doc move failed"
62 +# sed -i -e 's/en_US/en/' doc/CMakeLists.txt || die "sed failed"
63 +# kde4-base_src_prepare
64 +#}
65 +
66 +src_configure() {
67 + local mycmakeargs=(
68 + $(cmake-utils_use_with opera QCA2)
69 + $(cmake-utils_use_with opera QtOAuth)
70 + $(cmake-utils_use_with semantic-desktop Nepomuk)
71 + )
72 +
73 + kde4-base_src_configure
74 +}