115 lines
2.6 KiB
Bash
115 lines
2.6 KiB
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
inherit autotools ltprune versionator
|
|
|
|
DESCRIPTION="PCSX-Reloaded: a fork of PCSX, the discontinued Playstation emulator"
|
|
HOMEPAGE="http://pcsxr.codeplex.com"
|
|
# codeplex doesn't support direct downloads but GPL-2 doesn't mind me
|
|
# mirroring it.
|
|
SRC_URI="https://dev.gentoo.org/~mgorny/dist/${P}.zip"
|
|
|
|
LICENSE="GPL-2 public-domain"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE="alsa cdio ffmpeg libav nls openal opengl oss pulseaudio +sdl"
|
|
REQUIRED_USE="?? ( alsa openal oss pulseaudio sdl )"
|
|
|
|
# pcsxr supports both SDL1 and SDL2 but uses the newer version installed
|
|
# since SDL is not properly slotted in Gentoo, just fix it on SDL2
|
|
|
|
RDEPEND="
|
|
dev-libs/glib:2=
|
|
media-libs/libsdl:0=[joystick]
|
|
sys-libs/zlib:0=
|
|
x11-libs/gtk+:3=
|
|
x11-libs/libX11:0=
|
|
x11-libs/libXext:0=
|
|
x11-libs/libXtst:0=
|
|
x11-libs/libXv:0=
|
|
alsa? ( media-libs/alsa-lib:0= )
|
|
cdio? ( dev-libs/libcdio:0= )
|
|
ffmpeg? (
|
|
!libav? ( >=media-video/ffmpeg-3:0= )
|
|
libav? ( media-video/libav:0= ) )
|
|
nls? ( virtual/libintl:0= )
|
|
openal? ( media-libs/openal:0= )
|
|
opengl? ( virtual/opengl:0=
|
|
x11-libs/libXxf86vm:0= )
|
|
pulseaudio? ( media-sound/pulseaudio:0= )
|
|
sdl? ( media-libs/libsdl:0=[sound] )
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
app-arch/unzip
|
|
dev-util/intltool
|
|
x11-base/xorg-proto
|
|
nls? ( sys-devel/gettext:0 )
|
|
x86? ( dev-lang/nasm )
|
|
"
|
|
|
|
# it's only the .po file check that fails :)
|
|
RESTRICT=test
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-disable-sdl2.patch
|
|
"${FILESDIR}"/${P}-zlib-uncompress2.patch
|
|
"${FILESDIR}"/${P}-ffmpeg3.patch
|
|
)
|
|
|
|
S="${WORKDIR}/${PN}"
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
local sound_backend
|
|
|
|
if use alsa; then
|
|
sound_backend=alsa
|
|
elif use oss; then
|
|
sound_backend=oss
|
|
elif use pulseaudio; then
|
|
sound_backend=pulseaudio
|
|
elif use sdl; then
|
|
sound_backend=sdl
|
|
elif use openal; then
|
|
sound_backend=openal
|
|
else
|
|
sound_backend=null
|
|
fi
|
|
|
|
local myconf=(
|
|
$(use_enable nls)
|
|
$(use_enable cdio libcdio)
|
|
$(use_enable opengl)
|
|
$(use_enable ffmpeg ccdda)
|
|
--enable-sound=${sound_backend}
|
|
)
|
|
|
|
econf "${myconf[@]}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
prune_libtool_files --all
|
|
|
|
dodoc doc/{keys,tweaks}.txt
|
|
}
|
|
|
|
pkg_postinst() {
|
|
local vr
|
|
for vr in ${REPLACING_VERSIONS}; do
|
|
if ! version_is_at_least 1.9.94-r1 ${vr}; then
|
|
ewarn "Starting with pcsxr-1.9.94-r1, the plugin install path has changed."
|
|
ewarn "In order for pcsxr to find plugins, you will need to remove stale"
|
|
ewarn "symlinks from ~/.pcsxr/plugins. You can do this using the following"
|
|
ewarn "command (as your regular user):"
|
|
ewarn
|
|
ewarn " $ find ~/.pcsxr/plugins/ -type l -delete"
|
|
fi
|
|
done
|
|
}
|