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.2.ebuild
Date: Tue, 24 Aug 2010 20:45:59
Message-Id: 20100824204549.B6A4E2004E@flycatcher.gentoo.org
1 bicatali 10/08/24 20:45:49
2
3 Modified: ChangeLog
4 Added: pyxplot-0.8.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2_rc68/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.20 sci-visualization/pyxplot/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/pyxplot/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/pyxplot/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/pyxplot/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 18 Jun 2010 16:57:26 -0000 1.19
24 +++ ChangeLog 24 Aug 2010 20:45:49 -0000 1.20
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-visualization/pyxplot
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/ChangeLog,v 1.19 2010/06/18 16:57:26 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/ChangeLog,v 1.20 2010/08/24 20:45:49 bicatali Exp $
30 +
31 +*pyxplot-0.8.2 (24 Aug 2010)
32 +
33 + 24 Aug 2010; Sébastien Fabbro <bicatali@g.o>
34 + +pyxplot-0.8.2.ebuild, +files/pyxplot-0.8.2-flags.patch:
35 + Version bump
36
37 18 Jun 2010; Sébastien Fabbro <bicatali@g.o> pyxplot-0.8.1.ebuild:
38 Filtering -O0 and above from upstream recommendation
39
40
41
42 1.1 sci-visualization/pyxplot/pyxplot-0.8.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/pyxplot/pyxplot-0.8.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/pyxplot/pyxplot-0.8.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pyxplot-0.8.2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/pyxplot-0.8.2.ebuild,v 1.1 2010/08/24 20:45:49 bicatali Exp $
52
53 EAPI="2"
54 PYTHON_DEPEND="2"
55
56 inherit eutils python flag-o-matic
57
58 DESCRIPTION="Gnuplot like graphing program publication-quality figures"
59 HOMEPAGE="http://www.pyxplot.org.uk/"
60 SRC_URI="http://www.pyxplot.org.uk/src/${PN}_${PV}.tar.gz"
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 RDEPEND="virtual/latex-base
67 sci-libs/cfitsio
68 sci-libs/fftw:3.0
69 >=sci-libs/gsl-1.10
70 sci-libs/scipy
71 media-libs/libpng
72 dev-libs/libxml2
73 app-text/gv
74 || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] )"
75 DEPEND="${RDEPEND}
76 dev-util/pkgconfig"
77
78 pkg_setup() {
79 python_set_active_version 2
80 python_pkg_setup
81 }
82
83 src_prepare() {
84 epatch "${FILESDIR}"/${P}-flags.patch
85 # upstream: does not work with -O1 and above
86 replace-flags -O? -O0
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 }
94
95 src_install() {
96 emake DESTDIR="${D}" install || die "emake install failed"
97 dodoc README AUTHORS ChangeLog
98 }