diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-11-21 08:07:57 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-11-21 08:07:57 +0000 |
commit | 3c3752e9e04d7ff0a2c607a17ee567639090980d (patch) | |
tree | 4d8770816e2a7480bebe2d54e81f6dea90135d8a /sci-mathematics | |
parent | Version bump (diff) | |
download | gentoo-2-3c3752e9e04d7ff0a2c607a17ee567639090980d.tar.gz gentoo-2-3c3752e9e04d7ff0a2c607a17ee567639090980d.tar.bz2 gentoo-2-3c3752e9e04d7ff0a2c607a17ee567639090980d.zip |
Version bump
(Portage version: 2.2_rc50/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/glpk/ChangeLog | 8 | ||||
-rw-r--r-- | sci-mathematics/glpk/glpk-4.38.ebuild | 57 | ||||
-rw-r--r-- | sci-mathematics/glpk/glpk-4.40.ebuild (renamed from sci-mathematics/glpk/glpk-4.37.ebuild) | 2 | ||||
-rw-r--r-- | sci-mathematics/glpk/glpk-4.8.ebuild | 44 |
4 files changed, 8 insertions, 103 deletions
diff --git a/sci-mathematics/glpk/ChangeLog b/sci-mathematics/glpk/ChangeLog index 93fdbc906b75..ddb34c5e5877 100644 --- a/sci-mathematics/glpk/ChangeLog +++ b/sci-mathematics/glpk/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-mathematics/glpk # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.39 2009/09/23 20:10:31 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.40 2009/11/21 08:07:57 bicatali Exp $ + +*glpk-4.40 (21 Nov 2009) + + 21 Nov 2009; Sébastien Fabbro <bicatali@gentoo.org> -glpk-4.8.ebuild, + -glpk-4.37.ebuild, -glpk-4.38.ebuild, +glpk-4.40.ebuild: + Version bump 23 Sep 2009; Patrick Lauer <patrick@gentoo.org> glpk-4.8.ebuild: Remove virtual/libc diff --git a/sci-mathematics/glpk/glpk-4.38.ebuild b/sci-mathematics/glpk/glpk-4.38.ebuild deleted file mode 100644 index 4db4bb0b834f..000000000000 --- a/sci-mathematics/glpk/glpk-4.38.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.38.ebuild,v 1.1 2009/06/18 07:53:32 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" - -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/gomory.djvu || die "failed to instal djvu and pdf" - dodoc *.txt || die "failed to install manual files" - fi -} diff --git a/sci-mathematics/glpk/glpk-4.37.ebuild b/sci-mathematics/glpk/glpk-4.40.ebuild index 1aa24fdf5921..fccfc5cd12c7 100644 --- a/sci-mathematics/glpk/glpk-4.37.ebuild +++ b/sci-mathematics/glpk/glpk-4.40.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.37.ebuild,v 1.1 2009/04/07 09:00:36 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.40.ebuild,v 1.1 2009/11/21 08:07:57 bicatali Exp $ EAPI=2 inherit flag-o-matic diff --git a/sci-mathematics/glpk/glpk-4.8.ebuild b/sci-mathematics/glpk/glpk-4.8.ebuild deleted file mode 100644 index ca45b674e8ef..000000000000 --- a/sci-mathematics/glpk/glpk-4.8.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.8.ebuild,v 1.6 2009/09/23 20:10:31 patrick Exp $ - -DESCRIPTION="GNU Linear Programming Kit" -LICENSE="GPL-2" -HOMEPAGE="http://www.gnu.org/software/glpk/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" - -SLOT="0" -IUSE="doc" -KEYWORDS="amd64 ppc x86" - -DEPEND=">=sys-devel/gcc-3.2 - doc? ( virtual/ghostscript )" -RDEPEND="" - -src_compile() { - LIBS="${LIBS} -lm" econf --enable-shared || die - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - - # INSTALL include some usage docs - dodoc AUTHORS ChangeLog INSTALL NEWS README || \ - die "failed to install docs" - - # 250Kb - insinto /usr/share/doc/${PF}/examples - doins examples/*.mod && doins examples/*.tsp || \ - die "failed to install examples" - - # manual/ is 2.5Mb in size - if use doc; then - cd "${S}"/doc - for i in *.ps; do - ps2pdf14 "${i}" || die "failed to convert ps to pdf" - done - insinto /usr/share/doc/${PF}/manual - doins * || die "failed to install manual files" - fi -} |