summaryrefslogtreecommitdiff
path: root/games-engines/ponscripter-fork
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /games-engines/ponscripter-fork
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'games-engines/ponscripter-fork')
-rw-r--r--games-engines/ponscripter-fork/Manifest1
-rw-r--r--games-engines/ponscripter-fork/metadata.xml11
-rw-r--r--games-engines/ponscripter-fork/ponscripter-fork-3.0.2-r1.ebuild65
3 files changed, 0 insertions, 77 deletions
diff --git a/games-engines/ponscripter-fork/Manifest b/games-engines/ponscripter-fork/Manifest
deleted file mode 100644
index 6c3bf3be2a56..000000000000
--- a/games-engines/ponscripter-fork/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ponscripter-fork-3.0.2.tar.gz 34953189 BLAKE2B b34c7ad22ba489b8bc6dbc4f3b8113aa8c62849f91f8376740045c9125646b32b405e5d2caaf9cbdeb506bf1403f971751f361243945c68c32710cd9f3c5bd22 SHA512 96d02776d4a21bb6dd7993039b21521a6297cc9eda045b842c4f868c7ead6ab6e5d2d28b32d677636704add39efbe7e306825c71ef34cf6d1100b88295d46f30
diff --git a/games-engines/ponscripter-fork/metadata.xml b/games-engines/ponscripter-fork/metadata.xml
deleted file mode 100644
index 0924cbd008de..000000000000
--- a/games-engines/ponscripter-fork/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>contact@hacktivis.me</email>
- <name>Haelwenn (lanodan) Monnier</name>
- </maintainer>
- <upstream>
- <remote-id type="github">07th-mod/ponscripter-fork</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/games-engines/ponscripter-fork/ponscripter-fork-3.0.2-r1.ebuild b/games-engines/ponscripter-fork/ponscripter-fork-3.0.2-r1.ebuild
deleted file mode 100644
index 6442579710c7..000000000000
--- a/games-engines/ponscripter-fork/ponscripter-fork-3.0.2-r1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 2023-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="Fork of the Ponscripter visual novel engine to take advantage of SDL2"
-HOMEPAGE="https://github.com/07th-mod/ponscripter-fork"
-SRC_URI="https://github.com/07th-mod/ponscripter-fork/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE="+mpeg +ogg"
-
-RDEPEND="
- media-libs/libsdl2
- media-libs/sdl2-image[jpeg,png]
- media-libs/sdl2-mixer
- app-arch/bzip2:=
- media-libs/freetype
- virtual/jpeg
- media-libs/libogg
- media-libs/libpng
- media-libs/libvorbis
- media-libs/smpeg2
- virtual/zlib:=
-"
-DEPEND="${RDEPEND}"
-
-BDEPEND="
- app-text/xmlto
- dev-lang/perl
-"
-
-src_prepare() {
- default
-
- rm -r src/extlib || die "Failed to remove bundled libraries"
- rm -r src/win_dll || die "Failed to remove Windows binaries"
-
- # Broken test for SDL2_Mixer
- sed -i '/^if \$EXTERNAL_SDL_MIXER$/,/^fi$/d' configure || die
-}
-
-src_configure() {
- tc-export CC CXX AR RANLIB
-
- export STRIPPROG=true
-
- # not autoconf
- ./configure \
- --no-werror \
- --unsupported-compiler \
- --prefix="${EPREFIX}/usr" \
- --disable-internal-libs \
- --disable-steam || die
-}
-
-src_install() {
- einstalldocs
- emake PREFIX="${ED}/usr" install
- mv "${ED}/usr/man" "${ED}/usr/share" || die
-}