games-fps/dsda-doom: drop 0.29.0

Signed-off-by: Kacper Słomiński <kacper.slominski72@gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/42780
Closes: https://github.com/gentoo/gentoo/pull/42780
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Kacper Słomiński 2025-06-27 15:19:00 +02:00 committed by Sam James
parent c5d12526fc
commit 6cc5219092
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
2 changed files with 0 additions and 60 deletions

View File

@ -1,2 +1 @@
DIST dsda-doom-0.29.0.tar.gz 11119982 BLAKE2B 8f364465b055702d459ecb74f858f8f68459baa42cd113c5815b8e4612c4f8db16846fac092690310a416a7313ce465cc731c23bd6aa298f6f12540928389dc0 SHA512 34c30f351530ec5ef2d0f9d31e9cf1f362c3a77552388416ddc5d7f54c69756b37bb2b65959237a81028838bd34b06552a6a3d939266ddd19b8102f977c2d731
DIST dsda-doom-0.29.2.tar.gz 11123309 BLAKE2B f158db227fec578fa6d316c1bbf0e0e8d0b716f774b94f5666fb0e9eee228358bfe31896e4f2ca4d8bb3ad546f3bcad374be9763e36f6b8fa515eba448cf64d4 SHA512 8a4a721361d7d23ea8ac9596dc53ead3bc6e25787a0a07f5fa8c6c531589c457098b1c2f9b6edd70ae2c2ae72fc4cebf780c81e7d18431ee28b6fc0dad8434ce

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="A 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="fluidsynth mad portmidi sdl2-image vorbis"
DEPEND="
media-libs/libsdl2[opengl,joystick,sound,video]
media-libs/sdl2-mixer[midi]
fluidsynth? ( media-sound/fluidsynth:= )
mad? ( media-libs/libmad )
portmidi? ( media-libs/portmidi )
sdl2-image? ( media-libs/sdl2-image )
media-libs/sdl2-mixer[midi]
vorbis? ( media-libs/libvorbis )
dev-libs/libzip:=
sys-libs/zlib:=
virtual/glu
virtual/opengl
"
RDEPEND="${DEPEND}"
src_prepare() {
eapply -p2 "${FILESDIR}/${P}-versioned-doc.patch"
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DWITH_IMAGE="$(usex sdl2-image)"
-DWITH_MAD="$(usex mad)"
-DWITH_FLUIDSYNTH="$(usex fluidsynth)"
-DWITH_DUMB="OFF"
-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
}