blob: 54f2088f8b0be23a3663488281368036296b7627 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/xpilot-ng/xpilot-ng-4.6.6.ebuild,v 1.4 2006/12/01 20:01:36 wolf31o2 Exp $
inherit games
DESCRIPTION="Improvement of the multiplayer space game XPilot"
HOMEPAGE="http://xpilot.sourceforge.net/"
SRC_URI="mirror://sourceforge/xpilot/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE="openal sdl"
RDEPEND="x11-libs/libX11
x11-libs/libICE
x11-libs/libSM
>=dev-libs/expat-1.1
>=sys-libs/zlib-1.1.3
openal? ( media-libs/openal )
sdl? (
virtual/opengl
>=media-libs/libsdl-1.2.0
>=media-libs/sdl-image-1.0
>=media-libs/sdl-ttf-2.0 )"
DEPEND="${RDEPEND}
x11-proto/xextproto
x11-proto/xproto
x11-libs/libXt"
src_compile() {
egamesconf \
--disable-dependency-tracking \
$(use_enable sdl sdl-client) \
$(use_enable openal sound) \
|| die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog README
prepgamesdirs
}
|