blob: 5758294be333fc8e3e70c4b1a93bf4cf9a3ac3ba (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author David Creswick <davidc@sat.net>
# /home/cvsroot/gentoo-x86/skel.build,v 1.7 2001/08/25 21:15:08 chadh Exp
S=${WORKDIR}/${P}
DESCRIPTION="python bindings to sdl and other libs that facilitate game production"
SRC_URI="http://www.pygame.org/ftp/${P}.tar.gz"
HOMEPAGE="http://www.pygame.org/"
#build-time dependencies
DEPEND="virtual/python
>=media-libs/libsdl-1.2.0
>=media-libs/sdl-ttf-2.0.3
>=media-libs/sdl-image-1.2.0
>=media-libs/sdl-mixer-1.2.0
>=dev-python/Numeric-19.0.0
>=media-libs/smpeg-0.4.4-r1"
src_compile() {
python setup.py build || die
}
src_install () {
python setup.py install --prefix=${D}/usr || die
dodoc README.TXT WHATSNEW
dodir /usr/share/doc/${P}/html/
cp -a docs/* ${D}/usr/share/doc/${P}/html/
cp -a examples ${D}/usr/share/doc/${P}/
}
|