summaryrefslogtreecommitdiff
blob: 1ef287687089670b57f5855db52911061d6b33aa (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
54
55
56
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/ssc/ssc-0.8.ebuild,v 1.10 2006/11/19 20:27:13 nyhm Exp $

inherit eutils games

DESCRIPTION="2D Geometric Space Combat"
HOMEPAGE="http://sscx.sourceforge.net/"
SRC_URI="mirror://sourceforge/sscx/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""

DEPEND="virtual/opengl
	virtual/glu
	media-libs/libsdl
	media-libs/sdl-mixer
	dev-games/ode
	>=media-libs/freetype-2"

src_unpack() {
	unpack ${A}
	cd "${S}"
	sed -i \
		-e "s:/usr/local/share/:${GAMES_DATADIR}/:" \
		src/{asteroid.cc,audio.cc,config.cc,menu.cc} \
		|| die "sed failed"
	sed -i \
		-e '/CXXFLAGS=$OPT_CXXFLAGS/d' \
		configure \
		|| die "sed configure failed"
	epatch \
		"${FILESDIR}"/${P}-gcc34.patch \
		"${FILESDIR}"/${P}-ode.patch
}

src_install () {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc AUTHORS ChangeLog NEWS README TODO
	prepgamesdirs
}

pkg_postinst() {
	games_pkg_postinst
	echo
	elog "You may need to copy ${GAMES_DATADIR}/ssc/ssc.conf to"
	elog "~/.ssc/ssc.conf and modify it to suit your needs before"
	elog "the game will work on your system.  You should be able"
	elog "to cut and paste the commands below:"
	echo
	elog "mkdir ~/.ssc/"
	elog "cp ${GAMES_DATADIR}/ssc/ssc.conf ~/.ssc/"
	echo
}