diff options
author | James Le Cuirot <chewi@gentoo.org> | 2019-03-13 22:45:08 +0000 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2019-03-13 22:45:08 +0000 |
commit | ff410b90e91a54963ec77a19b00fbfaf101c143a (patch) | |
tree | 29b3b3ebea29a278d8a974b7e472e29f98352ed4 /games-board | |
parent | games-board/cockatrice: Disable automagic use of ccache with a patch (diff) | |
download | gentoo-ff410b90e91a54963ec77a19b00fbfaf101c143a.tar.gz gentoo-ff410b90e91a54963ec77a19b00fbfaf101c143a.tar.bz2 gentoo-ff410b90e91a54963ec77a19b00fbfaf101c143a.zip |
games-board/cockatrice: Drop old 20170505-r1
Package-Manager: Portage-2.3.62, Repoman-2.3.12
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-20170505-r1.ebuild | 58 |
2 files changed, 0 insertions, 59 deletions
diff --git a/games-board/cockatrice/Manifest b/games-board/cockatrice/Manifest index 4c6053c07998..b24c9988252c 100644 --- a/games-board/cockatrice/Manifest +++ b/games-board/cockatrice/Manifest @@ -1,2 +1 @@ -DIST cockatrice-20170505.tar.gz 7340644 BLAKE2B da3503f5ac02d0a03d59c719af82926e693fc3f2028d096c2b1d8d5145c62439f68e88379281e224d812405b39520e34476a6fd1df75f8202adc463f6ea8b3f8 SHA512 7cf319af46e4e2bd59428cf6635eeefebe70695adb445b24a727050abbc64124c17654ac058429b88a99f09f77639c15f8100d107ee8f54cad2bf0dec7051aa5 DIST cockatrice-20190304.tar.gz 8464830 BLAKE2B 6e6b41593d7eddc8599fa894eed63f993fb69888c57fdfc4a45d71e6e7990d7d716663b69902139f5fd7ead455acdba76ac1d649977e26dceb2948293c34b74e SHA512 6a76e5de2aa7a4d2c9943bee9225ebf01aca7679bcd2542450b7e8b919e401992019f5bfb69597e8845bb2d8db568d7a6549600b85b576f9fb29be712bbfc9e5 diff --git a/games-board/cockatrice/cockatrice-20170505-r1.ebuild b/games-board/cockatrice/cockatrice-20170505-r1.ebuild deleted file mode 100644 index b5d17ff65ab6..000000000000 --- a/games-board/cockatrice/cockatrice-20170505-r1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -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/2017-05-05-Release-2.3.17.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/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 - ) -" -DEPEND="${RDEPEND} - dev-qt/linguist-tools:5 -" - -# As the default help/about display the sha1 we need it -SHA1='c96f234' - -S=${WORKDIR}/"Cockatrice-2017-05-05-Release-2.3.17" - -src_configure() { - local mycmakeargs=( - -DWITH_CLIENT=$(usex client) - -DWITH_ORACLE=$(usex oracle) - -DWITH_SERVER=$(usex server) - -DICONDIR="/usr/share/icons" - -DDESKTOPDIR="/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 -} |