Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/rtgraph: ChangeLog rtgraph-0.70.ebuild
Date: Thu, 30 Dec 2010 22:07:32
Message-Id: 20101230220722.D623820054@flycatcher.gentoo.org
1 arfrever 10/12/30 22:07:22
2
3 Modified: ChangeLog rtgraph-0.70.ebuild
4 Log:
5 Fix dependencies. Set SUPPORT_PYTHON_ABIS. Add "examples" USE flag.
6
7 (Portage version: 2.2.0_alpha10_p22/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.9 dev-python/rtgraph/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rtgraph/ChangeLog?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rtgraph/ChangeLog?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rtgraph/ChangeLog?r1=1.8&r2=1.9
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/rtgraph/ChangeLog,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- ChangeLog 21 Feb 2007 17:19:47 -0000 1.8
23 +++ ChangeLog 30 Dec 2010 22:07:22 -0000 1.9
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-python/rtgraph
26 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/rtgraph/ChangeLog,v 1.8 2007/02/21 17:19:47 lucass Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/rtgraph/ChangeLog,v 1.9 2010/12/30 22:07:22 arfrever Exp $
30 +
31 + 30 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
32 + rtgraph-0.70.ebuild:
33 + Fix dependencies. Set SUPPORT_PYTHON_ABIS. Add "examples" USE flag.
34
35 21 Feb 2007; Lukasz Strzygowski <lucass@g.o>
36 files/digest-rtgraph-0.70, Manifest:
37
38
39
40 1.7 dev-python/rtgraph/rtgraph-0.70.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rtgraph/rtgraph-0.70.ebuild?rev=1.7&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rtgraph/rtgraph-0.70.ebuild?rev=1.7&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rtgraph/rtgraph-0.70.ebuild?r1=1.6&r2=1.7
45
46 Index: rtgraph-0.70.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-python/rtgraph/rtgraph-0.70.ebuild,v
49 retrieving revision 1.6
50 retrieving revision 1.7
51 diff -u -r1.6 -r1.7
52 --- rtgraph-0.70.ebuild 1 Apr 2006 19:04:18 -0000 1.6
53 +++ rtgraph-0.70.ebuild 30 Dec 2010 22:07:22 -0000 1.7
54 @@ -1,24 +1,34 @@
55 -# Copyright 1999-2006 Gentoo Foundation
56 +# Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/dev-python/rtgraph/rtgraph-0.70.ebuild,v 1.6 2006/04/01 19:04:18 agriffis Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/dev-python/rtgraph/rtgraph-0.70.ebuild,v 1.7 2010/12/30 22:07:22 arfrever Exp $
60 +
61 +EAPI="3"
62 +PYTHON_DEPEND="2"
63 +SUPPORT_PYTHON_ABIS="1"
64 +RESTRICT_PYTHON_ABIS="3.* *-jython"
65
66 inherit distutils
67
68 DESCRIPTION="rtgraph provides several widgets for graphing data in real-time, using PyGTK, and UI components for controlling the graphs."
69 HOMEPAGE="http://navi.cx/svn/misc/trunk/rtgraph/web/index.html"
70 SRC_URI="http://navi.picogui.org/releases/${P}.tar.gz"
71 +
72 LICENSE="LGPL-2.1"
73 SLOT="0"
74 -IUSE=""
75 KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
76 -DEPEND="virtual/python
77 - >=dev-python/pygtk-2"
78 +IUSE="examples"
79 +
80 +DEPEND="dev-python/pygtk:2"
81 +RDEPEND="${DEPEND}"
82 +
83 +DOCS="BUGS README"
84 +PYTHON_MODNAME="rtgraph.py Tweak.py"
85
86 src_install() {
87 distutils_src_install
88 - dodoc README BUGS
89 - dodir /usr/share/doc/${P}/examples
90 - insinto /usr/share/doc/${P}/examples
91 - doins cpu_meter.py graph_ui.py isometric_graph.py line_graph.py \
92 - polar_graph.py tweak_graph.py
93 +
94 + if use examples; then
95 + insinto /usr/share/doc/${P}/examples
96 + doins cpu_meter.py graph_ui.py isometric_graph.py line_graph.py polar_graph.py tweak_graph.py || die "Installation of examples failed"
97 + fi
98 }