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.2.ebuild
Date: Tue, 01 Sep 2009 21:52:58
Message-Id: E1Mig6P-0003lI-3P@stork.gentoo.org
1 mr_bones_ 09/09/02 03:01:41
2
3 Modified: ChangeLog
4 Added: supertuxkart-0.6.2.ebuild
5 Log:
6 version bump (bug #283432)
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.13 games-action/supertuxkart/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/supertuxkart/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/supertuxkart/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/supertuxkart/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 31 May 2009 17:08:06 -0000 1.12
23 +++ ChangeLog 2 Sep 2009 03:01:39 -0000 1.13
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-action/supertuxkart
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v 1.12 2009/05/31 17:08:06 mr_bones_ Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v 1.13 2009/09/02 03:01:39 mr_bones_ Exp $
29 +
30 +*supertuxkart-0.6.2 (02 Sep 2009)
31 +
32 + 02 Sep 2009; Michael Sterrett <mr_bones_@g.o>
33 + +supertuxkart-0.6.2.ebuild:
34 + version bump (bug #283432)
35
36 31 May 2009; Michael Sterrett <mr_bones_@g.o>
37 supertuxkart-0.6.1a.ebuild:
38
39
40
41 1.1 games-action/supertuxkart/supertuxkart-0.6.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/supertuxkart/supertuxkart-0.6.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/supertuxkart/supertuxkart-0.6.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: supertuxkart-0.6.2.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/supertuxkart-0.6.2.ebuild,v 1.1 2009/09/02 03:01:39 mr_bones_ Exp $
51
52 EAPI=2
53 inherit autotools eutils games
54
55 DESCRIPTION="A kart racing game starring Tux, the linux penguin (TuxKart fork)"
56 HOMEPAGE="http://supertuxkart.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/supertuxkart/files/SuperTuxKart/${PV}/${P}-src.tar.bz2
58 mirror://gentoo/${PN}.png"
59
60 LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0 CCPL-Attribution-2.0 CCPL-Sampling-Plus-1.0 public-domain as-is"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE=""
64
65 DEPEND=">=media-libs/plib-1.8.4
66 virtual/opengl
67 virtual/glut
68 virtual/glu
69 net-libs/enet
70 media-libs/libmikmod
71 media-libs/libvorbis
72 media-libs/openal
73 media-libs/libsdl[X,video,audio,joystick]"
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 }