From: "James Le Cuirot" <chewi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/cockatrice/
Date: Sun, 24 Jan 2021 10:18:57 +0000 (UTC) [thread overview]
Message-ID: <1611483442.cb81a059a3b68153159ee52c6d40983c57e30c8e.chewi@gentoo> (raw)
commit: cb81a059a3b68153159ee52c6d40983c57e30c8e
Author: Guillaume Seren <guillaumeseren <AT> gmail <DOT> com>
AuthorDate: Fri Dec 11 19:26:12 2020 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Jan 24 10:17:22 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb81a059
games-board/cockatrice: Add version bump 20200823
Closes: https://bugs.gentoo.org/759505
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Guillaume Seren <guillaumeseren <AT> gmail.com>
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
games-board/cockatrice/Manifest | 1 +
games-board/cockatrice/cockatrice-20200823.ebuild | 64 +++++++++++++++++++++++
2 files changed, 65 insertions(+)
diff --git a/games-board/cockatrice/Manifest b/games-board/cockatrice/Manifest
index b24c9988252..42e894d509b 100644
--- a/games-board/cockatrice/Manifest
+++ b/games-board/cockatrice/Manifest
@@ -1 +1,2 @@
DIST cockatrice-20190304.tar.gz 8464830 BLAKE2B 6e6b41593d7eddc8599fa894eed63f993fb69888c57fdfc4a45d71e6e7990d7d716663b69902139f5fd7ead455acdba76ac1d649977e26dceb2948293c34b74e SHA512 6a76e5de2aa7a4d2c9943bee9225ebf01aca7679bcd2542450b7e8b919e401992019f5bfb69597e8845bb2d8db568d7a6549600b85b576f9fb29be712bbfc9e5
+DIST cockatrice-20200823.tar.gz 8503044 BLAKE2B a987418b25db53e5fc42627e3efa93ee7348ff341d7cf844647c6655b00bb76f2929cff91c6a1d199525fba2785f4d5da533c934ad483636af1979d52f8eea94 SHA512 0fa919009536238cd540db6ef01271a41f96aa40a3d40b468fbc400905dbdfe914cfb785f62f8135355c64cc8fef19a83604aee1ad4420bb73c8f31b9d48e48b
diff --git a/games-board/cockatrice/cockatrice-20200823.ebuild b/games-board/cockatrice/cockatrice-20200823.ebuild
new file mode 100644
index 00000000000..fa3bd9ba82e
--- /dev/null
+++ b/games-board/cockatrice/cockatrice-20200823.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg cmake
+
+MY_PV="2020-08-23-Release-2.7.5"
+DESCRIPTION="An 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"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+client +oracle test server"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-qt/qtconcurrent:5
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtnetwork:5[ssl]
+ dev-qt/qtprintsupport:5
+ dev-qt/qtwebsockets:5
+ dev-qt/qtwidgets:5
+ client? (
+ dev-libs/protobuf:=
+ dev-qt/qtmultimedia:5
+ dev-qt/qtsvg:5
+ )
+ oracle? ( sys-libs/zlib )
+ server? (
+ dev-libs/protobuf:=
+ dev-qt/qtsql:5
+ )
+"
+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}"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_SHARED_LIBS=OFF
+ -DUSE_CCACHE=OFF
+ -DWITH_CLIENT=$(usex client)
+ -DWITH_ORACLE=$(usex oracle)
+ -DWITH_SERVER=$(usex server)
+ -DTEST=$(usex test)
+ -DICONDIR="${EPREFIX}/usr/share/icons"
+ -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}'\")/' \
+ -i cmake/getversion.cmake || die "sed failed!"
+
+ cmake_src_configure
+}
next reply other threads:[~2021-01-24 10:19 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-24 10:18 James Le Cuirot [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-03-09 16:19 [gentoo-commits] repo/gentoo:master commit in: games-board/cockatrice/ Andreas Sturmlechner
2021-06-24 2:16 Ionen Wolkens
2021-06-24 2:16 Ionen Wolkens
2021-05-31 8:20 Sam James
2021-01-24 10:18 James Le Cuirot
2021-01-24 10:18 James Le Cuirot
2019-12-06 20:32 David Seifert
2019-03-24 17:16 James Le Cuirot
2019-03-13 22:45 James Le Cuirot
2019-03-13 22:45 James Le Cuirot
2019-03-13 22:45 James Le Cuirot
2018-08-29 7:51 Andreas Sturmlechner
2018-08-22 18:39 Andreas Sturmlechner
2018-08-22 18:39 Andreas Sturmlechner
2017-08-25 22:46 Patrice Clement
2016-12-21 10:46 Patrice Clement
2016-09-28 18:35 Michael Palimaka
2016-09-14 17:26 Austin English
2016-07-30 14:35 Mike Gilbert
2016-07-12 17:03 Patrice Clement
2016-05-06 2:50 Michael Sterrett
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1611483442.cb81a059a3b68153159ee52c6d40983c57e30c8e.chewi@gentoo \
--to=chewi@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox