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 sci-visualization/veusz: veusz-1.11.ebuild ChangeLog
Date: Sun, 03 Apr 2011 22:10:06
Message-Id: 20110403220956.964F720054@flycatcher.gentoo.org
1 arfrever 11/04/03 22:09:56
2
3 Modified: ChangeLog
4 Added: veusz-1.11.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha29_p8/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.30 sci-visualization/veusz/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/veusz/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/veusz/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/veusz/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/veusz/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 15 Dec 2010 15:18:50 -0000 1.29
24 +++ ChangeLog 3 Apr 2011 22:09:56 -0000 1.30
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-visualization/veusz
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/ChangeLog,v 1.29 2010/12/15 15:18:50 grozin Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/ChangeLog,v 1.30 2011/04/03 22:09:56 arfrever Exp $
31 +
32 +*veusz-1.11 (03 Apr 2011)
33 +
34 + 03 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
35 + +veusz-1.11.ebuild:
36 + Version bump.
37
38 *veusz-1.10 (15 Dec 2010)
39
40
41
42
43 1.1 sci-visualization/veusz/veusz-1.11.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/veusz/veusz-1.11.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/veusz/veusz-1.11.ebuild?rev=1.1&content-type=text/plain
47
48 Index: veusz-1.11.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/veusz-1.11.ebuild,v 1.1 2011/04/03 22:09:56 arfrever Exp $
53
54 EAPI="3"
55 PYTHON_DEPEND="2"
56 SUPPORT_PYTHON_ABIS="1"
57 RESTRICT_PYTHON_ABIS="3.* *-jython"
58
59 inherit distutils eutils fdo-mime
60
61 DESCRIPTION="Qt based scientific plotting package with good Postscript output"
62 HOMEPAGE="http://home.gna.org/veusz/ http://pypi.python.org/pypi/veusz"
63 SRC_URI="http://download.gna.org/${PN}/${P}.tar.gz"
64
65 IUSE="doc examples fits"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 LICENSE="GPL-2"
69
70 DEPEND="dev-python/numpy"
71 RDEPEND="${DEPEND}
72 dev-python/PyQt4[X,svg]
73 fits? ( dev-python/pyfits )"
74
75 PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
76
77 src_install() {
78 distutils_src_install
79 insinto /usr/share/doc/${PF}
80 if use examples; then
81 doins -r examples || die "examples install failed"
82 fi
83 if use doc; then
84 cd Documents
85 insinto /usr/share/doc/${PF}
86 doins manual.pdf || die "doins failed"
87 insinto /usr/share/doc/${PF}/html
88 doins -r manual.html manimages \
89 || die "doc install failed"
90 fi
91 newicon "${S}"/windows/icons/veusz_48.png veusz.png
92 domenu "${FILESDIR}"/veusz.desktop || die "domenu failed"
93 insinto /usr/share/mime/packages
94 doins "${FILESDIR}"/veusz.xml || die "doins failed"
95 }
96
97 pkg_postinst() {
98 distutils_pkg_postinst
99 fdo-mime_desktop_database_update
100 }
101
102 pkg_postrm() {
103 distutils_pkg_postrm
104 fdo-mime_desktop_database_update
105 }