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: Tue, 27 Feb 2018 16:14:21
Message-Id: 1519748011.3b79c05ef4716e7bfbb973e55bcee573685545c5.asturm@gentoo
1 commit: 3b79c05ef4716e7bfbb973e55bcee573685545c5
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 27 15:57:43 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 27 16:13:31 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b79c05e
7
8 www-client/falkon: New package
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 www-client/falkon/Manifest | 1 +
13 www-client/falkon/falkon-3.0.0.ebuild | 58 +++++++++++++++++++++++++++++++++++
14 www-client/falkon/metadata.xml | 11 +++++++
15 3 files changed, 70 insertions(+)
16
17 diff --git a/www-client/falkon/Manifest b/www-client/falkon/Manifest
18 new file mode 100644
19 index 00000000000..bbd80e7362d
20 --- /dev/null
21 +++ b/www-client/falkon/Manifest
22 @@ -0,0 +1 @@
23 +DIST falkon-3.0.0.tar.xz 1985800 BLAKE2B 8505e2c91600d265c28f70c37bf9e8f669ecd907dd9263371a4a4c10b854d32415ec1a3fd6ac163b297d0a9f42c542d4691a6cd417ed81864585f0c66b769e34 SHA512 1d99ecd47022986570dd6bb9b57484abe30838bf52daf669c977e1d2a9381efdd60912fd72b97e0b43b6102159f4343c4d1589d4f6442d0ed62c24f1482a8d97
24
25 diff --git a/www-client/falkon/falkon-3.0.0.ebuild b/www-client/falkon/falkon-3.0.0.ebuild
26 new file mode 100644
27 index 00000000000..53da752ba8f
28 --- /dev/null
29 +++ b/www-client/falkon/falkon-3.0.0.ebuild
30 @@ -0,0 +1,58 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +KDE_TEST="true"
37 +QT_MINIMAL="5.9.2"
38 +inherit kde5
39 +
40 +DESCRIPTION="Cross-platform web browser using QtWebEngine"
41 +HOMEPAGE="https://www.qupzilla.com/"
42 +if [[ ${KDE_BUILD_TYPE} != live ]]; then
43 + SRC_URI="mirror://kde/stable/${PN}/${PV%.0}/src/${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 + )
69 +"
70 +DEPEND="${COMMON_DEPEND}
71 + $(add_qt_dep linguist-tools)
72 + $(add_qt_dep qtconcurrent)
73 + gnome-keyring? ( virtual/pkgconfig )
74 +"
75 +RDEPEND="${COMMON_DEPEND}
76 + !www-client/qupzilla
77 + $(add_qt_dep qtsvg)
78 +"
79 +
80 +src_configure() {
81 + local mycmakeargs=(
82 + -DDISABLE_DBUS=$(usex !dbus)
83 + -DBUILD_KEYRING=$(usex gnome-keyring)
84 + $(cmake-utils_use_find_package kwallet KF5Wallet)
85 + -DNO_X11=$(usex !X)
86 + )
87 + kde5_src_configure
88 +}
89
90 diff --git a/www-client/falkon/metadata.xml b/www-client/falkon/metadata.xml
91 new file mode 100644
92 index 00000000000..007c58ff2ba
93 --- /dev/null
94 +++ b/www-client/falkon/metadata.xml
95 @@ -0,0 +1,11 @@
96 +<?xml version="1.0" encoding="UTF-8"?>
97 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
98 +<pkgmetadata>
99 + <maintainer type="project">
100 + <email>qt@g.o</email>
101 + <name>Gentoo Qt Project</name>
102 + </maintainer>
103 + <use>
104 + <flag name="kwallet">Enable encrypted storage of passwords with <pkg>kde-frameworks/kwallet</pkg></flag>
105 + </use>
106 +</pkgmetadata>