Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/falkon/
Date: Wed, 09 May 2018 07:51:19
Message-Id: 1525852262.6fae0f84de7fb17e84f5f91b17162146d66a4d18.asturm@gentoo
1 commit: 6fae0f84de7fb17e84f5f91b17162146d66a4d18
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 9 07:37:15 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed May 9 07:51:02 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fae0f84
7
8 www-client/falkon: 3.0.1 version bump
9
10 Package-Manager: Portage-2.3.36, Repoman-2.3.9
11
12 www-client/falkon/Manifest | 1 +
13 www-client/falkon/falkon-3.0.1.ebuild | 69 +++++++++++++++++++++++++++++++++++
14 2 files changed, 70 insertions(+)
15
16 diff --git a/www-client/falkon/Manifest b/www-client/falkon/Manifest
17 index bbd80e7362d..dc725eb70d3 100644
18 --- a/www-client/falkon/Manifest
19 +++ b/www-client/falkon/Manifest
20 @@ -1 +1,2 @@
21 DIST falkon-3.0.0.tar.xz 1985800 BLAKE2B 8505e2c91600d265c28f70c37bf9e8f669ecd907dd9263371a4a4c10b854d32415ec1a3fd6ac163b297d0a9f42c542d4691a6cd417ed81864585f0c66b769e34 SHA512 1d99ecd47022986570dd6bb9b57484abe30838bf52daf669c977e1d2a9381efdd60912fd72b97e0b43b6102159f4343c4d1589d4f6442d0ed62c24f1482a8d97
22 +DIST falkon-3.0.1.tar.xz 2219444 BLAKE2B 013d29925f9a1c7e77d5f194eb4a1371dadda05de01a0c103902acfbb16941c6fa9c7256a98ef1965c622222ccfcee8b44c48076cb00bd892378157502f73916 SHA512 e2384cb49d4e1ec52ff7804cf798688be2d80fa5957c72accb09376aa0c41ee491c45234fd53c79871bc474a8d0677e40ddb48241a70d77102c67406b0719191
23
24 diff --git a/www-client/falkon/falkon-3.0.1.ebuild b/www-client/falkon/falkon-3.0.1.ebuild
25 new file mode 100644
26 index 00000000000..8db691656aa
27 --- /dev/null
28 +++ b/www-client/falkon/falkon-3.0.1.ebuild
29 @@ -0,0 +1,69 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +KDE_TEST="true"
36 +QT_MINIMAL="5.9.2"
37 +VIRTUALX_REQUIRED="test"
38 +inherit kde5
39 +
40 +DESCRIPTION="Cross-platform web browser using QtWebEngine"
41 +HOMEPAGE="https://www.falkon.org/"
42 +if [[ ${KDE_BUILD_TYPE} != live ]]; then
43 + SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
44 +fi
45 +
46 +LICENSE="GPL-3"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +IUSE="dbus gnome-keyring kwallet libressl +X"
50 +
51 +COMMON_DEPEND="
52 + $(add_qt_dep qtdeclarative 'widgets')
53 + $(add_qt_dep qtgui)
54 + $(add_qt_dep qtnetwork 'ssl')
55 + $(add_qt_dep qtprintsupport)
56 + $(add_qt_dep qtsql 'sqlite')
57 + $(add_qt_dep qtwebchannel)
58 + $(add_qt_dep qtwebengine 'widgets')
59 + $(add_qt_dep qtwidgets)
60 + dbus? ( $(add_qt_dep qtdbus) )
61 + gnome-keyring? ( gnome-base/gnome-keyring )
62 + kwallet? ( $(add_frameworks_dep kwallet) )
63 + libressl? ( dev-libs/libressl:= )
64 + !libressl? ( dev-libs/openssl:0= )
65 + X? (
66 + $(add_qt_dep qtx11extras)
67 + x11-libs/libxcb:=
68 + x11-libs/xcb-util
69 + )
70 +"
71 +DEPEND="${COMMON_DEPEND}
72 + $(add_qt_dep linguist-tools)
73 + $(add_qt_dep qtconcurrent)
74 + gnome-keyring? ( virtual/pkgconfig )
75 +"
76 +if [[ ${KDE_BUILD_TYPE} != live ]]; then
77 + DEPEND+=" $(add_frameworks_dep ki18n)"
78 +fi
79 +RDEPEND="${COMMON_DEPEND}
80 + !www-client/qupzilla
81 + $(add_qt_dep qtsvg)
82 +"
83 +
84 +src_configure() {
85 + local mycmakeargs=(
86 + -DDISABLE_DBUS=$(usex !dbus)
87 + -DBUILD_KEYRING=$(usex gnome-keyring)
88 + $(cmake-utils_use_find_package kwallet KF5Wallet)
89 + -DNO_X11=$(usex !X)
90 + )
91 + kde5_src_configure
92 +}
93 +
94 +pkg_postinst() {
95 + kde5_pkg_postinst
96 + elog "If you were previously using QupZilla, you can manually migrate your profiles"
97 + elog "by moving the config directory from ~/.config/qupzilla to ~/.config/falkon"
98 +}