forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icebreaker-1.9.6.ebuild
48 lines (41 loc) · 1.06 KB
/
icebreaker-1.9.6.ebuild
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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils games
DESCRIPTION="Trap and capture penguins on Antarctica"
HOMEPAGE="http://www.mattdm.org/icebreaker/"
SRC_URI="http://www.mattdm.org/${PN}/1.9.x/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="media-libs/libsdl[video]
media-libs/sdl-mixer"
DEPEND="${RDEPEND}"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-ldflags.patch \
"${FILESDIR}"/${P}-gentoo.patch \
"${FILESDIR}"/${P}-parallell-install.patch \
"${FILESDIR}"/${P}-ovfl.patch
}
src_compile() {
emake \
OPTIMIZE="${CFLAGS}" \
prefix=/usr \
bindir="${GAMES_BINDIR}" \
datadir="${GAMES_DATADIR}" \
highscoredir="${GAMES_STATEDIR}"
}
src_install() {
emake \
prefix="${D}/usr" \
bindir="${D}${GAMES_BINDIR}" \
datadir="${D}${GAMES_DATADIR}" \
highscoredir="${D}${GAMES_STATEDIR}" install
newicon ${PN}_48.bmp ${PN}.bmp
make_desktop_entry ${PN} IceBreaker /usr/share/pixmaps/${PN}.bmp
dodoc ChangeLog README* TODO
prepgamesdirs
}