commit: aeb2d0fe475b60d5cd180ffd402407917443010c Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Tue Apr 22 21:33:16 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Tue Apr 22 22:30:59 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeb2d0fe
games-board/cutechess: Drop IUSE qt5, fix deps, fix really odd style Closes: https://bugs.gentoo.org/953909 Closes: https://bugs.gentoo.org/942906 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> games-board/cutechess/cutechess-1.3.1-r2.ebuild | 31 +++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/games-board/cutechess/cutechess-1.3.1-r2.ebuild b/games-board/cutechess/cutechess-1.3.1-r2.ebuild new file mode 100644 index 000000000000..c5149829c7c5 --- /dev/null +++ b/games-board/cutechess/cutechess-1.3.1-r2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Cross-platform tools for working with chess engines" +HOMEPAGE="https://cutechess.com/ https://github.com/cutechess/" +SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-qt/qt5compat:6 + dev-qt/qtbase:6[concurrent,gui,widgets] + dev-qt/qtsvg:6 +" +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + -DWITH_TESTS=$(usex test) + ) + cmake_src_configure +}
