diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-09-23 12:34:09 +0200 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-09-23 12:34:09 +0200 |
commit | 31948f21ddfb503f0c25d80ee1f38ba348fbc69d (patch) | |
tree | 3e4471e1cb6b889add274c3feb0060c3bc935892 /dev-python/matplotlib2tikz | |
parent | Merge remote-tracking branch 'github/master' (diff) | |
download | sci-31948f21ddfb503f0c25d80ee1f38ba348fbc69d.tar.gz sci-31948f21ddfb503f0c25d80ee1f38ba348fbc69d.tar.bz2 sci-31948f21ddfb503f0c25d80ee1f38ba348fbc69d.zip |
Drop unnecessary die from emake
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-python/matplotlib2tikz')
-rw-r--r--[l---------] | dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild b/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild index 49bc235a9..20ab8da5e 120000..100644 --- a/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild +++ b/dev-python/matplotlib2tikz/matplotlib2tikz-0.1.0.ebuild @@ -1 +1,30 @@ -matplotlib2tikz-9999.ebuild
\ No newline at end of file +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4} ) + +inherit distutils-r1 + +DESCRIPTION="Python script for converting matplotlib figures into native Pgfplots (TikZ) figures" +HOMEPAGE="https://github.com/nschloe/matplotlib2tikz" + +if [ ${PV} = "9999" ] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/nschloe/${PN}.git git://github.com/nschloe/${PN}.git" + KEYWORDS="" +else + SRC_URI="https://github.com/nschloe/matplotlib2tikz/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="LGPL-3" +SLOT="0" +IUSE="" + +RDEPEND="dev-python/matplotlib[${PYTHON_USEDEP}] + dev-texlive/texlive-pictures" +DEPEND="${RDEPEND}" + #test? ( dev-python/pytest[${PYTHON_USEDEP}] )" |