blob: 2fa842072cb476a2aaa98743735bcb55c791f20e (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/lightyears/lightyears-1.3a.ebuild,v 1.2 2009/10/14 23:41:08 mr_bones_ Exp $
EAPI=2
inherit eutils python games
DESCRIPTION="a single-player game with a science-fiction theme"
HOMEPAGE="http://www.jwhitham.org.uk/20kly/"
SRC_URI="${HOMEPAGE}${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-lang/python
dev-python/pygame"
src_prepare() {
epatch "${FILESDIR}/${P}"-gentoo.patch
sed -i \
-e "s:@GENTOO_LIBDIR@:$(games_get_libdir)/${PN}:" \
-e "s:@GENTOO_DATADIR@:${GAMES_DATADIR}/${PN}:" \
${PN} || die "Changing library path failed"
}
src_install() {
dogamesbin ${PN} || die "dogamesbin failed"
insinto "$(games_get_libdir)/${PN}"
doins code/*.py || die "doins code failed"
dodoc README.txt
insinto "${GAMES_DATADIR}/${PN}"
doins -r data audio || die "doins data failed"
newicon data/32.png ${PN}.png
make_desktop_entry ${PN} "Light Years Into Space"
prepgamesdirs
}
pkg_postinst() {
python_mod_optimize "$(games_get_libdir)/${PN}"
games_pkg_postinst
}
pkg_postrm() {
python_mod_cleanup "$(games_get_libdir)/${PN}"
}
|