blob: d6d13484644954dfbf5639fcd2dad757fe724bed (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/emilia-pinball/emilia-pinball-0.3.1.ebuild,v 1.13 2006/12/01 20:44:26 wolf31o2 Exp $
inherit eutils games
MY_PN=${PN/emilia-/}
MY_P=${MY_PN}-${PV}
DESCRIPTION="SDL OpenGL pinball game"
HOMEPAGE="http://pinball.sourceforge.net/"
SRC_URI="mirror://sourceforge/pinball/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc ~sparc x86"
IUSE=""
RDEPEND="virtual/opengl
x11-libs/libSM
media-libs/libsdl
media-libs/sdl-image
media-libs/sdl-mixer"
DEPEND="${RDEPEND}
x11-libs/libXt"
S=${WORKDIR}/${MY_P}
src_compile() {
egamesconf \
--with-x \
|| die
emake -j1 CXXFLAGS="${CXXFLAGS}" || die "emake failed"
}
src_install() {
dodoc README || die "dodoc failed"
make DESTDIR="${D}" install || die "make install failed"
dosym "${GAMES_BINDIR}"/pinball "${GAMES_BINDIR}"/emilia-pinball
mv "${D}/${GAMES_PREFIX}/include" "${D}/usr/" \
|| die "mv failed (include)"
dodir /usr/bin
mv "${D}/${GAMES_BINDIR}/pinball-config" "${D}/usr/bin/" \
|| die "mv failed (bin)"
sed -i \
-e 's:-I${prefix}/include/pinball:-I/usr/include/pinball:' \
"${D}"/usr/bin/pinball-config || die "sed failed"
newicon data/pinball.xpm ${PN}.xpm
make_desktop_entry emilia-pinball "Emilia pinball" ${PN}.xpm
prepgamesdirs
}
|