# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ NEED_PYTHON=2.4 inherit distutils DESCRIPTION="Module for Python that use HDF5" SRC_URI="http://www.pytables.org/download/stable/${P}.tar.gz" HOMEPAGE="http://www.pytables.org/moin/PyTables" SLOT="0" KEYWORDS="~amd64 ~ia64 ~ppc ~x86" LICENSE="as-is" IUSE="doc examples lzo" DOCS="ANNOUNCE.txt RELEASE-NOTES.txt THANKS TODO.txt VERSION" RDEPEND=">=sys-devel/gcc-3.2 >=sci-libs/hdf5-1.6.5 >=dev-python/numpy-1.0.3 lzo? ( dev-python/python-lzo )" src_install() { distutils_src_install if use examples; then insinto /usr/share/doc/${PF} doins -r examples fi if use doc; then cd doc dohtml -r html/* docinto text dodoc text/* insinto /usr/share/doc/${PF} doins -r usersguide.pdf scripts/ fi }