diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-03-04 13:06:18 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-03-04 13:06:18 +0000 |
commit | 5b8307324b76bdf8f466c4629a297c20016d808c (patch) | |
tree | b5978dc04dbf73d3fa47e646206679f4fe6f58ca /dev-python/pygame | |
parent | new version (diff) | |
download | gentoo-2-5b8307324b76bdf8f466c4629a297c20016d808c.tar.gz gentoo-2-5b8307324b76bdf8f466c4629a297c20016d808c.tar.bz2 gentoo-2-5b8307324b76bdf8f466c4629a297c20016d808c.zip |
version bump
Diffstat (limited to 'dev-python/pygame')
-rw-r--r-- | dev-python/pygame/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/pygame/files/digest-pygame-1.5.5 | 1 | ||||
-rw-r--r-- | dev-python/pygame/pygame-1.5.5.ebuild | 33 |
3 files changed, 40 insertions, 1 deletions
diff --git a/dev-python/pygame/ChangeLog b/dev-python/pygame/ChangeLog index 04d56571d8fc..7860aa494fc0 100644 --- a/dev-python/pygame/ChangeLog +++ b/dev-python/pygame/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pygame # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pygame/ChangeLog,v 1.9 2003/02/12 06:33:49 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygame/ChangeLog,v 1.10 2003/03/04 13:06:18 liquidx Exp $ + +*pygame-1.5.5 (04 Mar 2003) + + 04 Mar 2003; Alastair Tse <liquidx@gentoo.org> pygame-1.5.5.ebuild files/digest-pygame-1.5.5 : + version bump. resolves #13415. 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/dev-python/pygame/files/digest-pygame-1.5.5 b/dev-python/pygame/files/digest-pygame-1.5.5 new file mode 100644 index 000000000000..7f7a6323b4f3 --- /dev/null +++ b/dev-python/pygame/files/digest-pygame-1.5.5 @@ -0,0 +1 @@ +MD5 fa135364e2d9f12acfb528f477418e0e pygame-1.5.5.tar.gz 787154 diff --git a/dev-python/pygame/pygame-1.5.5.ebuild b/dev-python/pygame/pygame-1.5.5.ebuild new file mode 100644 index 000000000000..32578a99bbe7 --- /dev/null +++ b/dev-python/pygame/pygame-1.5.5.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygame/pygame-1.5.5.ebuild,v 1.1 2003/03/04 13:06:18 liquidx 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/" + +IUSE="" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86 ~sparc ~alpha" + +DEPEND="virtual/python + >=media-libs/libsdl-1.2.5 + >=media-libs/sdl-ttf-2.0.5 + >=media-libs/sdl-image-1.2.2 + >=media-libs/sdl-mixer-1.2.4 + >=dev-python/Numeric-22.0.0 + >=media-libs/smpeg-0.4.4-r1" + +inherit distutils + +src_install () { + mydoc=WHATSNEW + distutils_src_install + + dohtml -r docs/* + dodir /usr/share/doc/${PF}/examples + cp -r ${S}/examples ${D}usr/share/doc/${PF}/ +} + |