blob: e01daef124f3352a21c95b6c6151a8f986709d3a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/icebreaker/icebreaker-1.9.5.ebuild,v 1.8 2005/06/15 19:00:38 wolf31o2 Exp $
inherit games
DESCRIPTION="Trap and capture penguins on Antarctica"
HOMEPAGE="http://www.mattdm.org/icebreaker/"
SRC_URI="http://www.mattdm.org/icebreaker/1.9.x/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc amd64"
IUSE=""
DEPEND="virtual/x11
media-libs/libsdl
media-libs/sdl-mixer"
src_compile() {
emake \
prefix=/usr \
bindir="${GAMES_BINDIR}" \
datadir="${GAMES_DATADIR}" \
highscoredir="${GAMES_STATEDIR}" \
|| die "emake failed"
}
src_install() {
einstall \
prefix="${D}/usr" \
bindir="${D}${GAMES_BINDIR}" \
datadir="${D}${GAMES_DATADIR}" \
highscoredir="${D}${GAMES_STATEDIR}" || die
dodoc ChangeLog README* TODO
prepgamesdirs
}
|