Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-arcade/pydance: ChangeLog pydance-1.1.0.ebuild
Date: Tue, 30 Nov 2010 18:09:50
Message-Id: 20101130180935.AAA6120054@flycatcher.gentoo.org
1 tupone 10/11/30 18:09:35
2
3 Modified: ChangeLog
4 Added: pydance-1.1.0.ebuild
5 Log:
6 Version bump to 1.1.0 Bu #324225
7
8 (Portage version: 2.1.9.25/cvs/Linux i686)
9
10 Revision Changes Path
11 1.21 games-arcade/pydance/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/pydance/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/pydance/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/pydance/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-arcade/pydance/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 8 Feb 2010 21:57:42 -0000 1.20
24 +++ ChangeLog 30 Nov 2010 18:09:35 -0000 1.21
25 @@ -1,6 +1,11 @@
26 # ChangeLog for games-arcade/pydance
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/pydance/ChangeLog,v 1.20 2010/02/08 21:57:42 ulm Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/pydance/ChangeLog,v 1.21 2010/11/30 18:09:35 tupone Exp $
30 +
31 +*pydance-1.1.0 (30 Nov 2010)
32 +
33 + 30 Nov 2010; Tupone Alfredo <tupone@g.o> +pydance-1.1.0.ebuild:
34 + Version bump to 1.1.0 Bu #324225 by Thomas Raschbacher <lordvan@g.o>
35
36 08 Feb 2010; Ulrich Mueller <ulm@g.o> pydance-1.0.3.ebuild:
37 Fix LICENSE, bug 298556.
38
39
40
41 1.1 games-arcade/pydance/pydance-1.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/pydance/pydance-1.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-arcade/pydance/pydance-1.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pydance-1.1.0.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-arcade/pydance/pydance-1.1.0.ebuild,v 1.1 2010/11/30 18:09:35 tupone Exp $
51
52 EAPI=2
53 inherit eutils games
54
55 DESCRIPTION="a DDR clone for linux written in Python"
56 HOMEPAGE="http://www.icculus.org/pyddr/"
57 SRC_URI="http://www.icculus.org/pyddr/${P}.tar.gz"
58
59 LICENSE="MIT"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE=""
63
64 DEPEND="dev-python/pygame
65 media-libs/libvorbis
66 media-libs/sdl-mixer"
67 RDEPEND="${DEPEND}"
68 PDEPEND="games-arcade/pydance-songs"
69
70 src_prepare() {
71 sed -i \
72 -e "s:1\.0\.1:1.0.2:" \
73 -e "s:/etc/:${GAMES_SYSCONFDIR}/:" \
74 pydance.py constants.py docs/man/pydance.6 \
75 || die "sed failed"
76 }
77
78 src_install() {
79 local dir=${GAMES_DATADIR}/${PN}
80
81 insinto "${dir}"
82 doins *.py || die "doins failed"
83 cp -R CREDITS {sound,images,utils,themes} "${D}${dir}/" || die "cp failed"
84
85 insinto "${GAMES_SYSCONFDIR}"
86 newins pydance.posix.cfg pydance.cfg
87
88 games_make_wrapper pydance "python ./pydance.py" "${dir}"
89
90 dodoc BUGS CREDITS ChangeLog HACKING README TODO
91 dohtml -r docs/manual.html docs/images
92 doman docs/man/*
93 prepgamesdirs
94 }
95
96 pkg_postinst() {
97 games_pkg_postinst
98 echo
99 elog "If you want to use a DDR pad with pyDance,"
100 elog "all you need to do is emerge the games-arcade/ddrmat kernel module."
101 echo
102 }