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 1EF4713835A for ; Thu, 18 Mar 2021 11:15:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FB4BE0858; Thu, 18 Mar 2021 11:15:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 17B0EE0858 for ; Thu, 18 Mar 2021 11:15:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 9E89C340A3B for ; Thu, 18 Mar 2021 11:15:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A35C4AF for ; Thu, 18 Mar 2021 11:15:05 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1616065666.1860b3b3e2c71a36d66c6e63ff376372dc4a1885.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/surf/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/surf/metadata.xml www-client/surf/surf-9999.ebuild X-VCS-Directories: www-client/surf/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 1860b3b3e2c71a36d66c6e63ff376372dc4a1885 X-VCS-Branch: master Date: Thu, 18 Mar 2021 11:15:05 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 505fdb07-9715-4c92-8732-74edf7c927ae X-Archives-Hash: afc3c38f72434d88faabd00d13058f65 commit: 1860b3b3e2c71a36d66c6e63ff376372dc4a1885 Author: Petr Vaněk atlas cz> AuthorDate: Wed Mar 17 15:17:04 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Mar 18 11:07:46 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1860b3b3 www-client/surf: Introduce tabbed use flag Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Petr Vaněk atlas.cz> Signed-off-by: Joonas Niilola gentoo.org> www-client/surf/metadata.xml | 1 + www-client/surf/surf-9999.ebuild | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/www-client/surf/metadata.xml b/www-client/surf/metadata.xml index 5e4c14c17c0..9abaaa71147 100644 --- a/www-client/surf/metadata.xml +++ b/www-client/surf/metadata.xml @@ -4,5 +4,6 @@ Without a saved config.h, this package depends on net-misc/curl and x11-terms/st for a default download mechanism +Install surf-open.sh script for running surf in x11-misc/tabbed diff --git a/www-client/surf/surf-9999.ebuild b/www-client/surf/surf-9999.ebuild index 8670c83e868..d6b737a623d 100644 --- a/www-client/surf/surf-9999.ebuild +++ b/www-client/surf/surf-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,6 +12,7 @@ EGIT_BRANCH="surf-webkit2" LICENSE="MIT" SLOT="0" KEYWORDS="" +IUSE="tabbed" COMMON_DEPEND=" app-crypt/gcr[gtk] @@ -33,6 +34,7 @@ RDEPEND=" x11-apps/xprop x11-terms/st ) + tabbed? ( x11-misc/tabbed ) " PATCHES=( "${FILESDIR}"/${PN}-9999-gentoo.patch @@ -62,5 +64,9 @@ src_prepare() { src_install() { default + if use tabbed; then + dobin surf-open.sh + fi + save_config config.h }