Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/pyxplot: ChangeLog pyxplot-0.8.4.ebuild pyxplot-0.8.2.ebuild
Date: Wed, 26 Jan 2011 22:49:57
Message-Id: 20110126224947.7A23720054@flycatcher.gentoo.org
1 bicatali 11/01/26 22:49:47
2
3 Modified: ChangeLog
4 Added: pyxplot-0.8.4.ebuild
5 Removed: pyxplot-0.8.2.ebuild
6 Log:
7 Version bump
8
9 (Portage version: 2.1.9.35/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.22 sci-visualization/pyxplot/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/pyxplot/ChangeLog?rev=1.22&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/pyxplot/ChangeLog?rev=1.22&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/pyxplot/ChangeLog?r1=1.21&r2=1.22
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/ChangeLog,v
21 retrieving revision 1.21
22 retrieving revision 1.22
23 diff -u -r1.21 -r1.22
24 --- ChangeLog 25 Sep 2010 19:38:40 -0000 1.21
25 +++ ChangeLog 26 Jan 2011 22:49:47 -0000 1.22
26 @@ -1,6 +1,13 @@
27 # ChangeLog for sci-visualization/pyxplot
28 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/ChangeLog,v 1.21 2010/09/25 19:38:40 bicatali Exp $
30 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/ChangeLog,v 1.22 2011/01/26 22:49:47 bicatali Exp $
32 +
33 +*pyxplot-0.8.4 (26 Jan 2011)
34 +
35 + 26 Jan 2011; Sébastien Fabbro <bicatali@g.o>
36 + -files/pyxplot-0.8.1-linking.patch, -pyxplot-0.8.2.ebuild,
37 + -files/pyxplot-0.8.2-flags.patch, +pyxplot-0.8.4.ebuild:
38 + Version bump
39
40 *pyxplot-0.8.3 (25 Sep 2010)
41
42
43
44
45 1.1 sci-visualization/pyxplot/pyxplot-0.8.4.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/pyxplot/pyxplot-0.8.4.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/pyxplot/pyxplot-0.8.4.ebuild?rev=1.1&content-type=text/plain
49
50 Index: pyxplot-0.8.4.ebuild
51 ===================================================================
52 # Copyright 1999-2011 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/pyxplot-0.8.4.ebuild,v 1.1 2011/01/26 22:49:47 bicatali Exp $
55
56 EAPI="2"
57 PYTHON_DEPEND="2"
58
59 inherit eutils python
60
61 DESCRIPTION="Gnuplot like graphing program publication-quality figures"
62 HOMEPAGE="http://www.pyxplot.org.uk/"
63 SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.tar.gz"
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68
69 RDEPEND="virtual/latex-base
70 sci-libs/cfitsio
71 sci-libs/fftw:3.0
72 >=sci-libs/gsl-1.10
73 sci-libs/scipy
74 media-libs/libpng
75 dev-libs/libxml2
76 app-text/gv
77 || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] )"
78 DEPEND="${RDEPEND}
79 dev-util/pkgconfig"
80
81 pkg_setup() {
82 python_set_active_version 2
83 python_pkg_setup
84 }
85
86 src_prepare() {
87 sed -i \
88 -e 's:/local:/:' \
89 -e "s:/lib/:/$(get_libdir)/:" \
90 -e "s:\${USRDIR}/share/${PN}:/$(python_get_sitedir)/${PN}:" \
91 -e "s:/doc/${PN}:/doc/${PF}:" \
92 Makefile.skel || die "sed Makefile.skel failed"
93 sed -i -e 's/-ltermcap//' configure
94 }
95
96 src_install() {
97 emake DESTDIR="${D}" install || die "emake install failed"
98 dodoc README AUTHORS ChangeLog
99 }