gentoo/dev-python/python-biggles/python-biggles-1.6.6-r1.ebuild
Robin H. Johnson 61b861acd7
Drop $Id$ per council decision in bug #611234.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2017-02-28 11:50:50 -08:00

37 lines
711 B
Bash

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
MY_PN="python2-biggles"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A Python module for creating publication-quality 2D scientific plots"
HOMEPAGE="http://biggles.sourceforge.net/"
SRC_URI="mirror://sourceforge/biggles/${MY_P}.tar.gz"
DEPEND="
dev-python/numpy[${PYTHON_USEDEP}]
media-libs/plotutils[X]
x11-libs/libSM
x11-libs/libXext"
RDEPEND="${DEPEND}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ia64 x86"
IUSE=""
S="${WORKDIR}/${MY_P}"
python_install_all() {
distutils-r1_python_install_all
insinto /usr/share/${PN}/
doins -r examples
}