Gentoo Archives: gentoo-commits

From: "Andrey Grozin (grozin)" <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/veusz: ChangeLog veusz-1.3.ebuild
Date: Thu, 26 Feb 2009 21:36:50
Message-Id: E1LcnuS-0005i4-7i@stork.gentoo.org
1 grozin 09/02/26 21:36:48
2
3 Modified: ChangeLog
4 Added: veusz-1.3.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc23/cvs/Linux i686)
8
9 Revision Changes Path
10 1.12 sci-visualization/veusz/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/veusz/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/veusz/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/veusz/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/veusz/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 3 Dec 2008 12:20:19 -0000 1.11
23 +++ ChangeLog 26 Feb 2009 21:36:48 -0000 1.12
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-visualization/veusz
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/ChangeLog,v 1.11 2008/12/03 12:20:19 bicatali Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/ChangeLog,v 1.12 2009/02/26 21:36:48 grozin Exp $
30 +
31 +*veusz-1.3 (26 Feb 2009)
32 +
33 + 26 Feb 2009; Andrey Grozin <grozin@g.o> +veusz-1.3.ebuild:
34 + Version bump
35
36 *veusz-1.2.1 (03 Dec 2008)
37
38
39
40
41 1.1 sci-visualization/veusz/veusz-1.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/veusz/veusz-1.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/veusz/veusz-1.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: veusz-1.3.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/sci-visualization/veusz/veusz-1.3.ebuild,v 1.1 2009/02/26 21:36:48 grozin Exp $
51
52 inherit distutils
53
54 DESCRIPTION="Qt based scientific plotting package with good Postscript output"
55 HOMEPAGE="http://home.gna.org/veusz/"
56 SRC_URI="http://download.gna.org/${PN}/${P}.tar.gz"
57
58 IUSE="doc examples fits"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 LICENSE="GPL-2"
62
63 DEPEND="dev-python/numpy"
64
65 RDEPEND="${DEPEND}
66 dev-python/PyQt4
67 fits? ( dev-python/pyfits )"
68
69 src_install() {
70 distutils_src_install
71 insinto /usr/share/doc/${PF}
72 if use examples; then
73 doins -r examples || die "examples install failed"
74 fi
75 if use doc; then
76 cd Documents
77 doins -r Interface.txt manual.html manimages manual.pdf || die "doc install failed"
78 fi
79 }