diff options
author | Guillaume Seren <guillaumeseren@gmail.com> | 2019-02-24 17:00:04 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2019-03-13 22:44:33 +0000 |
commit | 8591839037b228484d81fdf9e31d1f04b5b8f3de (patch) | |
tree | f9f521ef4857efb2fb6c2a53e0df7bbc1ff4d965 /games-board/cockatrice/cockatrice-20181220.ebuild | |
parent | sys-firmware/intel-microcode: drop old (diff) | |
download | gentoo-8591839037b228484d81fdf9e31d1f04b5b8f3de.tar.gz gentoo-8591839037b228484d81fdf9e31d1f04b5b8f3de.tar.bz2 gentoo-8591839037b228484d81fdf9e31d1f04b5b8f3de.zip |
games-board/cockatrice: version bump to 20181220
Closes: https://bugs.gentoo.org/664712
Closes: https://bugs.gentoo.org/678690
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Guillaume Seren <guillaumeseren@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11149
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-board/cockatrice/cockatrice-20181220.ebuild')
-rw-r--r-- | games-board/cockatrice/cockatrice-20181220.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/games-board/cockatrice/cockatrice-20181220.ebuild b/games-board/cockatrice/cockatrice-20181220.ebuild new file mode 100644 index 000000000000..9b968e73da76 --- /dev/null +++ b/games-board/cockatrice/cockatrice-20181220.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-utils + +DESCRIPTION="An open-source multiplatform software for playing card games over a network" +HOMEPAGE="https://github.com/Cockatrice/Cockatrice" +SRC_URI="${HOMEPAGE}/archive/2018-12-20-Release-2.6.2.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+client +oracle server" + +RDEPEND=" + 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-libs/protobuf:= + dev-qt/qtmultimedia:5 + dev-qt/qtprintsupport:5 + dev-qt/qtsvg:5 + ) + oracle? ( sys-libs/zlib ) + server? ( + dev-libs/protobuf:= + dev-qt/qtsql:5 + dev-qt/qtwebsockets:5 + ) +" +BDEPEND=" + dev-qt/linguist-tools:5 + client? ( dev-libs/protobuf ) + server? ( dev-libs/protobuf ) +" +DEPEND="${RDEPEND} +" + +# As the default help/about display the sha1 we need it +SHA1='294b433' + +S="${WORKDIR}/Cockatrice-2018-12-20-Release-2.6.2" + +src_configure() { + local mycmakeargs=( + -DWITH_CLIENT=$(usex client) + -DWITH_ORACLE=$(usex oracle) + -DWITH_SERVER=$(usex server) + -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 \"'${SHA1}'\")/' \ + -i cmake/getversion.cmake || die "sed failed!" + + cmake-utils_src_configure +} |