diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2012-12-06 20:42:44 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2012-12-06 20:42:44 +0000 |
commit | 80d58fc9cbc369cae6e29c6b4e9f3893c41a9828 (patch) | |
tree | 259fe56ef00d5b559e9491d7f1b48be7a4576388 /sci-visualization | |
parent | Keyword x86, amd64-linux and x86-linux. Added sci as herd maintainership (diff) | |
download | gentoo-2-80d58fc9cbc369cae6e29c6b4e9f3893c41a9828.tar.gz gentoo-2-80d58fc9cbc369cae6e29c6b4e9f3893c41a9828.tar.bz2 gentoo-2-80d58fc9cbc369cae6e29c6b4e9f3893c41a9828.zip |
Version bump
(Portage version: 2.2.01.21313-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/pyxplot/ChangeLog | 7 | ||||
-rw-r--r-- | sci-visualization/pyxplot/pyxplot-0.9.2.ebuild | 46 |
2 files changed, 52 insertions, 1 deletions
diff --git a/sci-visualization/pyxplot/ChangeLog b/sci-visualization/pyxplot/ChangeLog index 6392b1d86163..c0463fc72b38 100644 --- a/sci-visualization/pyxplot/ChangeLog +++ b/sci-visualization/pyxplot/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-visualization/pyxplot # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/ChangeLog,v 1.27 2012/08/06 20:34:31 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/ChangeLog,v 1.28 2012/12/06 20:42:44 bicatali Exp $ + +*pyxplot-0.9.2 (06 Dec 2012) + + 06 Dec 2012; Sébastien Fabbro <bicatali@gentoo.org> +pyxplot-0.9.2.ebuild: + Version bump 06 Aug 2012; Sébastien Fabbro <bicatali@gentoo.org> metadata.xml, pyxplot-0.9.0.ebuild: diff --git a/sci-visualization/pyxplot/pyxplot-0.9.2.ebuild b/sci-visualization/pyxplot/pyxplot-0.9.2.ebuild new file mode 100644 index 000000000000..c466031bcfd4 --- /dev/null +++ b/sci-visualization/pyxplot/pyxplot-0.9.2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/pyxplot/pyxplot-0.9.2.ebuild,v 1.1 2012/12/06 20:42:44 bicatali Exp $ + +EAPI=4 + +PYTHON_DEPEND="2" + +inherit multilib python + +DESCRIPTION="Gnuplot like graphing program publication-quality figures" +HOMEPAGE="http://www.pyxplot.org.uk/" +SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + app-text/gv + dev-libs/libxml2:2 + media-libs/libpng + sci-libs/cfitsio + sci-libs/fftw:3.0 + sci-libs/gsl + sci-libs/scipy + virtual/latex-base + || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + sed \ + -e "s:/usr/local:${EROOT}usr/:" \ + -e "s:/lib/:/$(get_libdir)/:" \ + -e "s:\${USRDIR}/share/${PN}:${EPREFIX}/$(python_get_sitedir)/${PN}:" \ + -e "s:/doc/${PN}:/doc/${PF}:" \ + -i Makefile.skel || die "sed Makefile.skel failed" + sed -i -e 's/-ltermcap//' configure || die +} |