blob: 4b25e85945f4e4c4da7277091bbbf57801a6d509 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools toolchain-funcs
MY_P="${PN}-${PV/_p/-cbiere-r}"
DESCRIPTION="Sega Genesis / Mega Drive emulator"
HOMEPAGE="http://www.squish.net/generator/"
SRC_URI="http://www.squish.net/generator/cbiere/generator/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+sdlaudio"
RDEPEND="
virtual/jpeg:0
media-libs/libsdl[joystick,video]
sdlaudio? ( media-libs/libsdl[sound] )"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"
PATCHES=(
"${FILESDIR}"/${P}-autoconf.patch
"${FILESDIR}"/${P}-automake.patch
"${FILESDIR}"/${P}-gcc.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
--with-cmz80 \
--with-sdl \
--without-tcltk \
--with-gcc=$(gcc-major-version) \
$(use_with sdlaudio sdl-audio)
}
src_install() {
dobin main/generator-sdl
einstalldocs
dodoc -r docs/.
}
|