diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-10-13 18:57:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-10-13 18:57:33 +0000 |
commit | a896cde87a7f1dcaafb0f87022d02f5f960f6960 (patch) | |
tree | 61489b643eaa486f442957f67ad1d2d5429e2b58 /games-arcade | |
parent | Version bumped. closes #31052. (diff) | |
download | historical-a896cde87a7f1dcaafb0f87022d02f5f960f6960.tar.gz historical-a896cde87a7f1dcaafb0f87022d02f5f960f6960.tar.bz2 historical-a896cde87a7f1dcaafb0f87022d02f5f960f6960.zip |
fix config file install #30944
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/pydance/ChangeLog | 7 | ||||
-rw-r--r-- | games-arcade/pydance/files/digest-pydance-0.8.1-r1 | 1 | ||||
-rw-r--r-- | games-arcade/pydance/pydance-0.8.1-r1.ebuild | 50 |
3 files changed, 57 insertions, 1 deletions
diff --git a/games-arcade/pydance/ChangeLog b/games-arcade/pydance/ChangeLog index d44c3f806346..75b3c7007dad 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.2 2003/09/27 18:00:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/pydance/ChangeLog,v 1.3 2003/10/13 18:57:33 vapier Exp $ + +*pydance-0.8.1-r1 (13 Oct 2003) + + 13 Oct 2003; Mike Frysinger <vapier@gentoo.org> : + Fix config file installation #30944. *pydance-0.8.1 (26 Sep 2003) diff --git a/games-arcade/pydance/files/digest-pydance-0.8.1-r1 b/games-arcade/pydance/files/digest-pydance-0.8.1-r1 new file mode 100644 index 000000000000..8f0a258bb88b --- /dev/null +++ b/games-arcade/pydance/files/digest-pydance-0.8.1-r1 @@ -0,0 +1 @@ +MD5 ffc7794a19208442db5ae040e9e9081e pydance-0.8.1.tar.gz 2174360 diff --git a/games-arcade/pydance/pydance-0.8.1-r1.ebuild b/games-arcade/pydance/pydance-0.8.1-r1.ebuild new file mode 100644 index 000000000000..e7198ffb6450 --- /dev/null +++ b/games-arcade/pydance/pydance-0.8.1-r1.ebuild @@ -0,0 +1,50 @@ +# 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.1-r1.ebuild,v 1.1 2003/10/13 18:57:33 vapier 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" +SLOT="0" +KEYWORDS="x86" + +RDEPEND="dev-python/pygame + media-libs/libvorbis + media-libs/sdl-mixer" +PDEPEND="games-arcade/pydance-songs" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i \ + "s:/etc/:${GAMES_SYSCONFDIR}/:" \ + constants.py docs/man/pydance.6 +} + +src_install() { + local dir=${GAMES_DATADIR}/${PN} + insinto ${dir} + doins *.py + cp -R {sound,images,utils,themes} ${D}/${dir}/ + + insinto ${GAMES_SYSCONFDIR} + newins pydance.posix.cfg pydance.cfg + + dogamesbin ${FILESDIR}/pydance + dosed "s:GENTOO_DIR:${dir}:" ${GAMES_BINDIR}/pydance + + dodoc BUGS CREDITS ChangeLog HACKING README TODO + dohtml docs/README.html + doman docs/man/* +} + +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." +} |