diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2021-06-10 06:33:39 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2021-06-10 07:51:43 -0400 |
commit | 7b9238e8a2a5a81c8508c0d69fc186c202b87108 (patch) | |
tree | b32ff98fa79815b83c71bb56ab858f54bf22484b /games-kids | |
parent | games-kids/tuxtype: fix missing text, force pango, tidy (diff) | |
download | gentoo-7b9238e8a2a5a81c8508c0d69fc186c202b87108.tar.gz gentoo-7b9238e8a2a5a81c8508c0d69fc186c202b87108.tar.bz2 gentoo-7b9238e8a2a5a81c8508c0d69fc186c202b87108.zip |
games-kids/tuxmath: drop 2.0.3-r1
This version is mostly unusable with current tools/libraries.
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-kids')
-rw-r--r-- | games-kids/tuxmath/tuxmath-2.0.3-r1.ebuild | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/games-kids/tuxmath/tuxmath-2.0.3-r1.ebuild b/games-kids/tuxmath/tuxmath-2.0.3-r1.ebuild deleted file mode 100644 index 2ef1bded85da..000000000000 --- a/games-kids/tuxmath/tuxmath-2.0.3-r1.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit eutils gnome2-utils - -MY_PN="${PN}_w_fonts" -DESCRIPTION="Educational arcade game where you have to solve maths problems" -HOMEPAGE="https://github.com/tux4kids/tuxmath" -SRC_URI="mirror://debian/pool/main/t/${PN}/${PN}_${PV}.orig.tar.gz" - -LICENSE="GPL-2 OFL-1.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="nls svg" - -RDEPEND="dev-games/t4k-common[svg?] - dev-libs/libxml2:2 - media-libs/libsdl:0[video] - media-libs/sdl-image[jpeg,png] - media-libs/sdl-mixer[mod] - media-libs/sdl-net - media-libs/sdl-pango - nls? ( virtual/libintl ) - svg? ( - gnome-base/librsvg:2 - x11-libs/cairo - )" -DEPEND="${RDEPEND} - virtual/pkgconfig - nls? ( sys-devel/gettext )" - -S=${WORKDIR}/${MY_PN}-${PV} - -src_prepare() { - default - - sed -i -e '/\bdoc\b/d' Makefile.in || die -} - -src_configure() { - econf \ - --localedir=/usr/share/locale \ - $(use_enable nls) \ - $(usex svg "" "--without-rsvg") -} - -src_install() { - default - doicon -s scalable data/images/icons/${PN}.svg - make_desktop_entry ${PN} "TuxMath" - dodoc doc/{README,TODO,changelog} -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} |