diff options
Diffstat (limited to 'sci-mathematics/glpk/glpk-4.28.ebuild')
-rw-r--r-- | sci-mathematics/glpk/glpk-4.28.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/sci-mathematics/glpk/glpk-4.28.ebuild b/sci-mathematics/glpk/glpk-4.28.ebuild new file mode 100644 index 000000000000..45046e845de9 --- /dev/null +++ b/sci-mathematics/glpk/glpk-4.28.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.28.ebuild,v 1.1 2008/04/01 18:11:02 bicatali Exp $ + +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 gmp iodbc mysql" +KEYWORDS="~x86 ~amd64 ~ppc" + +DEPEND="iodbc? ( dev-db/libiodbc ) + gmp? ( dev-libs/gmp ) + mysql? ( virtual/mysql )" + +src_compile() { + econf \ + $(use_enable gmp) \ + $(use_enable iodbc) \ + $(use_enable mysql) \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + # INSTALL include some usage docs + dodoc AUTHORS ChangeLog NEWS README || \ + die "failed to install docs" + + insinto /usr/share/doc/${PF} + # 388Kb + doins -r examples || die "failed to install examples" + if use doc; then + cd "${S}"/doc + doins memo/gomory.djvu || die "failed to instal memo" + dodoc *.ps *.txt || die "failed to install manual files" + fi +} |