blob: bd20d8628d43ba8b02960226f3784b5f01197a53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit eutils cmake-utils qt4-r2 git-r3
DESCRIPTION="A PSP emulator for Android, Windows, Mac, Linux and Blackberry 10, written in C++."
HOMEPAGE="http://www.ppsspp.org/"
EGIT_REPO_URI="git://github.com/hrydgard/ppsspp.git"
EGIT_COMMIT="v${PV}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="qt4 +sdl"
REQUIRED_USE="
?? ( qt4 sdl )
"
RDEPEND=""
DEPEND="sys-libs/zlib
sdl? ( media-libs/libsdl )
sdl? ( media-libs/libsdl2 )
sdl? ( dev-util/cmake )
qt4? ( dev-qt/qtcore:4 )
qt4? ( dev-qt/qtgui:4 )
qt4? ( dev-qt/qtmultimedia:4 )
qt4? ( dev-qt/qtopengl:4 )
qt4? ( dev-qt/qtsvg:4 )
qt4? ( dev-qt/qt-mobility[multimedia] )"
src_unpack() {
git-r3_fetch
git-r3_checkout
if use qt4 ; then
cd "${WORKDIR}"/"${P}"/Qt
qt4-r2_src_unpack
fi
cp /usr/portage/distfiles/ppsspp-icon.png "${WORKDIR}"/"${P}"/
}
src_prepare() {
epatch "$FILESDIR"/ppsspp-cmake.patch
epatch "$FILESDIR"/ppsspp-ffmpeg-x86_64.patch
epatch "$FILESDIR"/ppsspp-ffmpeg-x86.patch
epatch "$FILESDIR"/ppsspp-qt.patch
if use qt4 ; then
cd "${WORKDIR}"/"${P}"/Qt
qt4-r2_src_prepare
else
cmake-utils_src_prepare
fi
}
src_configure() {
if use qt4 ; then
cd "${WORKDIR}"/"${P}"/Qt
qt4-r2_src_configure
eqmake4 "${WORKDIR}"/"${P}"/Qt/PPSSPPQt.pro
else
cmake-utils_src_configure
fi
}
src_compile() {
if use qt4 ; then
cd "${WORKDIR}"/"${P}"/Qt
qt4-r2_src_compile
else
cmake-utils_src_compile
fi
}
src_install() {
if use qt4 ; then
exeinto /usr/games/bin
newexe "${WORKDIR}"/"${P}"/Qt/ppsspp ppsspp
else
/usr/games
dobin "${FILESDIR}"/ppsspp
exeinto /usr/share/games/"${PN}"
doexe "${WORKDIR}"/"${P}"_build/PPSSPPSDL
insinto /usr/share/games/"${PN}"
doins -r "${WORKDIR}"/"${P}"_build/assets
doins -r "${WORKDIR}"/"${P}"/lang
fi
insinto /usr/share/icons/
newins "${WORKDIR}"/"${P}"/source_assets/image/icon_regular_72.png ppsspp-icon.png
domenu "${FILESDIR}"/ppsspp.desktop
}
|