diff options
Diffstat (limited to 'dev-python/f2py/f2py-2.45.241.1926.ebuild')
-rw-r--r-- | dev-python/f2py/f2py-2.45.241.1926.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-python/f2py/f2py-2.45.241.1926.ebuild b/dev-python/f2py/f2py-2.45.241.1926.ebuild new file mode 100644 index 000000000000..627522919098 --- /dev/null +++ b/dev-python/f2py/f2py-2.45.241.1926.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/f2py/f2py-2.45.241.1926.ebuild,v 1.1 2006/07/17 16:22:18 liquidx Exp $ + +inherit distutils + +PN0="F2PY" +PV0="2.45.241_1926" + +S=${WORKDIR}/${PN0}-${PV0} +DESCRIPTION="Fortran to Python interface generator" +HOMEPAGE="http://cens.ioc.ee/projects/f2py2e/" +SRC_URI="http://cens.ioc.ee/projects/f2py2e/2.x/${PN0}-${PV0}.tar.gz" +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~ia64 ~ppc ~x86" +IUSE="" +DEPEND="dev-lang/python + dev-python/numeric + !dev-python/numpy" + +src_install() { + distutils_src_install + dodoc ${S}/docs/{*.txt,hello.f} + dodir /usr/share/doc/${P}/usersguide + insinto /usr/share/doc/${P}/usersguide + doins ${S}/docs/usersguide/* +} + |