summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2009-04-07 09:00:36 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2009-04-07 09:00:36 +0000
commit5a6c7579a4a2d9c2b887343feb25ea3bd25990d9 (patch)
tree8a16ed1ba2e06d647c3576d333e1046ef50646aa /sci-mathematics
parentmake sure pidpath is available (diff)
downloadgentoo-2-5a6c7579a4a2d9c2b887343feb25ea3bd25990d9.tar.gz
gentoo-2-5a6c7579a4a2d9c2b887343feb25ea3bd25990d9.tar.bz2
gentoo-2-5a6c7579a4a2d9c2b887343feb25ea3bd25990d9.zip
Version bump
(Portage version: 2.2_rc28/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics')
-rw-r--r--sci-mathematics/glpk/ChangeLog8
-rw-r--r--sci-mathematics/glpk/glpk-4.37.ebuild (renamed from sci-mathematics/glpk/glpk-4.29.ebuild)15
2 files changed, 14 insertions, 9 deletions
diff --git a/sci-mathematics/glpk/ChangeLog b/sci-mathematics/glpk/ChangeLog
index d958ce8cc0cf..9678930bcee0 100644
--- a/sci-mathematics/glpk/ChangeLog
+++ b/sci-mathematics/glpk/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sci-mathematics/glpk
# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.32 2009/03/27 12:01:51 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.33 2009/04/07 09:00:36 bicatali Exp $
+
+*glpk-4.37 (07 Apr 2009)
+
+ 07 Apr 2009; Sébastien Fabbro <bicatali@gentoo.org> -glpk-4.29.ebuild,
+ +glpk-4.37.ebuild:
+ Version bump
27 Mar 2009; Ferris McCormick <fmccor@gentoo.org> glpk-4.35.ebuild:
Sparc stable, preparation for bug #245707.
diff --git a/sci-mathematics/glpk/glpk-4.29.ebuild b/sci-mathematics/glpk/glpk-4.37.ebuild
index 5a0f6d767fa9..1aa24fdf5921 100644
--- a/sci-mathematics/glpk/glpk-4.29.ebuild
+++ b/sci-mathematics/glpk/glpk-4.37.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# 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.29.ebuild,v 1.2 2008/07/23 17:35:15 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.37.ebuild,v 1.1 2009/04/07 09:00:36 bicatali Exp $
+EAPI=2
inherit flag-o-matic
DESCRIPTION="GNU Linear Programming Kit"
@@ -20,7 +21,7 @@ RDEPEND="odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) )
DEPEND="${RDEPEND}
dev-util/pkgconfig"
-src_compile() {
+src_configure() {
local myconf="--disable-dl"
if use mysql || use odbc; then
myconf="--enable-dl"
@@ -34,14 +35,12 @@ src_compile() {
$(use_with gmp) \
$(use_enable odbc) \
$(use_enable mysql) \
- ${myconf} || die "econf failed"
- emake || die "emake failed"
+ ${myconf}
}
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"
@@ -52,7 +51,7 @@ src_install() {
fi
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"
+ doins *.pdf notes/gomory.djvu || die "failed to instal djvu and pdf"
+ dodoc *.txt || die "failed to install manual files"
fi
}