summaryrefslogtreecommitdiff
blob: 668d697f33360b15c4b98d31dce80855b6b0abb0 (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
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/sdlvexed/sdlvexed-0.6.ebuild,v 1.3 2004/11/22 12:52:08 josejx Exp $

inherit games

DESCRIPTION="SDL Vexed is a puzzle game written in Perl-SDL. It is a clone of the classic PalmOS game Vexed"
HOMEPAGE="http://freshmeat.net/projects/sdlvexed/"
SRC_URI="http://core.segfault.pl/~krzynio/vexed/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc ~amd64"
IUSE=""

RDEPEND="virtual/libc
	>=dev-lang/perl-5.6.1
	>=media-libs/sdl-mixer-1.2.3
	>=dev-perl/sdl-perl-1.19.0"
DEPEND="${RDEPEND}
	>=sys-apps/sed-4"

src_unpack() {
	unpack ${A}
	cd ${S}
	mv vexed sdlvexed
	sed -i \
		-e "/PREFIX=/s:\.:${GAMES_DATADIR}/${PN}:" sdlvexed \
		|| die "sed sdlvexed failed"
}


src_install() {
	dogamesbin sdlvexed || die "dogamesbin failed"
	dodir "${GAMES_DATADIR}/${PN}"
	cp -R {gfx,levelpacks} "${D}/${GAMES_DATADIR}/${PN}/" || die "cp failed"
	dodoc CHANGELOG README
	prepgamesdirs
}