blob: de88e2edc3892eed737439a2255d6a8614db8ff8 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xlogical/xlogical-1.0.7.ebuild,v 1.2 2007/01/12 04:02:41 mr_bones_ Exp $
inherit versionator eutils games
MY_PV=$(replace_version_separator 2 '-' )
MY_P=${PN}-${MY_PV}
DESCRIPTION="SDL logical clone"
HOMEPAGE="http://changeling.ixionstudios.com/xlogical/"
SRC_URI="http://changeling.ixionstudios.com/xlogical/downloads/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="media-libs/libsdl
media-libs/sdl-image
media-libs/sdl-mixer"
S=${WORKDIR}/${PN}-$(get_version_component_range 1-2)
src_unpack() {
unpack ${A}
cd "${S}"
edos2unix properties.h anim.h exception.h
epatch "${FILESDIR}/${P}"-gcc41.patch
}
src_install() {
dogamesbin ${PN} || die "installing the binary failed"
insinto "${GAMES_DATADIR}"/${PN}
doins -r ${PN}.{properties,levels} music sound images \
|| die "installing game data failed"
insinto "${GAMES_STATEDIR}"/${PN}
insopts -m0660
doins ${PN}.scores || die "installing hi-score failed"
dodoc AUTHORS ChangeLog NEWS README TODO
prepgamesdirs
}
|