Gentoo Archives: gentoo-commits

From: "Thomas Anderson (tanderson)" <tanderson@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/stfl: ChangeLog stfl-0.21.ebuild
Date: Sun, 04 Apr 2010 20:42:33
Message-Id: E1NyWeL-00048u-SM@stork.gentoo.org
1 tanderson 10/04/04 20:42:29
2
3 Modified: ChangeLog stfl-0.21.ebuild
4 Log:
5 Fix usage of python.eclass, thanks to Arfrever for mentioning it.
6 (Portage version: 2.1.7.17/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.25 dev-libs/stfl/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/stfl/ChangeLog?rev=1.25&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/stfl/ChangeLog?rev=1.25&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/stfl/ChangeLog?r1=1.24&r2=1.25
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-libs/stfl/ChangeLog,v
18 retrieving revision 1.24
19 retrieving revision 1.25
20 diff -u -r1.24 -r1.25
21 --- ChangeLog 3 Apr 2010 13:41:00 -0000 1.24
22 +++ ChangeLog 4 Apr 2010 20:42:29 -0000 1.25
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-libs/stfl
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/ChangeLog,v 1.24 2010/04/03 13:41:00 tanderson Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/ChangeLog,v 1.25 2010/04/04 20:42:29 tanderson Exp $
28 +
29 + 04 Apr 2010; Thomas Anderson <tanderson@g.o> stfl-0.21.ebuild:
30 + Fix usage of python.eclass, thanks to Arfrever for mentioning it.
31
32 *stfl-0.21 (03 Apr 2010)
33
34
35
36
37 1.2 dev-libs/stfl/stfl-0.21.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/stfl/stfl-0.21.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/stfl/stfl-0.21.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/stfl/stfl-0.21.ebuild?r1=1.1&r2=1.2
42
43 Index: stfl-0.21.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.21.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- stfl-0.21.ebuild 3 Apr 2010 13:41:00 -0000 1.1
50 +++ stfl-0.21.ebuild 4 Apr 2010 20:42:29 -0000 1.2
51 @@ -1,8 +1,8 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.21.ebuild,v 1.1 2010/04/03 13:41:00 tanderson Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/stfl/stfl-0.21.ebuild,v 1.2 2010/04/04 20:42:29 tanderson Exp $
56
57 -EAPI="2"
58 +EAPI="3"
59 inherit eutils multilib perl-module python
60
61 DESCRIPTION="A library which implements a curses-based widget set for text terminals"
62 @@ -52,7 +52,6 @@
63 }
64
65 src_install() {
66 - PYTHON
67 emake prefix="/usr" DESTDIR="${D}" libdir="$(get_libdir)" install || die "make install failed"
68
69 dodoc README
70 @@ -77,9 +76,9 @@
71 }
72
73 pkg_postinst() {
74 - use python && python_mod_optimize usr/$(get_libdir)/python$(python_get_version)/site-packages/stfl.py
75 + use python && python_mod_optimize stfl.py
76 }
77
78 pkg_postrm() {
79 - python_mod_cleanup
80 + python_mod_cleanup stfl.py
81 }