diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-04-03 22:09:56 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-04-03 22:09:56 +0000 |
commit | 14b85eecea0a4dcf74261efce20bf1714a6fb3e4 (patch) | |
tree | 61f851ad059f18ed9f7a7cafcf0ce2b6ffb2dfc0 /sci-visualization | |
parent | Version bump. (diff) | |
download | gentoo-2-14b85eecea0a4dcf74261efce20bf1714a6fb3e4.tar.gz gentoo-2-14b85eecea0a4dcf74261efce20bf1714a6fb3e4.tar.bz2 gentoo-2-14b85eecea0a4dcf74261efce20bf1714a6fb3e4.zip |
Version bump.
(Portage version: 2.2.0_alpha29_p8/cvs/Linux x86_64)
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/veusz/ChangeLog | 10 | ||||
-rw-r--r-- | sci-visualization/veusz/veusz-1.11.ebuild | 56 |
2 files changed, 64 insertions, 2 deletions
diff --git a/sci-visualization/veusz/ChangeLog b/sci-visualization/veusz/ChangeLog index 79fa89756a0c..d077fdcfea21 100644 --- a/sci-visualization/veusz/ChangeLog +++ b/sci-visualization/veusz/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-visualization/veusz -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/ChangeLog,v 1.29 2010/12/15 15:18:50 grozin Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/ChangeLog,v 1.30 2011/04/03 22:09:56 arfrever Exp $ + +*veusz-1.11 (03 Apr 2011) + + 03 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +veusz-1.11.ebuild: + Version bump. *veusz-1.10 (15 Dec 2010) diff --git a/sci-visualization/veusz/veusz-1.11.ebuild b/sci-visualization/veusz/veusz-1.11.ebuild new file mode 100644 index 000000000000..a6ad3c2f878c --- /dev/null +++ b/sci-visualization/veusz/veusz-1.11.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/veusz-1.11.ebuild,v 1.1 2011/04/03 22:09:56 arfrever Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.* *-jython" + +inherit distutils eutils fdo-mime + +DESCRIPTION="Qt based scientific plotting package with good Postscript output" +HOMEPAGE="http://home.gna.org/veusz/ http://pypi.python.org/pypi/veusz" +SRC_URI="http://download.gna.org/${PN}/${P}.tar.gz" + +IUSE="doc examples fits" +SLOT="0" +KEYWORDS="~amd64 ~x86" +LICENSE="GPL-2" + +DEPEND="dev-python/numpy" +RDEPEND="${DEPEND} + dev-python/PyQt4[X,svg] + fits? ( dev-python/pyfits )" + +PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") + +src_install() { + distutils_src_install + insinto /usr/share/doc/${PF} + if use examples; then + doins -r examples || die "examples install failed" + fi + if use doc; then + cd Documents + insinto /usr/share/doc/${PF} + doins manual.pdf || die "doins failed" + insinto /usr/share/doc/${PF}/html + doins -r manual.html manimages \ + || die "doc install failed" + fi + newicon "${S}"/windows/icons/veusz_48.png veusz.png + domenu "${FILESDIR}"/veusz.desktop || die "domenu failed" + insinto /usr/share/mime/packages + doins "${FILESDIR}"/veusz.xml || die "doins failed" +} + +pkg_postinst() { + distutils_pkg_postinst + fdo-mime_desktop_database_update +} + +pkg_postrm() { + distutils_pkg_postrm + fdo-mime_desktop_database_update +} |