commit:     4e12e50acddb7a57346c6d1417b55ace2aa1a282
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 22 13:10:39 2023 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Jun 22 13:10:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e12e50a

games-emulation/pcsxr: treeclean

Closes: https://bugs.gentoo.org/791034
Closes: https://bugs.gentoo.org/631202
Closes: https://bugs.gentoo.org/858713
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 games-emulation/pcsxr/Manifest                     |  1 -
 games-emulation/pcsxr/metadata.xml                 | 17 -----
 .../pcsxr/pcsxr-1.9.94_p20190306-r1.ebuild         | 78 --------------------
 games-emulation/pcsxr/pcsxr-9999.ebuild            | 84 ----------------------
 profiles/package.mask                              |  7 --
 5 files changed, 187 deletions(-)

diff --git a/games-emulation/pcsxr/Manifest b/games-emulation/pcsxr/Manifest
deleted file mode 100644
index c0a4d7dbe862..000000000000
--- a/games-emulation/pcsxr/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pcsxr-62467b86871aee3d70c7445f3cb79f0858ec566e.tar.gz 2229537 BLAKE2B 
2f5c11c16d79b6747ccc5f7c655e99663a882e264548c136ff6d4b1321788a10b1475c023e0c7e0892aeb94032c522f2a0e6312e6cf66f608e1a1d7897aea809
 SHA512 
894e795c3616bb6abf87d144e1a2409142d457f2f2c04c4287e2804bb06caf008f42501089d555b5e43e6b2d6d2e8ac9a7d78842bed975b1b4b94465f4ed3a3c

diff --git a/games-emulation/pcsxr/metadata.xml 
b/games-emulation/pcsxr/metadata.xml
deleted file mode 100644
index 4e9ff70c12d5..000000000000
--- a/games-emulation/pcsxr/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <maintainer type="person">
-               <email>[email protected]</email>
-               <name>Michał Górny</name>
-       </maintainer>
-       <use>
-               <flag name="archive">Support compressed files (via 
libarchive)</flag>
-               <flag name="ccdda">Support compressed CDDA (requires 
ffmpeg)</flag>
-               <flag name="cdio">Use libcdio for CD support</flag>
-               <flag name="sdl">Use SDL sound backend (other parts of SDL are 
used unconditionally)</flag>
-       </use>
-       <upstream>
-               <remote-id type="github">iCatButler/pcsxr</remote-id>
-       </upstream>
-</pkgmetadata>

diff --git a/games-emulation/pcsxr/pcsxr-1.9.94_p20190306-r1.ebuild 
b/games-emulation/pcsxr/pcsxr-1.9.94_p20190306-r1.ebuild
deleted file mode 100644
index 00c5ae6261ef..000000000000
--- a/games-emulation/pcsxr/pcsxr-1.9.94_p20190306-r1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit flag-o-matic xdg cmake
-
-EGIT_COMMIT="62467b86871aee3d70c7445f3cb79f0858ec566e"
-MY_P=${PN}-${EGIT_COMMIT}
-DESCRIPTION="PCSX-Reloaded: a fork of PCSX, the discontinued Playstation 
emulator"
-HOMEPAGE="https://github.com/iCatButler/pcsxr";
-SRC_URI="https://github.com/iCatButler/pcsxr/archive/${EGIT_COMMIT}.tar.gz -> 
${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="GPL-2 public-domain"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE="alsa archive ccdda cdio openal oss pulseaudio +sdl"
-REQUIRED_USE="?? ( alsa openal oss pulseaudio sdl )"
-
-RDEPEND="
-       dev-libs/glib:2
-       media-libs/libsdl2[joystick]
-       sys-libs/zlib:=
-       x11-libs/gtk+:3
-       x11-libs/libX11
-       x11-libs/libXext
-       x11-libs/libXtst
-       x11-libs/libXv
-       x11-libs/libXxf86vm
-       virtual/libintl
-       virtual/opengl
-       archive? ( app-arch/libarchive:= )
-       alsa? ( media-libs/alsa-lib:= )
-       cdio? ( dev-libs/libcdio:= )
-       ccdda? ( >=media-video/ffmpeg-3:= )
-       openal? ( media-libs/openal:= )
-       pulseaudio? ( media-sound/pulseaudio:= )
-       sdl? ( media-libs/libsdl2:=[sound] )"
-DEPEND="${RDEPEND}
-       x11-base/xorg-proto"
-BDEPEND="
-       app-arch/unzip
-       sys-devel/gettext:0"
-
-src_configure() {
-       append-cflags -fcommon
-       local sound_backend
-
-       if use pulseaudio; then
-               sound_backend=pulse
-       elif use sdl; then
-               sound_backend=sdl
-       elif use openal; then
-               sound_backend=openal
-       elif use alsa; then
-               sound_backend=alsa
-       elif use oss; then
-               sound_backend=oss
-       else
-               sound_backend=null
-       fi
-
-       local mycmakeargs=(
-               -DENABLE_CCDDA=$(usex ccdda)
-               -DUSE_LIBARCHIVE=$(usex archive)
-               -DUSE_LIBCDIO=$(usex cdio)
-               -DSND_BACKEND=${sound_backend}
-       )
-
-       cmake_src_configure
-}
-
-src_install() {
-       cmake_src_install
-       mv "${ED}"/usr/share/doc/pcsxr/* "${ED}/usr/share/doc/${PF}/" || die
-       rmdir "${ED}"/usr/share/doc/pcsxr || die
-}

diff --git a/games-emulation/pcsxr/pcsxr-9999.ebuild 
b/games-emulation/pcsxr/pcsxr-9999.ebuild
deleted file mode 100644
index 98a280011f20..000000000000
--- a/games-emulation/pcsxr/pcsxr-9999.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit cmake git-r3 xdg-utils
-
-DESCRIPTION="PCSX-Reloaded: a fork of PCSX, the discontinued Playstation 
emulator"
-HOMEPAGE="https://github.com/iCatButler/pcsxr";
-EGIT_REPO_URI="https://github.com/iCatButler/pcsxr";
-
-LICENSE="GPL-2 public-domain"
-SLOT="0"
-KEYWORDS=""
-
-IUSE="alsa archive ccdda cdio openal oss pulseaudio +sdl"
-REQUIRED_USE="?? ( alsa openal oss pulseaudio sdl )"
-
-RDEPEND="
-       dev-libs/glib:2
-       media-libs/libsdl2[joystick]
-       sys-libs/zlib:=
-       x11-libs/gtk+:3
-       x11-libs/libX11
-       x11-libs/libXext
-       x11-libs/libXtst
-       x11-libs/libXv
-       x11-libs/libXxf86vm
-       virtual/libintl
-       virtual/opengl
-       archive? ( app-arch/libarchive:= )
-       alsa? ( media-libs/alsa-lib:= )
-       cdio? ( dev-libs/libcdio:= )
-       ccdda? ( >=media-video/ffmpeg-3:= )
-       openal? ( media-libs/openal:= )
-       pulseaudio? ( media-sound/pulseaudio:= )
-       sdl? ( media-libs/libsdl2:=[sound] )
-"
-DEPEND="${RDEPEND}
-       x11-base/xorg-proto"
-BDEPEND="
-       app-arch/unzip
-       sys-devel/gettext:0
-"
-
-src_configure() {
-       local sound_backend
-
-       if use pulseaudio; then
-               sound_backend=pulse
-       elif use sdl; then
-               sound_backend=sdl
-       elif use openal; then
-               sound_backend=openal
-       elif use alsa; then
-               sound_backend=alsa
-       elif use oss; then
-               sound_backend=oss
-       else
-               sound_backend=null
-       fi
-
-       local mycmakeargs=(
-               -DENABLE_CCDDA=$(usex ccdda)
-               -DUSE_LIBARCHIVE=$(usex archive)
-               -DUSE_LIBCDIO=$(usex cdio)
-               -DSND_BACKEND=${sound_backend}
-       )
-
-       cmake_src_configure
-}
-
-src_install() {
-       cmake_src_install
-       mv "${ED}"/usr/share/doc/pcsxr/* "${ED}/usr/share/doc/${PF}/" || die
-       rmdir "${ED}"/usr/share/doc/pcsxr || die
-}
-
-pkg_postinst() {
-       xdg_icon_cache_update
-}
-
-pkg_postrm() {
-       xdg_icon_cache_update
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index aa57feee9b4d..4c1da34fa8eb 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -327,13 +327,6 @@ dev-vcs/cvsync
 # anymore. Removal on 2023-06-13.
 dev-tex/cpp2latex
 
-# Michał Górny <[email protected]> (2023-05-13)
-# Unmaintained.  Does not build anymore.  No activity upstream
-# since 2019, the build system is messy and fixing the issues would take
-# a lot of effort.
-# Removal on 2023-06-12.  Bug #791034.
-games-emulation/pcsxr
-
 # Sam James <[email protected]> (2023-05-10)
 # A major reverse depndency (kde-apps/libkexiv2) does not yet build against 
this
 # so mask for now, see bug #906087 and bug #906090.

Reply via email to