diff options
author | Guillaume Seren <guillaumeseren@gmail.com> | 2020-12-11 20:31:54 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2021-01-24 10:17:25 +0000 |
commit | 9a88f3e6df04b356d75f886aa6c0ab567628f962 (patch) | |
tree | a7a18c901f2c1ff09c1bde2dabe2f5891e54e9b3 /games-board | |
parent | games-board/cockatrice: Add version bump 20200823 (diff) | |
download | gentoo-9a88f3e6df04b356d75f886aa6c0ab567628f962.tar.gz gentoo-9a88f3e6df04b356d75f886aa6c0ab567628f962.tar.bz2 gentoo-9a88f3e6df04b356d75f886aa6c0ab567628f962.zip |
games-board/cockatrice: Clean old version
Closes: https://bugs.gentoo.org/759505
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Guillaume Seren <guillaumeseren@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18611
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/cockatrice/Manifest | 1 | ||||
-rw-r--r-- | games-board/cockatrice/cockatrice-20190304-r1.ebuild | 69 |
2 files changed, 0 insertions, 70 deletions
diff --git a/games-board/cockatrice/Manifest b/games-board/cockatrice/Manifest index 42e894d509b1..58e38529b605 100644 --- a/games-board/cockatrice/Manifest +++ b/games-board/cockatrice/Manifest @@ -1,2 +1 @@ -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-20190304-r1.ebuild b/games-board/cockatrice/cockatrice-20190304-r1.ebuild deleted file mode 100644 index 50792e3ce5f8..000000000000 --- a/games-board/cockatrice/cockatrice-20190304-r1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -MY_PV="2019-03-04-Release-2.7.0" -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 server" - -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 ) -" -DEPEND="${RDEPEND}" - -# As the default help/about display the sha1 we need it -SHA1='294b433' - -S="${WORKDIR}/Cockatrice-${MY_PV}" - -PATCHES=( - "${FILESDIR}"/use-ccache.patch - "${FILESDIR}"/${P}-qt-5.15.patch -) - -src_configure() { - local mycmakeargs=( - -DBUILD_SHARED_LIBS=OFF - -DUSE_CCACHE=OFF - -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_src_configure -} |