diff options
Diffstat (limited to 'games-arcade/pydance')
-rw-r--r-- | games-arcade/pydance/Manifest | 4 | ||||
-rw-r--r-- | games-arcade/pydance/files/digest-pydance-0.8.2 | 1 | ||||
-rw-r--r-- | games-arcade/pydance/pydance-0.8.2.ebuild | 56 |
3 files changed, 59 insertions, 2 deletions
diff --git a/games-arcade/pydance/Manifest b/games-arcade/pydance/Manifest index fb1d33c38ab1..d21a5d3cf2fb 100644 --- a/games-arcade/pydance/Manifest +++ b/games-arcade/pydance/Manifest @@ -1,8 +1,8 @@ -MD5 e76edd3b04189f4e882c44394c384e27 ChangeLog 1739 +MD5 00cced9e5c0149f1ee9f6f69e02f5031 ChangeLog 1877 MD5 ce16d8f5771edcda66834d7e20ae1f11 pydance-0.8.1.ebuild 1134 MD5 04ae5a5253c91259384b04e6b1bc92c7 pydance-0.8.1-r1.ebuild 1263 MD5 b244cf1c41a78cacb62296d573935c07 metadata.xml 245 -MD5 38227feb131ee85582e76b753fa08d57 pydance-0.8.2.ebuild 1604 +MD5 1860dbb8d019a85eee7c9ba298b253ba pydance-0.8.2.ebuild 1604 MD5 d39d69469b2f19421cd9468ae67dffa3 files/digest-pydance-0.8.1 66 MD5 c237078ad2507ef504b365367eee93fc files/pydance 52 MD5 d39d69469b2f19421cd9468ae67dffa3 files/digest-pydance-0.8.1-r1 66 diff --git a/games-arcade/pydance/files/digest-pydance-0.8.2 b/games-arcade/pydance/files/digest-pydance-0.8.2 new file mode 100644 index 000000000000..26602a5376cf --- /dev/null +++ b/games-arcade/pydance/files/digest-pydance-0.8.2 @@ -0,0 +1 @@ +MD5 7d661698d311abc92776eeaf68dbf158 pydance-0.8.2.tar.gz 1907978 diff --git a/games-arcade/pydance/pydance-0.8.2.ebuild b/games-arcade/pydance/pydance-0.8.2.ebuild new file mode 100644 index 000000000000..0fc47e3775e0 --- /dev/null +++ b/games-arcade/pydance/pydance-0.8.2.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/pydance/pydance-0.8.2.ebuild,v 1.1 2003/11/22 05:33:02 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="Dance Dance Revolution! You need this game more than Frozen Bubble" +HOMEPAGE="http://www.icculus.org/pyddr/" +SRC_URI="http://www.icculus.org/pyddr/${P}.tar.gz" + +LICENSE="X11" +KEYWORDS="x86" +SLOT="0" +IUSE="" + +RDEPEND="dev-python/pygame + media-libs/libvorbis + media-libs/sdl-mixer" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" +PDEPEND="games-arcade/pydance-songs" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i \ + -e "s:/etc/:${GAMES_SYSCONFDIR}/:" \ + constants.py docs/man/pydance.6 || \ + die "sed failed" +} + +src_install() { + local dir="${GAMES_DATADIR}/${PN}" + + insinto ${dir} + doins *.py || die "doins failed" + cp -R {sound,images,utils,themes} "${D}${dir}/" || die "cp failed" + + insinto ${GAMES_SYSCONFDIR} + newins pydance.posix.cfg pydance.cfg || die "newins failed" + + dogamesbin ${FILESDIR}/pydance || die "dogamesbin failed" + dosed "s:GENTOO_DIR:${dir}:" ${GAMES_BINDIR}/pydance + + dodoc BUGS CREDITS ChangeLog HACKING README TODO || die "dodoc failed" + dohtml docs/README.html || die "dohtml failed" + doman docs/man/* || die "doman failed" + prepgamesdirs +} + +pkg_postinst() { + games_pkg_postinst + einfo "Emerge the games-arcade/ddrmat package to install" + einfo "the ddrmat kernel module, which allows you to use" + einfo "a DDR mat with pydance." +} |