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 6BCB31382C5 for ; Thu, 24 Jun 2021 02:16:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3B52E091F; Thu, 24 Jun 2021 02:16:21 +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 82AA7E0917 for ; Thu, 24 Jun 2021 02:16:21 +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 2D699335DA0 for ; Thu, 24 Jun 2021 02:16:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8ED6B7B2 for ; Thu, 24 Jun 2021 02:16:18 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1624499639.2800fac798ad4cf1018e6fea464f17c2c4c26db6.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/cockatrice/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-board/cockatrice/cockatrice-20210126.ebuild X-VCS-Directories: games-board/cockatrice/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 2800fac798ad4cf1018e6fea464f17c2c4c26db6 X-VCS-Branch: master Date: Thu, 24 Jun 2021 02:16:18 +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: ba5dff21-d6d2-4489-908d-7fa2c031eaa4 X-Archives-Hash: dd5c296cb140c7f37a87462c35b7c217 commit: 2800fac798ad4cf1018e6fea464f17c2c4c26db6 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Jun 21 16:25:05 2021 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Thu Jun 24 01:53:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2800fac7 games-board/cockatrice: fix LICENSE, add missing eclass Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Ionen Wolkens gentoo.org> games-board/cockatrice/cockatrice-20210126.ebuild | 32 +++++++++-------------- 1 file changed, 12 insertions(+), 20 deletions(-) diff --git a/games-board/cockatrice/cockatrice-20210126.ebuild b/games-board/cockatrice/cockatrice-20210126.ebuild index f3f5bd2606f..caa652ceef6 100644 --- a/games-board/cockatrice/cockatrice-20210126.ebuild +++ b/games-board/cockatrice/cockatrice-20210126.ebuild @@ -3,14 +3,16 @@ EAPI=7 -inherit cmake +inherit xdg cmake MY_PV="2021-01-26-Release-2.8.0" -DESCRIPTION="An open-source multiplatform software for playing card games over a network" + +DESCRIPTION="Open-source multiplatform software for playing card games over a network" HOMEPAGE="https://github.com/Cockatrice/Cockatrice" SRC_URI="https://github.com/Cockatrice/Cockatrice/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/Cockatrice-${MY_PV}" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="+client +oracle test server" @@ -33,17 +35,14 @@ RDEPEND=" server? ( dev-libs/protobuf:= dev-qt/qtsql:5 - ) -" + )" +DEPEND=" + ${RDEPEND} + test? ( dev-cpp/gtest )" BDEPEND=" dev-qt/linguist-tools:5 client? ( dev-libs/protobuf ) - server? ( dev-libs/protobuf ) - test? ( dev-cpp/gtest ) -" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/Cockatrice-${MY_PV}" + server? ( dev-libs/protobuf )" src_configure() { local mycmakeargs=( @@ -54,7 +53,8 @@ src_configure() { -DWITH_SERVER=$(usex server) -DTEST=$(usex test) -DICONDIR="${EPREFIX}/usr/share/icons" - -DDESKTOPDIR="${EPREFIX}/usr/share/applications" ) + -DDESKTOPDIR="${EPREFIX}/usr/share/applications" + ) # Add date in the help about, come from git originally sed -e 's/^set(PROJECT_VERSION_FRIENDLY.*/set(PROJECT_VERSION_FRIENDLY \"'${MY_PV}'\")/' \ @@ -62,11 +62,3 @@ src_configure() { cmake_src_configure } - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -}