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 5A48A138334 for ; Wed, 22 Aug 2018 18:40:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D470E09B8; Wed, 22 Aug 2018 18:40:02 +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 45E0CE09B8 for ; Wed, 22 Aug 2018 18:40:01 +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 06C93335C96 for ; Wed, 22 Aug 2018 18:40:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC0503B2 for ; Wed, 22 Aug 2018 18:39:58 +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: <1534963181.b4b2fc1a667dfb4ada426f60f4f08bf732a8e640.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/cockatrice/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-board/cockatrice/cockatrice-20170505-r1.ebuild games-board/cockatrice/cockatrice-20170505.ebuild X-VCS-Directories: games-board/cockatrice/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b4b2fc1a667dfb4ada426f60f4f08bf732a8e640 X-VCS-Branch: master Date: Wed, 22 Aug 2018 18:39:58 +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: 6d6c03cd-51e2-440e-b66b-c41da45d6b6b X-Archives-Hash: aaa5f988596ed498d778543b2d711c93 commit: b4b2fc1a667dfb4ada426f60f4f08bf732a8e640 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Aug 22 17:32:17 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Aug 22 18:39:41 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4b2fc1a games-board/cockatrice: Fix missing (R)DEPENDs, superfluous inherits Sort dependencies, add missing sys-libs/zlib slot op Add completely missing RDEPEND (since 2f2b7ec5b6fb49b79bd936219f0b0ae5baa70514) Add missing USE-dep on dev-qt/qtnetwork:5[ssl] Closes: https://bugs.gentoo.org/664290 Package-Manager: Portage-2.3.48, Repoman-2.3.10 ...170505.ebuild => cockatrice-20170505-r1.ebuild} | 32 +++++++++++++--------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/games-board/cockatrice/cockatrice-20170505.ebuild b/games-board/cockatrice/cockatrice-20170505-r1.ebuild similarity index 68% rename from games-board/cockatrice/cockatrice-20170505.ebuild rename to games-board/cockatrice/cockatrice-20170505-r1.ebuild index a8edee2cae1..902b7730730 100644 --- a/games-board/cockatrice/cockatrice-20170505.ebuild +++ b/games-board/cockatrice/cockatrice-20170505-r1.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit cmake-utils eutils gnome2-utils + +inherit cmake-utils DESCRIPTION="An open-source multiplatform software for playing card games over a network" HOMEPAGE="https://github.com/Cockatrice/Cockatrice" @@ -11,22 +12,25 @@ SRC_URI="${HOMEPAGE}/archive/2017-05-05-Release-2.3.17.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="server +client +oracle" +IUSE="+client +oracle server" -DEPEND=" - dev-libs/libgcrypt:0 +RDEPEND=" dev-libs/protobuf - dev-qt/linguist-tools:5 dev-qt/qtconcurrent:5 - dev-qt/qtprintsupport:5 dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5[ssl] + dev-qt/qtwidgets:5 client? ( - dev-qt/qtgui:5 dev-qt/qtmultimedia:5 - dev-qt/qtsvg:5 ) - oracle? ( - sys-libs/zlib - )" + dev-qt/qtprintsupport:5 + dev-qt/qtsvg:5 + ) + oracle? ( sys-libs/zlib:= ) +" +DEPEND="${RDEPEND} + dev-qt/linguist-tools:5 +" # As the default help/about display the sha1 we need it SHA1='c96f234' @@ -42,6 +46,8 @@ src_configure() { -DDESKTOPDIR="/usr/share/applications" ) # Add date in the help about, come from git originally - sed -i 's/^set(PROJECT_VERSION_FRIENDLY.*/set(PROJECT_VERSION_FRIENDLY \"'${SHA1}'\")/' cmake/getversion.cmake || die "Sed failed!" + sed -e 's/^set(PROJECT_VERSION_FRIENDLY.*/set(PROJECT_VERSION_FRIENDLY \"'${SHA1}'\")/' \ + -i cmake/getversion.cmake || die "sed failed!" + cmake-utils_src_configure }