blob: 42c9b3bbf61607a0beff3f868e03543ad9613bf9 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-kids/pytraffic/pytraffic-2.0.ebuild,v 1.2 2005/06/11 18:18:57 fserb Exp $
inherit distutils eutils games
DESCRIPTION="Python version of the board game Rush Hour"
HOMEPAGE="http://alpha.uhasselt.be/Research/Algebra/Members/pytraffic/"
SRC_URI="http://alpha.uhasselt.be/Research/Algebra/Members/pytraffic/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
# pytraffic doesn't work with pygtk-2.6
DEPEND="dev-python/pygame
=dev-python/pygtk-2.4*"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PV}-gentoo-dirs.patch"
}
src_compile() {
distutils_src_compile
}
src_install() {
DOCS="AUTHORS.txt CHANGELOG.txt PKG-INFO"
distutils_src_install
dohtml DOCS/*
prepgamesdirs
}
pkg_postinst() {
distutils_pkg_postinst
games_pkg_postinst
}
|