# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" NEED_PYTHON="2.5" inherit distutils DESCRIPTION="A python module for numerical optimization" HOMEPAGE="http://openopt.org" SRC_URI="ftp://ftp.linux.kiev.ua/pub/projects/openopt/download/OpenOpt${PV}.zip" LICENSE="BSD" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="" DEPEND="app-arch/unzip dev-python/numpy" RDEPEND="${DEPEND}" PYTHON_MODNAME="openopt" S="${WORKDIR}/OpenOpt/" src_unpack(){ unpack "${A}" cd "${S}" } src_compile() { cd "${S}" distutils_src_compile } src_install() { distutils_src_install } pkg_postinst() { distutils_pkg_postinst } pkg_postrm() { distutils_pkg_postrm }