blob: 8459546cd2c1ba402e9365980b57d9c3d643e39d (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
ESVN_REPO_URI="https://pcsx2.svn.sourceforge.net/svnroot/pcsx2/plugins/pad/zeropad"
inherit eutils games subversion autotools
DESCRIPTION="PS2Emu pad plugin"
HOMEPAGE="http://www.pcsx2.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="debug"
RDEPEND=">=x11-libs/gtk+-2"
DEPEND="${RDEPEND}
x11-proto/xproto"
S="${WORKDIR}/zeropad"
src_unpack() {
subversion_src_unpack
cd "${S}"
epatch "${FILESDIR}/${PN}-consistent-naming.patch"
sed -r -i \
-e '/C(..)?FLAGS=/d' \
-e 's/-O[0-9]\b//g' \
-e 's/-fomit-frame-pointer\b//g' \
-e 's/C(..)?FLAGS\+="/C\1FLAGS+=" /' \
configure.ac || die
eautoreconf -v --install || die
}
src_compile() {
egamesconf $(use_enable debug) || die
emake || die
}
src_install() {
exeinto "$(games_get_libdir)/ps2emu/plugins"
doexe libZeroPAD.so.* || die
prepgamesdirs
}
|