From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0132E1396D1 for ; Tue, 3 Oct 2017 21:30:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BA63E0CB0; Tue, 3 Oct 2017 21:30:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1CA98E0CB0 for ; Tue, 3 Oct 2017 21:30:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6344F3417A8 for ; Tue, 3 Oct 2017 21:30:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC0479095 for ; Tue, 3 Oct 2017 21:30:01 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1507066180.f23491ccba930a8108572bda4f42c664b3636e16.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: www-client/falkon/ X-VCS-Repository: proj/kde X-VCS-Files: www-client/falkon/falkon-9999.ebuild www-client/falkon/metadata.xml X-VCS-Directories: www-client/falkon/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f23491ccba930a8108572bda4f42c664b3636e16 X-VCS-Branch: master Date: Tue, 3 Oct 2017 21:30:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fadcb6e8-7931-4b55-a06e-558b9902b410 X-Archives-Hash: 44e2eb73c491008191c15f2c07601097 commit: f23491ccba930a8108572bda4f42c664b3636e16 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Oct 3 21:28:19 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Oct 3 21:29:40 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=f23491cc www-client/falkon: New package Package-Manager: Portage-2.3.11, Repoman-2.3.3 www-client/falkon/falkon-9999.ebuild | 68 ++++++++++++++++++++++++++++++++++++ www-client/falkon/metadata.xml | 15 ++++++++ 2 files changed, 83 insertions(+) diff --git a/www-client/falkon/falkon-9999.ebuild b/www-client/falkon/falkon-9999.ebuild new file mode 100644 index 0000000000..cab43a30f1 --- /dev/null +++ b/www-client/falkon/falkon-9999.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PLUGINS_HASH="80fea7df7765fdf9c9c64fdb667052b25f1c0a22" +PLUGINS_VERSION="2016.05.26" # if there are no updates, we can use the older archive +# QT_MINIMAL="5.9.2" +inherit kde5 + +DESCRIPTION="Cross-platform web browser using QtWebEngine" +HOMEPAGE="https://www.qupzilla.com/" +SRC_URI+=" https://github.com/QupZilla/qupzilla-plugins/archive/${PLUGINS_HASH}.tar.gz -> qupzilla-plugins-${PLUGINS_VERSION}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="" +IUSE="dbus gnome-keyring kwallet libressl nonblockdialogs +X" + +RDEPEND=" + $(add_qt_dep qtdeclarative 'widgets') + $(add_qt_dep qtgui) + $(add_qt_dep qtnetwork 'ssl') + $(add_qt_dep qtprintsupport) + $(add_qt_dep qtsql 'sqlite') + $(add_qt_dep qtwebchannel) + $(add_qt_dep qtwebengine 'widgets') + $(add_qt_dep qtwidgets) + dbus? ( $(add_qt_dep qtdbus) ) + gnome-keyring? ( gnome-base/gnome-keyring ) + kwallet? ( $(add_frameworks_dep kwallet) ) + libressl? ( dev-libs/libressl:= ) + !libressl? ( dev-libs/openssl:0= ) + X? ( + $(add_qt_dep qtx11extras) + x11-libs/libxcb:= + ) +" +DEPEND="${RDEPEND} + $(add_qt_dep linguist-tools) + $(add_qt_dep qtconcurrent) + gnome-keyring? ( virtual/pkgconfig ) +" + +DOCS=( AUTHORS BUILDING.md CHANGELOG FAQ README.md ) + +src_unpack() { + kde5_src_unpack + [[ ${KDE_BUILD_TYPE} = live && -n ${A} ]] && default +} + +src_prepare() { + kde5_src_prepare + # get extra plugins into qupzilla build tree + mv "${WORKDIR}"/qupzilla-plugins-${PLUGINS_HASH}/plugins/* "${S}"/src/plugins/ || die +} + +src_configure() { + local mycmakeargs=( + -DDISABLE_DBUS=$(usex dbus) + -DBUILD_KEYRING=$(usex gnome-keyring) + $(cmake-utils_use_find_package kwallet KF5Wallet) + -DNONBLOCK_JS_DIALOGS=$(usex nonblockdialogs) + -DNOT_X11=$(usex !X) + -DDISABLE_UPDATES_CHECK=OFF + ) + kde5_src_configure +} diff --git a/www-client/falkon/metadata.xml b/www-client/falkon/metadata.xml new file mode 100644 index 0000000000..97e1a6dcfd --- /dev/null +++ b/www-client/falkon/metadata.xml @@ -0,0 +1,15 @@ + + + + + qt@gentoo.org + Gentoo Qt Project + + + Enable encrypted storage of passwords with kde-frameworks/kwallet + Enable fancy non-blocking JavaScript dialogs + shown inside the page, not blocking the application window. When closing + browser windows with open dialogs, this can crash the application. + + +