# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.47.ebuild,v 1.6 2013/02/21 16:53:29 jlec Exp $ EAPI=4 inherit eutils flag-o-matic toolchain-funcs DESCRIPTION="GNU Linear Programming Kit" LICENSE="GPL-3" HOMEPAGE="http://www.gnu.org/software/glpk/" SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" SLOT="0" IUSE="doc examples gmp odbc mysql static-libs" KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" RDEPEND=" gmp? ( dev-libs/gmp ) mysql? ( virtual/mysql ) odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) )" DEPEND="${RDEPEND} virtual/pkgconfig" src_configure() { local myconf="--disable-dl" if use mysql || use odbc; then myconf="--enable-dl" fi [[ -z $(type -P odbc-config) ]] && \ append-cppflags $($(tc-getPKG_CONFIG) --cflags libiodbc) econf \ $(use_enable mysql) \ $(use_enable odbc) \ $(use_enable static-libs static) \ $(use_with gmp) \ ${myconf} } src_install() { default if use examples; then emake distclean insinto /usr/share/doc/${PF} doins -r examples fi use doc && dodoc doc/*.pdf doc/notes/*.pdf doc/*.txt prune_libtool_files }