mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-03 23:47:28 -08:00
28 lines
658 B
Bash
28 lines
658 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python2_7 )
|
|
PYTHON_REQ_USE="xml(+)"
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Library for manipulating TrueType, OpenType, AFM and Type1 fonts"
|
|
HOMEPAGE="http://fonttools.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm ~arm64 ia64 ppc x86"
|
|
IUSE=""
|
|
|
|
DEPEND=">=dev-python/numpy-1.0.2[${PYTHON_USEDEP}]"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
python_install_all() {
|
|
DOCS=( README.txt Doc/{changes.txt,install.txt} )
|
|
HTML_DOCS=( Doc/documentation.html )
|
|
distutils-r1_python_install_all
|
|
}
|