summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2021-06-10 06:34:37 -0400
committerIonen Wolkens <ionen@gentoo.org>2021-06-10 07:51:43 -0400
commit72d082ddbf4d0db056e7428711a079df01fbf7c5 (patch)
tree8ef841470eeadee8d4bd5ac09b9a7e3ead429592 /games-kids
parentgames-kids/tuxmath: drop 2.0.3-r1 (diff)
downloadgentoo-72d082ddbf4d0db056e7428711a079df01fbf7c5.tar.gz
gentoo-72d082ddbf4d0db056e7428711a079df01fbf7c5.tar.bz2
gentoo-72d082ddbf4d0db056e7428711a079df01fbf7c5.zip
games-kids/tuxtype: drop 1.8.3-r1
With current libsdl, this version won't display text and is unplayable. Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-kids')
-rw-r--r--games-kids/tuxtype/metadata.xml3
-rw-r--r--games-kids/tuxtype/tuxtype-1.8.3-r1.ebuild63
2 files changed, 0 insertions, 66 deletions
diff --git a/games-kids/tuxtype/metadata.xml b/games-kids/tuxtype/metadata.xml
index edb3136e7016..52de2ed0b372 100644
--- a/games-kids/tuxtype/metadata.xml
+++ b/games-kids/tuxtype/metadata.xml
@@ -8,7 +8,4 @@
<upstream>
<remote-id type="github">tux4kids/tuxtype</remote-id>
</upstream>
- <use>
- <flag name="pango">Render fonts using <pkg>media-libs/sdl-pango</pkg> instead of <pkg>media-libs/sdl-ttf</pkg></flag>
- </use>
</pkgmetadata>
diff --git a/games-kids/tuxtype/tuxtype-1.8.3-r1.ebuild b/games-kids/tuxtype/tuxtype-1.8.3-r1.ebuild
deleted file mode 100644
index ecbbdaebb72a..000000000000
--- a/games-kids/tuxtype/tuxtype-1.8.3-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools desktop xdg
-
-DESCRIPTION="Typing tutorial with lots of eye-candy"
-HOMEPAGE="https://github.com/tux4kids/tuxtype"
-SRC_URI="https://github.com/tux4kids/${PN}/archive/upstream/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 OFL-1.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+pango svg"
-
-DEPEND="acct-group/gamestat
- dev-games/t4k-common
- media-libs/libsdl[video]
- media-libs/sdl-image
- media-libs/sdl-mixer
- !pango? ( media-libs/sdl-ttf )
- pango? ( media-libs/sdl-pango )
- svg? ( gnome-base/librsvg:2 )"
-
-RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-S="${WORKDIR}/${PN}-upstream-${PV}"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.8.3-games-group.patch
-)
-
-src_prepare() {
- xdg_src_prepare
-
- # Fix broken linkage due to incorrect variable casing.
- sed -i 's:$SDL_TTF:$SDL_ttf:g' configure.ac || die
-
- eautoreconf
-}
-
-src_configure() {
- econf \
- --localedir="${EPREFIX}"/usr/share/locale \
- $(use_with pango sdlpango) \
- $(use_with svg rsvg) \
- --without-sdlnet # Unused!
-}
-
-src_install() {
- emake install DESTDIR="${D}"
- rm -v "${ED}"/usr/share/doc/${PF}/{ABOUT-NLS,COPYING,INSTALL} || die
- keepdir /etc/${PN} /var/lib/${PN}/words
-
- newicon -s 64 icon.png ${PN}.png
- make_desktop_entry ${PN} TuxTyping
-
- fowners root:gamestat /var/lib/${PN} /usr/bin/${PN}
- fperms 660 /var/lib/${PN}
- fperms 2755 /usr/bin/${PN}
-}