Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-action/supertuxkart: ChangeLog supertuxkart-0.6.1a.ebuild
Date: Mon, 02 Mar 2009 01:25:23
Message-Id: E1LdwuH-0001DP-FA@stork.gentoo.org
1 mr_bones_ 09/03/02 01:25:21
2
3 Modified: ChangeLog
4 Added: supertuxkart-0.6.1a.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.7/cvs/Linux i686)
8
9 Revision Changes Path
10 1.10 games-action/supertuxkart/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/supertuxkart/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/supertuxkart/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/supertuxkart/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 10 Mar 2008 08:51:20 -0000 1.9
23 +++ ChangeLog 2 Mar 2009 01:25:21 -0000 1.10
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-action/supertuxkart
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v 1.9 2008/03/10 08:51:20 mr_bones_ Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v 1.10 2009/03/02 01:25:21 mr_bones_ Exp $
30 +
31 +*supertuxkart-0.6.1a (02 Mar 2009)
32 +
33 + 02 Mar 2009; Michael Sterrett <mr_bones_@g.o>
34 + +supertuxkart-0.6.1a.ebuild:
35 + version bump
36
37 *supertuxkart-0.4 (10 Mar 2008)
38
39
40
41
42 1.1 games-action/supertuxkart/supertuxkart-0.6.1a.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/supertuxkart/supertuxkart-0.6.1a.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/supertuxkart/supertuxkart-0.6.1a.ebuild?rev=1.1&content-type=text/plain
46
47 Index: supertuxkart-0.6.1a.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/supertuxkart-0.6.1a.ebuild,v 1.1 2009/03/02 01:25:21 mr_bones_ Exp $
52
53 EAPI=2
54 inherit autotools eutils games
55
56 DESCRIPTION="A kart racing game starring Tux, the linux penguin (TuxKart fork)"
57 HOMEPAGE="http://supertuxkart.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/supertuxkart/${P}.tar.bz2
59 mirror://gentoo/${PN}.png"
60
61 LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0 CCPL-Attribution-2.0 CCPL-Sampling-Plus-1.0 public-domain as-is"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 DEPEND=">=media-libs/plib-1.8.4
67 virtual/opengl
68 virtual/glut
69 net-libs/enet
70 media-libs/libmikmod
71 media-libs/libvorbis
72 media-libs/openal
73 media-libs/libsdl"
74
75 src_prepare() {
76 sed -i \
77 -e '/ENETTREE/d' \
78 -e '/src\/enet\/Makefile/d' \
79 configure.ac \
80 || die "sed failed"
81 sed -i \
82 -e '/SUBDIRS/s/doc//' \
83 -e '/pkgdata/d' \
84 Makefile.am \
85 || die "sed failed"
86 sed -i \
87 -e '/pkgdatadir/s:/games::' \
88 -e '/desktop/d' \
89 -e '/icon/d' \
90 $(find data -name Makefile.am) \
91 || die "sed failed"
92 sed -i \
93 -e '/bindir/d' \
94 -e '/AM_CPPFLAGS/s:/games::' \
95 src/Makefile.am \
96 || die "sed failed"
97 rm -rf src/enet
98 eautoreconf
99 }
100
101 src_install() {
102 emake DESTDIR="${D}" install || die "emake install failed"
103 doicon "${DISTDIR}"/${PN}.png
104 make_desktop_entry ${PN} SuperTuxKart
105 dodoc AUTHORS ChangeLog README TODO
106 prepgamesdirs
107 }