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.6.ebuild
Date: Sat, 30 Jan 2010 08:56:24
Message-Id: E1Nb97t-0000FE-Ie@stork.gentoo.org
1 grozin 10/01/30 08:56:21
2
3 Modified: ChangeLog
4 Added: veusz-1.6.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc62/cvs/Linux i686)
8
9 Revision Changes Path
10 1.19 sci-visualization/veusz/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/veusz/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/veusz/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/veusz/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/veusz/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 16 Jan 2010 20:04:02 -0000 1.18
23 +++ ChangeLog 30 Jan 2010 08:56:21 -0000 1.19
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-visualization/veusz
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/ChangeLog,v 1.18 2010/01/16 20:04:02 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/ChangeLog,v 1.19 2010/01/30 08:56:21 grozin Exp $
29 +
30 +*veusz-1.6 (30 Jan 2010)
31 +
32 + 30 Jan 2010; Andrey Grozin <grozin@g.o> +veusz-1.6.ebuild:
33 + Version bump
34
35 16 Jan 2010; Christian Faulhammer <fauli@g.o> veusz-1.5.ebuild:
36 stable x86, bug 299842
37
38
39
40 1.1 sci-visualization/veusz/veusz-1.6.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/veusz/veusz-1.6.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/veusz/veusz-1.6.ebuild?rev=1.1&content-type=text/plain
44
45 Index: veusz-1.6.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/veusz-1.6.ebuild,v 1.1 2010/01/30 08:56:21 grozin Exp $
50
51 EAPI=2
52 inherit eutils distutils fdo-mime
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 RDEPEND="${DEPEND}
65 dev-python/PyQt4[X,svg]
66 fits? ( dev-python/pyfits )"
67
68 src_install() {
69 distutils_src_install
70 insinto /usr/share/doc/${PF}
71 if use examples; then
72 doins -r examples || die "examples install failed"
73 fi
74 if use doc; then
75 cd Documents
76 insinto /usr/share/doc/${PF}
77 doins manual.pdf
78 insinto /usr/share/doc/${PF}/html
79 doins -r manual.html manimages \
80 || die "doc install failed"
81 fi
82 newicon "${S}"/windows/icons/veusz_48.png veusz.png
83 domenu "${FILESDIR}"/veusz.desktop
84 insinto /usr/share/mime/packages
85 doins "${FILESDIR}"/veusz.xml
86 }
87
88 pkg_postinst() {
89 distutils_pkg_postinst
90 fdo-mime_desktop_database_update
91 }
92
93 pkg_postrm() {
94 distutils_pkg_postrm
95 fdo-mime_desktop_database_update
96 }