blob: d369507a21cfb70807771addd56c32327fc81a4e (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xye/xye-0.9.0.ebuild,v 1.1 2009/07/30 17:57:22 mr_bones_ Exp $
EAPI=2
inherit eutils games
DESCRIPTION="Free version of the classic game Kye"
HOMEPAGE="http://xye.sourceforge.net/"
SRC_URI="mirror://sourceforge/xye/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="media-libs/libsdl
media-libs/sdl-ttf
media-libs/sdl-image[png]"
src_prepare() {
sed -i '/^xye_LDFLAGS/d' Makefile.in || die "sed failed"
}
src_install() {
dogamesbin "${PN}" || die "dogamesbin failed"
insinto "${GAMES_DATADIR}/${PN}"
doins -r levels res || die "doins failed"
dodoc readme.txt GAMEINTRO.txt AUTHORS ChangeLog README NEWS
doicon xye.svg
make_desktop_entry ${PN} Xye
prepgamesdirs
}
|