diff options
author | Pacho Ramos <pacho@gentoo.org> | 2024-06-16 11:34:56 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2024-06-16 11:34:56 +0200 |
commit | 38f946f030b036ad02377f006aac12e8fbb1f9f7 (patch) | |
tree | 34c9bd4e1e7748c6702ce108f19e2d8b06e1a13f | |
parent | dev-lang/gdl: drop 1.0.1-r2, 1.0.4 (diff) | |
download | gentoo-38f946f030b036ad02377f006aac12e8fbb1f9f7.tar.gz gentoo-38f946f030b036ad02377f006aac12e8fbb1f9f7.tar.bz2 gentoo-38f946f030b036ad02377f006aac12e8fbb1f9f7.zip |
games-board/openyahtzee: drop 1.9.3-r1
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
-rw-r--r-- | games-board/openyahtzee/openyahtzee-1.9.3-r1.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/games-board/openyahtzee/openyahtzee-1.9.3-r1.ebuild b/games-board/openyahtzee/openyahtzee-1.9.3-r1.ebuild deleted file mode 100644 index d6c0225fb583..000000000000 --- a/games-board/openyahtzee/openyahtzee-1.9.3-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER="3.0" -inherit flag-o-matic toolchain-funcs wxwidgets - -DESCRIPTION="Full-featured wxWidgets version of the classic dice game Yahtzee" -HOMEPAGE="https://openyahtzee.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/openyahtzee/${P}.tar.xz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="x11-libs/wxGTK:${WX_GTK_VER}[X]" -DEPEND=" - ${RDEPEND} - dev-libs/boost -" - -pkg_pretend() { - local ver=4.6 - local msg="You need at least GCC ${ver}.x for C++11 range-based 'for' and nullptr support." - - if tc-is-gcc ; then - if ver_test ${ver} -gt $(gcc-version); then - die ${msg} - fi - else - ewarn "Ensure your compiler has C++11 support, otherwise build will fail." - fi -} - -src_configure() { - append-cxxflags -std=c++11 - setup-wxwidgets - econf --datadir=/usr/share -} |