diff options
author | Andrey Grozin <grozin@gentoo.org> | 2018-08-08 20:29:48 +0700 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2018-08-08 20:30:39 +0700 |
commit | 23338ceb286e450b51cec8bdcf754d4c7dfca084 (patch) | |
tree | 9e73a8b5be13e3b653317a70381499ac3c701798 /sci-visualization/veusz/veusz-3.0.1.ebuild | |
parent | dev-lang/rust-bin: add arm64 support (diff) | |
download | gentoo-23338ceb286e450b51cec8bdcf754d4c7dfca084.tar.gz gentoo-23338ceb286e450b51cec8bdcf754d4c7dfca084.tar.bz2 gentoo-23338ceb286e450b51cec8bdcf754d4c7dfca084.zip |
sci-visualization/veusz: bump to 3.0.1
An upstream patch to improve smoothness of Bezier splines added
Suggested-by: Sergey Torokhov <torokhov_s_a@mail.ru>
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Diffstat (limited to 'sci-visualization/veusz/veusz-3.0.1.ebuild')
-rw-r--r-- | sci-visualization/veusz/veusz-3.0.1.ebuild | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/sci-visualization/veusz/veusz-3.0.1.ebuild b/sci-visualization/veusz/veusz-3.0.1.ebuild new file mode 100644 index 000000000000..018f5fd55b23 --- /dev/null +++ b/sci-visualization/veusz/veusz-3.0.1.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit eutils distutils-r1 virtualx xdg-utils gnome2-utils + +DESCRIPTION="Qt scientific plotting package with good Postscript output" +HOMEPAGE="https://veusz.github.io/" +SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="dbus doc emf fits hdf5 minuit" + +CDEPEND="dev-python/PyQt5[widgets,svg,printsupport,${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}]" +RDEPEND="${CDEPEND} + dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] ) + emf? ( dev-python/pyemf[$(python_gen_usedep 'python2*')] ) + fits? ( dev-python/astropy[${PYTHON_USEDEP}] ) + hdf5? ( dev-python/h5py[${PYTHON_USEDEP}] ) + minuit? ( || ( dev-python/iminuit[${PYTHON_USEDEP}] dev-python/pyminuit[${PYTHON_USEDEP}] ) )" +DEPEND="${CDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/sip[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + +PATCHES=("${FILESDIR}/fix_spline.patch") + +python_test() { + distutils_install_for_testing + cd tests || die + VIRTUALX_COMMAND="${EPYTHON}" \ + VEUSZ_RESOURCE_DIR="${S}" \ + virtualmake runselftest.py +} + +python_install() { + distutils-r1_python_install + # symlink the license, bug #341653 + rm "${D}/$(python_get_sitedir)"/${PN}/{COPYING,AUTHORS,ChangeLog} || die + mkdir -p "${D}/$(python_get_sitedir)" || die + cat >> "${D}/$(python_get_sitedir)"/${PN}/COPYING <<- EOF + Please visit + + https://www.gnu.org/licenses/gpl-2.0.html + + for the full license text. + EOF +} + +python_install_all() { + distutils-r1_python_install_all + + if use doc; then + dodoc Documents/manual/pdf/${PN}.pdf + docinto html + dodoc -r Documents/manual/html + fi + + doicon icons/veusz.png + domenu "${FILESDIR}"/veusz.desktop + insinto /usr/share/mime/packages + doins "${FILESDIR}"/veusz.xml +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_mimeinfo_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_mimeinfo_database_update + gnome2_icon_cache_update +} |