[gentoo-commits] repo/gentoo:master commit in: games-kids/tuxtype/files/, games-kids/tuxtype/

2021-06-10 Thread Ionen Wolkens
commit: 5b5f4cc8dc131511fda89d87b8458707c4d1b1c0
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jun 10 10:19:35 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jun 10 11:51:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b5f4cc8

games-kids/tuxtype: fix missing text, force pango, tidy

Removed unused t4k-common dep given this package hasn't been migrated
to use it yet (upstream snapshot only has work-in-progress support).

This means needed to bring the t4k-common fix for missing text here.

Removed IUSE:
- svg: this is only work-in-progress code with no real use for now
- pango: sdl-ttf code is seeing neglect and upstream only really
  use/test sdl-pango, forcing brings this in-line with t4k-common
  and allows to remove bundled fonts.

Signed-off-by: Ionen Wolkens  gentoo.org>

 .../tuxtype/files/tuxtype-1.8.3-missing-text.patch | 15 +
 games-kids/tuxtype/tuxtype-1.8.3-r2.ebuild | 67 ++
 2 files changed, 82 insertions(+)

diff --git a/games-kids/tuxtype/files/tuxtype-1.8.3-missing-text.patch 
b/games-kids/tuxtype/files/tuxtype-1.8.3-missing-text.patch
new file mode 100644
index 000..9553cfa8984
--- /dev/null
+++ b/games-kids/tuxtype/files/tuxtype-1.8.3-missing-text.patch
@@ -0,0 +1,15 @@
+Fix some missing (transparent) text with libsdl-1.2.15_p20210224.
+Same issue as t4k-common-0.1.1 given tuxtype shares the same
+code and wasn't migrated to support the separate library yet.
+--- a/src/SDL_extras.c
 b/src/SDL_extras.c
+@@ -1297,3 +1297,3 @@
+   /* Use color key for eventual transparency: */
+-  color_key = SDL_MapRGB(bg->format, 01, 01, 01);
++  color_key = SDL_MapRGBA(bg->format, 01, 01, 01, 0xff);
+   SDL_FillRect(bg, NULL, color_key);
+@@ -1344,3 +1344,3 @@
+   SDL_SetColorKey(bg, SDL_SRCCOLORKEY|SDL_RLEACCEL, color_key);
+-  out = SDL_DisplayFormatAlpha(bg);
++  out = SDL_DisplayFormat(bg);
+   SDL_FreeSurface(bg);

diff --git a/games-kids/tuxtype/tuxtype-1.8.3-r2.ebuild 
b/games-kids/tuxtype/tuxtype-1.8.3-r2.ebuild
new file mode 100644
index 000..55d2d6b8927
--- /dev/null
+++ b/games-kids/tuxtype/tuxtype-1.8.3-r2.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools desktop optfeature
+
+DESCRIPTION="Typing tutorial with lots of eye-candy"
+HOMEPAGE="https://www.tux4kids.com/";
+SRC_URI="https://github.com/tux4kids/${PN}/archive/upstream/${PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${PN}-upstream-${PV}"
+
+LICENSE="CC-BY-3.0 CC-BY-SA-3.0 GPL-3+ public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   acct-group/gamestat
+   media-libs/libsdl[video]
+   media-libs/sdl-image[jpeg,png]
+   media-libs/sdl-mixer
+   media-libs/sdl-pango"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-games-group.patch
+   "${FILESDIR}"/${P}-missing-text.patch
+)
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   local econfargs=(
+   # these are a placeholder for future features, i.e. not useful 
for now
+   --without-rsvg
+   --without-sdlnet
+   )
+   econf "${econfargs[@]}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" install # skip einstalldocs, wrong files
+
+   keepdir /etc/${PN} /var/lib/${PN}
+
+   fowners :gamestat /var/lib/${PN} /usr/bin/${PN}
+   fperms g+s /usr/bin/${PN}
+   fperms 660 /var/lib/${PN}
+
+   newicon icon.png ${PN}.png
+   domenu ${PN}.desktop
+
+   # bundled fonts are unused if sdl-pango is enabled
+   rm -r "${ED}"/usr/share/${PN}/fonts || die
+   rm "${ED}"/usr/share/doc/${PF}/{ABOUT-NLS,COPYING,OFL,INSTALL} || die
+   rmdir "${ED}"/var/lib/${PN}/words || die
+}
+
+pkg_postinst() {
+   # mod detection fails if using modplug over mikmod
+   optfeature "music support" "media-libs/sdl-mixer[mod,mikmod,vorbis]"
+}



[gentoo-commits] repo/gentoo:master commit in: games-kids/tuxtype/files/, games-kids/tuxtype/

2021-06-10 Thread Ionen Wolkens
commit: c3f197ba78bebdc6c23482fa1e227e73d5f576c5
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jun 10 13:20:27 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jun 10 13:21:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3f197ba

games-kids/tuxtype: fix build without t4k-common

Closes: https://bugs.gentoo.org/795222
Signed-off-by: Ionen Wolkens  gentoo.org>

 .../tuxtype/files/tuxtype-1.8.3-t4kcommon.patch  | 20 
 games-kids/tuxtype/tuxtype-1.8.3-r2.ebuild   |  1 +
 2 files changed, 21 insertions(+)

diff --git a/games-kids/tuxtype/files/tuxtype-1.8.3-t4kcommon.patch 
b/games-kids/tuxtype/files/tuxtype-1.8.3-t4kcommon.patch
new file mode 100644
index 000..14ded561904
--- /dev/null
+++ b/games-kids/tuxtype/files/tuxtype-1.8.3-t4kcommon.patch
@@ -0,0 +1,20 @@
+This was added ahead of time (for next version), currently unused.
+--- a/configure.ac
 b/configure.ac
+@@ -249,16 +249,4 @@
+ dnl libt4kcommon is now required: 
+ 
+-PKG_CHECK_MODULES([T4K_COMMON],
+-  [t4k_common],
+-  [],
+-  [AC_MSG_NOTICE([t4k_common not located by pkg-config, checking with AC 
CHECK LIB:])
+-   AC_CHECK_LIB([t4k_common],
+-  [InitT4KCommon],
+-  [],
+-  [AC_MSG_ERROR([libt4k_common is required: 
git://git.debian.org/tux4kids/t4kcommon.git])])])
+-
+-AC_DEFINE([HAVE_LIBT4K_COMMON],[1],[Define to 1 if you have the `t4k_common` 
library])
+-CFLAGS="$CFLAGS $T4K_COMMON_CFLAGS"
+-LIBS="$LIBS $T4K_COMMON_LIBS"
+ 
+ 

diff --git a/games-kids/tuxtype/tuxtype-1.8.3-r2.ebuild 
b/games-kids/tuxtype/tuxtype-1.8.3-r2.ebuild
index 55d2d6b8927..5c8cb51013e 100644
--- a/games-kids/tuxtype/tuxtype-1.8.3-r2.ebuild
+++ b/games-kids/tuxtype/tuxtype-1.8.3-r2.ebuild
@@ -26,6 +26,7 @@ BDEPEND="virtual/pkgconfig"
 PATCHES=(
"${FILESDIR}"/${P}-games-group.patch
"${FILESDIR}"/${P}-missing-text.patch
+   "${FILESDIR}"/${P}-t4kcommon.patch
 )
 
 src_prepare() {