diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-01-14 17:40:55 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-01-14 17:40:55 +0000 |
commit | 47bd82e84aac9a7462c816e50fe0f99a7ad24765 (patch) | |
tree | 878de4976ea1a835a3aa767c632b030218914b6f /games-arcade/pydance | |
parent | ver bump #38027 (diff) | |
download | historical-47bd82e84aac9a7462c816e50fe0f99a7ad24765.tar.gz historical-47bd82e84aac9a7462c816e50fe0f99a7ad24765.tar.bz2 historical-47bd82e84aac9a7462c816e50fe0f99a7ad24765.zip |
ver bump #37661
Diffstat (limited to 'games-arcade/pydance')
-rw-r--r-- | games-arcade/pydance/ChangeLog | 7 | ||||
-rw-r--r-- | games-arcade/pydance/files/digest-pydance-0.8.4 | 1 | ||||
-rw-r--r-- | games-arcade/pydance/pydance-0.8.4.ebuild | 53 |
3 files changed, 60 insertions, 1 deletions
diff --git a/games-arcade/pydance/ChangeLog b/games-arcade/pydance/ChangeLog index 57df235be4bd..7780a499ae98 100644 --- a/games-arcade/pydance/ChangeLog +++ b/games-arcade/pydance/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-arcade/pydance # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/pydance/ChangeLog,v 1.4 2003/11/22 05:33:02 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/pydance/ChangeLog,v 1.5 2004/01/14 17:40:55 vapier Exp $ + +*pydance-0.8.4 (14 Jan 2004) + + 14 Jan 2004; Mike Frysinger <vapier@gentoo.org> : + Version bump #37661 Arnaud JEANSEN and Chris Aniszczyk. *pydance-0.8.2 (21 Nov 2003) diff --git a/games-arcade/pydance/files/digest-pydance-0.8.4 b/games-arcade/pydance/files/digest-pydance-0.8.4 new file mode 100644 index 000000000000..a9b2e603ee7f --- /dev/null +++ b/games-arcade/pydance/files/digest-pydance-0.8.4 @@ -0,0 +1 @@ +MD5 721832828020eb66ff10347b42fb3b02 pydance-0.8.4.tar.gz 3669593 diff --git a/games-arcade/pydance/pydance-0.8.4.ebuild b/games-arcade/pydance/pydance-0.8.4.ebuild new file mode 100644 index 000000000000..71d09d8cdd8b --- /dev/null +++ b/games-arcade/pydance/pydance-0.8.4.ebuild @@ -0,0 +1,53 @@ +# 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.4.ebuild,v 1.1 2004/01/14 17:40:55 vapier Exp $ + +inherit games + +DESCRIPTION="pyDance is a DDR clone for linux written in Python" +HOMEPAGE="http://www.icculus.org/pyddr/" +SRC_URI="http://www.icculus.org/pyddr/${P}.tar.gz" + +LICENSE="X11" +SLOT="0" +KEYWORDS="x86" + +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 + + games_make_wrapper pydance "python ./pydance.py" "${dir}" + + dodoc BUGS CREDITS ChangeLog HACKING README TODO + dohtml docs/README.html + doman docs/man/* + prepgamesdirs +} + +pkg_postinst() { + games_pkg_postinst + einfo "If you want to use a DDR pad with pyDance," + einfo "all you need to do is emerge the games-arcade/ddrmat kernel module." +} |