# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-libs/cminpack/cminpack-1.3.1.ebuild,v 1.1 2013/10/23 18:42:08 bicatali Exp $ EAPI=5 inherit cmake-utils DESCRIPTION="C implementation of the MINPACK nonlinear optimization library" HOMEPAGE="http://devernay.free.fr/hacks/cminpack/" SRC_URI="${HOMEPAGE}/${P}.tar.gz" LICENSE="minpack" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="doc test" PATCHES=( "${FILESDIR}"/${PN}-1.2.2-underlinking.patch ) src_configure() { local mycmakeargs+=( -DSHARED_LIBS=ON $(cmake-utils_use_build test examples) ) cmake-utils_src_configure } src_install() { cmake-utils_src_install dodoc readme* use doc && dohtml -A .txt doc/* }