games-fps/dsda-doom: drop 0.29.2

Signed-off-by: Kacper Słomiński <kacper.slominski72@gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/43161
Closes: https://github.com/gentoo/gentoo/pull/43161
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
This commit is contained in:
Kacper Słomiński
2025-07-25 23:40:45 +02:00
committed by James Le Cuirot
parent f2cab392e7
commit c93a132bf9
2 changed files with 0 additions and 60 deletions

View File

@@ -1,2 +1 @@
DIST dsda-doom-0.29.2.tar.gz 11123309 BLAKE2B f158db227fec578fa6d316c1bbf0e0e8d0b716f774b94f5666fb0e9eee228358bfe31896e4f2ca4d8bb3ad546f3bcad374be9763e36f6b8fa515eba448cf64d4 SHA512 8a4a721361d7d23ea8ac9596dc53ead3bc6e25787a0a07f5fa8c6c531589c457098b1c2f9b6edd70ae2c2ae72fc4cebf780c81e7d18431ee28b6fc0dad8434ce
DIST dsda-doom-0.29.3.tar.gz 11124953 BLAKE2B c87590f8e660f6898483b6c6d777ac50f771b965f29ff6cca111e8689627b44d2a93db1a4429b7584a7f07b80c4018f36b43ae48cdd9e4cf89894bf6178e686f SHA512 82b35d1b4e1ec6993559d6d104d7a81fcea1038f0ee98311b5a546005c13911cd0ddc17b11e9b9a8631a87c4e743e01bef945f9b230bb4db0b8e225c802a2aa2

View File

@@ -1,59 +0,0 @@
# Copyright 2019-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake desktop xdg
DESCRIPTION="Successor to the PrBoom+ Doom source port"
HOMEPAGE="https://github.com/kraflab/dsda-doom/"
SRC_URI="https://github.com/kraflab/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${P}/prboom2"
LICENSE="GPL-2+ GPL-3+ BSD BSD-2 BSD-with-disclosure CC-BY-3.0 CC0-1.0 LGPL-2.1+ MIT public-domain"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
IUSE="openmpt fluidsynth mad portmidi sdl2-image vorbis"
DEPEND="
dev-libs/libzip:=
media-libs/libsdl2[opengl,joystick,sound,video]
media-libs/sdl2-mixer[midi]
sys-libs/zlib:=
virtual/glu
virtual/opengl
fluidsynth? ( media-sound/fluidsynth:= )
mad? ( media-libs/libmad )
openmpt? ( media-libs/libopenmpt )
portmidi? ( media-libs/portmidi )
sdl2-image? ( media-libs/sdl2-image )
vorbis? ( media-libs/libvorbis )
"
RDEPEND="${DEPEND}"
src_prepare() {
eapply -p2 "${FILESDIR}/${PN}-0.29.0-versioned-doc.patch"
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DWITH_IMAGE="$(usex sdl2-image)"
-DWITH_MAD="$(usex mad)"
-DWITH_FLUIDSYNTH="$(usex fluidsynth)"
-DWITH_LIBOPENMPT="$(usex openmpt)"
-DWITH_VORBISFILE="$(usex vorbis)"
-DWITH_PORTMIDI="$(usex portmidi)"
-DDOOMWADDIR="${EPREFIX}/usr/share/doom"
-DDSDAPWADDIR="${EPREFIX}/usr/share/${PF}"
-DWAD_DATA_PATH="${EPREFIX}/usr/share/doom"
)
cmake_src_configure
}
src_install() {
doicon -s scalable ICONS/${PN}.svg
domenu ICONS/${PN}.desktop
cmake_src_install
}