public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/pcsxr/
Date: Sun, 12 Jan 2020 13:00:03 +0000 (UTC)	[thread overview]
Message-ID: <1578833995.17393d422c1324d7c7c0364ea0205a3b4c6b322b.mgorny@gentoo> (raw)

commit:     17393d422c1324d7c7c0364ea0205a3b4c6b322b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 12 12:52:51 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jan 12 12:59:55 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17393d42

games-emulation/pcsxr: Bump to 1.9.94_p20190306 snapshot

Closes: https://bugs.gentoo.org/647336
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 games-emulation/pcsxr/Manifest                     |  1 +
 .../pcsxr/pcsxr-1.9.94_p20190306.ebuild            | 91 ++++++++++++++++++++++
 2 files changed, 92 insertions(+)

diff --git a/games-emulation/pcsxr/Manifest b/games-emulation/pcsxr/Manifest
index 84560f3e522..1d6c9ecd7d6 100644
--- a/games-emulation/pcsxr/Manifest
+++ b/games-emulation/pcsxr/Manifest
@@ -1 +1,2 @@
 DIST pcsxr-1.9.94.zip 2631125 BLAKE2B 686503faffccc820bcac73bc69056ffe05176779ee49b834ce0da84c40a047b7882ca7b91a7b7f95ab153329ca6368ae545bbe567cac6a9bdba1a434c397862c SHA512 c49471c27692fbf22da32d2f5697a1dfed3dbdbfdb86cb789b0ea6cddb2a7da4f3390e4568f4e9385bf30d6baff0f2a591a80f424cf0c640cae0035ba81dce39
+DIST pcsxr-62467b86871aee3d70c7445f3cb79f0858ec566e.tar.gz 2229537 BLAKE2B 2f5c11c16d79b6747ccc5f7c655e99663a882e264548c136ff6d4b1321788a10b1475c023e0c7e0892aeb94032c522f2a0e6312e6cf66f608e1a1d7897aea809 SHA512 894e795c3616bb6abf87d144e1a2409142d457f2f2c04c4287e2804bb06caf008f42501089d555b5e43e6b2d6d2e8ac9a7d78842bed975b1b4b94465f4ed3a3c

diff --git a/games-emulation/pcsxr/pcsxr-1.9.94_p20190306.ebuild b/games-emulation/pcsxr/pcsxr-1.9.94_p20190306.ebuild
new file mode 100644
index 00000000000..d51b0296bea
--- /dev/null
+++ b/games-emulation/pcsxr/pcsxr-1.9.94_p20190306.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit cmake-utils xdg-utils
+
+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 libav 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? (
+		!libav? ( >=media-video/ffmpeg-3:= )
+		libav? ( media-video/libav:= )
+	)
+	openal? ( media-libs/openal:= )
+	pulseaudio? ( media-sound/pulseaudio:= )
+	sdl? ( media-libs/libsdl2:=[sound] )
+"
+DEPEND="${RDEPEND}
+	x11-base/xorg-proto"
+BDEPEND="
+	app-arch/unzip
+	dev-util/intltool
+	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-utils_src_configure
+}
+
+src_install() {
+	cmake-utils_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
+}


             reply	other threads:[~2020-01-12 13:00 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-12 13:00 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-05-06 11:34 [gentoo-commits] repo/gentoo:master commit in: games-emulation/pcsxr/ Sam James
2023-05-06 11:34 Sam James
2021-02-20 19:32 David Seifert
2020-06-08  8:56 Michał Górny
2020-04-25 20:14 Mikle Kolyada
2020-01-08 13:58 Michał Górny
2020-01-08 12:29 Michał Górny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1578833995.17393d422c1324d7c7c0364ea0205a3b4c6b322b.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox