blob: 6ce9cb3e70edaa52601632ab43f3899ada6d3882 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/fish-fillets/fish-fillets-0.8.0.ebuild,v 1.3 2008/04/24 02:01:31 mr_bones_ Exp $
inherit eutils games
DATA_PV="0.8.0"
DESCRIPTION="Underwater puzzle game - find a safe way out"
HOMEPAGE="http://fillets.sourceforge.net/"
SRC_URI="mirror://sourceforge/fillets/fillets-ng-${PV}.tar.gz
mirror://sourceforge/fillets/fillets-ng-data-${DATA_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="X"
RDEPEND=">=media-libs/libsdl-1.2
>=media-libs/sdl-mixer-1.2.5
>=media-libs/sdl-image-1.2.2
X? ( x11-libs/libX11 )
media-libs/sdl-ttf
>=dev-lang/lua-5"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S=${WORKDIR}/fillets-ng-${PV}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-gcc43.patch"
}
src_compile() {
egamesconf \
--datadir="${GAMES_DATADIR}/${PN}" \
$(use_with X) \
|| die
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
insinto "${GAMES_DATADIR}/${PN}"
cd "${WORKDIR}"/fillets-ng-data-${DATA_PV} || die
rm -f COPYING
doins -r * || die "doins failed"
newicon images/icon.png fillets.png
make_desktop_entry fillets FishFillets fillets
prepgamesdirs
}
|