diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2010-04-12 16:46:00 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2010-04-12 16:46:00 +0000 |
commit | 883b489200668f27e3c385898f324cba028700d3 (patch) | |
tree | 70b57fbe47d1a4b4f2f9a661fec64a03645aa607 /sci-mathematics | |
parent | add kde useflag for installing KDE4 Solid action files (diff) | |
download | gentoo-2-883b489200668f27e3c385898f324cba028700d3.tar.gz gentoo-2-883b489200668f27e3c385898f324cba028700d3.tar.bz2 gentoo-2-883b489200668f27e3c385898f324cba028700d3.zip |
Version bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/glpk/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/glpk/glpk-4.43.ebuild | 57 |
2 files changed, 63 insertions, 1 deletions
diff --git a/sci-mathematics/glpk/ChangeLog b/sci-mathematics/glpk/ChangeLog index cf276e226ed4..2f496c7deac0 100644 --- a/sci-mathematics/glpk/ChangeLog +++ b/sci-mathematics/glpk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-mathematics/glpk # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.43 2010/04/12 13:57:23 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.44 2010/04/12 16:46:00 bicatali Exp $ + +*glpk-4.43 (12 Apr 2010) + + 12 Apr 2010; Sébastien Fabbro <bicatali@gentoo.org> +glpk-4.43.ebuild: + Version bump 12 Apr 2010; Alexis Ballier <aballier@gentoo.org> glpk-4.42.ebuild: keyword ~x86-fbsd thanks to Henning Schild <henning@wh9.tu-dresden.de>, diff --git a/sci-mathematics/glpk/glpk-4.43.ebuild b/sci-mathematics/glpk/glpk-4.43.ebuild new file mode 100644 index 000000000000..3bedbf5b2428 --- /dev/null +++ b/sci-mathematics/glpk/glpk-4.43.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.43.ebuild,v 1.1 2010/04/12 16:46:00 bicatali Exp $ + +EAPI=2 +inherit flag-o-matic + +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" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" + +RDEPEND="odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) ) + gmp? ( dev-libs/gmp ) + mysql? ( virtual/mysql )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_configure() { + local myconf="--disable-dl" + if use mysql || use odbc; then + myconf="--enable-dl" + fi + + [[ -z $(type -P odbc-config) ]] && \ + append-cppflags $(pkg-config --cflags libiodbc) + + econf \ + --with-zlib \ + $(use_with gmp) \ + $(use_enable odbc) \ + $(use_enable mysql) \ + ${myconf} +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc AUTHORS ChangeLog NEWS README || \ + die "failed to install docs" + + insinto /usr/share/doc/${PF} + if use examples; then + emake distclean + doins -r examples || die "failed to install examples" + fi + if use doc; then + cd "${S}"/doc + doins *.pdf notes/*.pdf || die "failed to instal djvu and pdf" + dodoc *.txt || die "failed to install manual files" + fi +} |