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-mud/lyntin: ChangeLog lyntin-4.2.ebuild
Date: Thu, 22 Apr 2010 08:32:16
Message-Id: 20100422083210.580F329541@corvid.gentoo.org
1 tupone 10/04/22 08:32:10
2
3 Modified: ChangeLog lyntin-4.2.ebuild
4 Log:
5 Force python2 fixing bug #312257
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.13 games-mud/lyntin/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-mud/lyntin/ChangeLog?rev=1.13&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-mud/lyntin/ChangeLog?rev=1.13&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-mud/lyntin/ChangeLog?r1=1.12&r2=1.13
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-mud/lyntin/ChangeLog,v
18 retrieving revision 1.12
19 retrieving revision 1.13
20 diff -u -r1.12 -r1.13
21 --- ChangeLog 2 Mar 2010 13:45:49 -0000 1.12
22 +++ ChangeLog 22 Apr 2010 08:32:10 -0000 1.13
23 @@ -1,6 +1,9 @@
24 # ChangeLog for games-mud/lyntin
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-mud/lyntin/ChangeLog,v 1.12 2010/03/02 13:45:49 phajdan.jr Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/games-mud/lyntin/ChangeLog,v 1.13 2010/04/22 08:32:10 tupone Exp $
28 +
29 + 22 Apr 2010; Tupone Alfredo <tupone@g.o> lyntin-4.2.ebuild:
30 + Force python2 fixing bug #312257 by arfrever@g.o
31
32 02 Mar 2010; Pawel Hajdan jr <phajdan.jr@g.o> lyntin-4.2.ebuild:
33 x86 stable wrt bug #303485
34
35
36
37 1.6 games-mud/lyntin/lyntin-4.2.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-mud/lyntin/lyntin-4.2.ebuild?rev=1.6&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-mud/lyntin/lyntin-4.2.ebuild?rev=1.6&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-mud/lyntin/lyntin-4.2.ebuild?r1=1.5&r2=1.6
42
43 Index: lyntin-4.2.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/games-mud/lyntin/lyntin-4.2.ebuild,v
46 retrieving revision 1.5
47 retrieving revision 1.6
48 diff -u -r1.5 -r1.6
49 --- lyntin-4.2.ebuild 2 Mar 2010 13:45:49 -0000 1.5
50 +++ lyntin-4.2.ebuild 22 Apr 2010 08:32:10 -0000 1.6
51 @@ -1,9 +1,14 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/games-mud/lyntin/lyntin-4.2.ebuild,v 1.5 2010/03/02 13:45:49 phajdan.jr Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/games-mud/lyntin/lyntin-4.2.ebuild,v 1.6 2010/04/22 08:32:10 tupone Exp $
56
57 EAPI=2
58 -inherit eutils games distutils
59 +
60 +PYTHON_DEPEND="2"
61 +PYTHON_USE_WITH_OPT="tk"
62 +PYTHON_USE_WITH="tk"
63 +
64 +inherit eutils python games distutils
65
66 DESCRIPTION="tintin mud client clone implemented in Python"
67 HOMEPAGE="http://lyntin.sourceforge.net/"
68 @@ -14,10 +19,16 @@
69 KEYWORDS="~amd64 ppc x86"
70 IUSE="tk"
71
72 -DEPEND=">=dev-lang/python-2.2.3[tk?]"
73 +DEPEND=""
74
75 DOCS="COMMANDS PKG-INFO HACKING README"
76
77 +pkg_setup() {
78 + python_set_active_version 2
79 + python_pkg_setup
80 + games_pkg_setup
81 +}
82 +
83 src_install() {
84 distutils_src_install
85 dogamesbin "${D}/usr/bin/runlyntin" || die "dogamesbin failed"