commit: 22f3703bb8055be18ad5572667418281eadfdc16
Author: Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
AuthorDate: Sun Nov 16 21:31:07 2025 +0000
Commit: Paul Zander <negril.nx+gentoo <AT> gmail <DOT> com>
CommitDate: Sun Nov 16 22:09:15 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=22f3703b
games-engines/instead: drop 3.4.1
Signed-off-by: Paul Zander <negril.nx+gentoo <AT> gmail.com>
games-engines/instead/Manifest | 1 -
games-engines/instead/instead-3.4.1.ebuild | 114 -----------------------------
games-engines/instead/instead-3.5.2.ebuild | 2 +-
games-engines/instead/instead-9999.ebuild | 2 +-
games-engines/instead/metadata.xml | 1 -
5 files changed, 2 insertions(+), 118 deletions(-)
diff --git a/games-engines/instead/Manifest b/games-engines/instead/Manifest
index ed36fb57a6..aaa68139f4 100644
--- a/games-engines/instead/Manifest
+++ b/games-engines/instead/Manifest
@@ -1,2 +1 @@
-DIST instead-3.4.1.tar.gz 3605352 BLAKE2B
de1597ece93f603d6937c19be5a8cd08a69ca5c45f987bf74654909a3dd2ae75b2fb7d6114eec79b3fce2ed24172924eed160e6d42892ae44695e6f4ed67f2dc
SHA512
0eb552f6d535a8d28ee6f986b14c7c21482223854fa0eaf12247fee6e3a5bd8eb3e0c3650e8f269b105ff155f68c36fcf73c280c9ee58e6d0193d7612fc86e4b
DIST instead-3.5.2.tar.gz 3667002 BLAKE2B
a079bb7d7228c6e5934d5d913b33e841a64bf03b8fd2141ededcfcdc643d9d0f1420b09afd4cf83bfbac05f2c26f2d0fee0b4a056970b8e0d9fc67e66be2217d
SHA512
b9373aba876e5b5a80045e4477e31d891c0b224ef258d7cb8e8d0cf6495b80df5f67b6026f63eafa2580198197b566b801c5d48d616bfd8ae194341496e0bc7a
diff --git a/games-engines/instead/instead-3.4.1.ebuild
b/games-engines/instead/instead-3.4.1.ebuild
deleted file mode 100644
index fd8a673142..0000000000
--- a/games-engines/instead/instead-3.4.1.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PLOCALES="cs de en es fr it nl pt ru uk"
-PLOCALE_BACKUP="en"
-LUA_COMPAT=( lua5-1 luajit )
-
-inherit cmake lua-single plocale
-
-if [[ ${PV} == *9999* ]]; then
- EGIT_REPO_URI="https://github.com/instead-hub/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/instead-hub/${PN}/archive/${PV}.tar.gz ->
${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="INSTEAD text-based quest game engine"
-HOMEPAGE="https://instead.hugeping.ru/"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="doc +iconv +sdl2"
-# gtk3 is forced since gtk2 already near its end-of-life
-# harfbuzz support requres features from SDL2_ttf version which is not yet
released (>2.0.15)
-
-REQUIRED_USE="
- ${LUA_REQUIRED_USE}
-"
-
-BDEPEND="
- virtual/pkgconfig
- ${LUA_DEPS}
-"
-
-SDL_DEPS="
- media-libs/libsdl!VER![sound,video]
- media-libs/sdl!VER!-mixer
- media-libs/sdl!VER!-image
- media-libs/sdl!VER!-ttf
-"
-
-COMMON_DEPEND="
- ${LUA_DEPS}
- sys-libs/zlib
- x11-libs/gtk+:3
- sdl2? ( ${SDL_DEPS//!VER!/2} )
- !sdl2? ( ${SDL_DEPS//!VER!/} )
- iconv? ( >=virtual/libiconv-0-r1 )
-"
-# harfbuzz? (
-# media-libs/harfbuzz
-# media-libs/sdl!VER!-ttf[harfbuzz]
-# )
-
-RDEPEND="${COMMON_DEPEND}"
-DEPEND="${COMMON_DEPEND}"
-
-DOCS=( AUTHORS ChangeLog README.md )
-
-src_prepare() {
- plocale_find_changes "${S}/lang" "" ".ini"
-
- rm_loc() { rm "lang/$1.ini" || die; }
- plocale_for_each_disabled_locale rm_loc
-
- # The docs dir contains some code to build pdf out of the Markdown
docs, but it requires some
- # weird util called multimarkdown, so we will just install the md's
themselfs.
- if use doc; then
- EXTRA_DOCS=()
- for l in $(plocale_get_locales) ${PLOCALE_BACKUP}; do
- for d in "docs/modules-$l.md" "docs/stead3-$l.md"; do
- if [[ -f "$d" ]]; then
- EXTRA_DOCS=( "${EXTRA_DOCS[@]}" "$d" )
- fi
- done
- done
-
- DOCS=( "${DOCS[@]}" "${EXTRA_DOCS[@]}" )
- fi
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DWITH_GTK2=OFF
- -DWITH_GTK3=ON
- -DWITH_LUAJIT="$(usex lua_single_target_luajit)"
- -DWITH_ICONV="$(usex iconv)"
- -DWITH_SDL2="$(usex sdl2)"
- )
-# -DWITH_HARFBUZZ="$(usex harfbuzz)"
-
- cmake_src_configure
-}
-
-pkg_postinst() {
- elog "The instead package contains only a game engine. The actual"
- elog "games have to be installed separately. To install a game"
- elog "download an archive and extract it to ~/.instead/games or"
- elog "to ${EPREFIX}/usr/share/instead/games."
- elog ""
- elog "A collection of various games can be found at:"
- elog " https://instead.itch.io/"
- elog " http://instead-games.ru/"
- elog ""
- elog "Also there are some third-party tools to manage download"
- elog "and installation of games like insteadman3:"
- elog " https://jhekasoft.github.io/insteadman"
-
-}
diff --git a/games-engines/instead/instead-3.5.2.ebuild
b/games-engines/instead/instead-3.5.2.ebuild
index e8e175fc72..61e8acf1cf 100644
--- a/games-engines/instead/instead-3.5.2.ebuild
+++ b/games-engines/instead/instead-3.5.2.ebuild
@@ -40,7 +40,7 @@ COMMON_DEPEND="
media-libs/sdl2-image
media-libs/sdl2-mixer
media-libs/sdl2-ttf
- sys-libs/zlib
+ virtual/zlib:=
x11-libs/gtk+:3
iconv? ( >=virtual/libiconv-0-r1 )
harfbuzz? (
diff --git a/games-engines/instead/instead-9999.ebuild
b/games-engines/instead/instead-9999.ebuild
index e8e175fc72..61e8acf1cf 100644
--- a/games-engines/instead/instead-9999.ebuild
+++ b/games-engines/instead/instead-9999.ebuild
@@ -40,7 +40,7 @@ COMMON_DEPEND="
media-libs/sdl2-image
media-libs/sdl2-mixer
media-libs/sdl2-ttf
- sys-libs/zlib
+ virtual/zlib:=
x11-libs/gtk+:3
iconv? ( >=virtual/libiconv-0-r1 )
harfbuzz? (
diff --git a/games-engines/instead/metadata.xml
b/games-engines/instead/metadata.xml
index 913f271e0d..59f31608d9 100644
--- a/games-engines/instead/metadata.xml
+++ b/games-engines/instead/metadata.xml
@@ -8,7 +8,6 @@
<use>
<flag name="doc">Include some additional documentation on how
to create games for the instead engine</flag>
<flag name="harfbuzz">Use <pkg>media-libs/harfbuzz</pkg> for
better support of RTL languages</flag>
- <flag name="sdl2">Use libsdl2 instead of libsdl</flag>
</use>
<longdescription lang="en">INSTEAD is a tool to make and run
textographic games. The exact look and feel of such games may vary from
interactive fiction and visual novels to classic point & click or
text-based adventures.</longdescription>
<longdescription lang="ru">INSTEAD это инструмент для создания и
запуска текстографические игр. Жанр конкретных игр может отличаться и находится
на стыке интерактивной литературы, визуальных новелл, а также классических
point & click и тескстовых квестов.</longdescription>