blob: 43af65fdadbe24d422859f91ad45e3f59d1d8466 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/stella-2.6.1.ebuild,v 1.3 2008/07/24 17:53:58 armin76 Exp $
inherit eutils games
DESCRIPTION="Stella Atari 2600 VCS Emulator"
HOMEPAGE="http://stella.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE="opengl"
DEPEND="media-libs/libsdl
media-libs/libpng
opengl? ( virtual/opengl )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gcc43.patch
sed -i \
-e '/INSTALL/s/-s //' \
-e '/STRIP/d' \
-e "/icons/d" \
-e '/INSTALL.*DOCDIR/d' \
-e '/INSTALL.*\/applications/d' \
Makefile \
|| die "sed failed"
}
src_compile() {
# not an autoconf script
./configure \
--prefix="/usr" \
--bindir="${GAMES_BINDIR}" \
--docdir="/usr/share/doc/${PF}" \
--datadir="${GAMES_DATADIR}" \
$(use_enable opengl gl) \
|| die
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
doicon src/common/stella.png
make_desktop_entry stella Stella
dohtml -r docs/*
dodoc Announce.txt Changes.txt Copyright.txt README-GP2X.txt README-SDL.txt Readme.txt Todo.txt
prepgamesdirs
}
|