blob: 3009f8c183d0997345e9bc2716c45a3caa8dcda7 (
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
|
# Copyright 1999-2004 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.6 2004/08/03 11:21:57 dholm Exp $
inherit 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="x86 alpha ~amd64 ~ppc"
IUSE=""
DEPEND="virtual/opengl
virtual/x11
media-libs/libsdl
media-libs/sdl-image
media-libs/sdl-mixer"
S=${WORKDIR}/${MY_P}
src_compile() {
egamesconf \
--with-x \
|| die
emake -j1 CXXFLAGS="${CXXFLAGS}" || die "emake failed"
}
src_install() {
dodoc INSTALL 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)"
dosed 's:-I${prefix}/include/pinball:-I/usr/include/pinball:' /usr/bin/pinball-config
prepgamesdirs
}
|