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-kids/gcompris: ChangeLog gcompris-8.4.12.ebuild
Date: Sun, 31 May 2009 07:11:59
Message-Id: E1MAfD1-0005XO-Sz@stork.gentoo.org
1 mr_bones_ 09/05/31 07:11:55
2
3 Modified: ChangeLog
4 Added: gcompris-8.4.12.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.11/cvs/Linux i686)
8
9 Revision Changes Path
10 1.46 games-kids/gcompris/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/gcompris/ChangeLog?rev=1.46&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/gcompris/ChangeLog?rev=1.46&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/gcompris/ChangeLog?r1=1.45&r2=1.46
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-kids/gcompris/ChangeLog,v
19 retrieving revision 1.45
20 retrieving revision 1.46
21 diff -u -r1.45 -r1.46
22 --- ChangeLog 19 Jan 2009 04:40:40 -0000 1.45
23 +++ ChangeLog 31 May 2009 07:11:55 -0000 1.46
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-kids/gcompris
26 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-kids/gcompris/ChangeLog,v 1.45 2009/01/19 04:40:40 mr_bones_ Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-kids/gcompris/ChangeLog,v 1.46 2009/05/31 07:11:55 mr_bones_ Exp $
29 +
30 +*gcompris-8.4.12 (31 May 2009)
31 +
32 + 31 May 2009; Michael Sterrett <mr_bones_@g.o>
33 + +files/gcompris-8.4.12-build.patch, +gcompris-8.4.12.ebuild:
34 + version bump
35
36 19 Jan 2009; Michael Sterrett <mr_bones_@g.o>
37 files/gcompris-8.4.8-build.patch, gcompris-8.4.8.ebuild:
38
39
40
41 1.1 games-kids/gcompris/gcompris-8.4.12.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/gcompris/gcompris-8.4.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-kids/gcompris/gcompris-8.4.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gcompris-8.4.12.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-kids/gcompris/gcompris-8.4.12.ebuild,v 1.1 2009/05/31 07:11:55 mr_bones_ Exp $
51
52 EAPI=2
53 inherit autotools eutils python games
54
55 DESCRIPTION="full featured educational application for children from 2 to 10"
56 HOMEPAGE="http://gcompris.net/"
57 SRC_URI="mirror://sourceforge/gcompris/${P}.tar.gz"
58
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="debug gnet python sqlite"
63
64 RDEPEND="x11-libs/gtk+:2
65 media-libs/gstreamer:0.10
66 media-libs/gst-plugins-good
67 media-plugins/gst-plugins-ogg
68 media-plugins/gst-plugins-vorbis
69 media-libs/libart_lgpl
70 >=gnome-base/libgnomecanvas-2.3.6
71 media-libs/sdl-mixer
72 media-libs/libsdl
73 dev-libs/libxml2
74 dev-libs/popt
75 virtual/libintl
76 games-board/gnuchess
77 gnet? ( net-libs/gnet:2 )
78 python? (
79 dev-lang/python[threads]
80 dev-python/pygtk
81 sqlite? ( dev-python/pysqlite:2 )
82 )
83 sqlite? ( dev-db/sqlite:3 )"
84 DEPEND="${RDEPEND}
85 dev-perl/XML-Parser
86 sys-devel/gettext
87 sys-apps/texinfo
88 app-text/texi2html
89 dev-util/pkgconfig"
90 RDEPEND="${RDEPEND}
91 media-gfx/tuxpaint
92 sci-electronics/gnucap"
93
94 src_prepare() {
95 epatch "${FILESDIR}"/${P}-build.patch
96 cp /usr/share/gettext/config.rpath .
97 eautoreconf
98 }
99
100 src_configure() {
101 python_version
102 GNUCHESS="${GAMES_BINDIR}"/gnuchess \
103 egamesconf \
104 --disable-dependency-tracking \
105 --datarootdir="${GAMES_DATADIR}" \
106 --datadir="${GAMES_DATADIR}" \
107 --localedir=/usr/share/locale \
108 --infodir=/usr/share/info \
109 --enable-xf86vidmode \
110 $(use_with python python /usr/bin/python${PYVER}) \
111 $(use_enable debug) \
112 $(use_enable gnet) \
113 $(use_enable sqlite)
114 }
115
116 src_compile() {
117 emake -j1 || die "emake failed"
118 }
119
120 src_install() {
121 emake DESTDIR="${D}" install || die "emake install failed"
122 dodoc AUTHORS ChangeLog NEWS README THANKS TODO
123 prepgamesdirs
124 }