summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2010-12-22 05:57:59 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2010-12-22 05:57:59 +0000
commit3f5b29f4222adbdedc1ac770aab94920c9f3311b (patch)
tree5302d05729b0471d0a73ae2aa4ca0241ca7b5fd6 /sci-mathematics/glpk
parentBump (diff)
downloadgentoo-2-3f5b29f4222adbdedc1ac770aab94920c9f3311b.tar.gz
gentoo-2-3f5b29f4222adbdedc1ac770aab94920c9f3311b.tar.bz2
gentoo-2-3f5b29f4222adbdedc1ac770aab94920c9f3311b.zip
Bump
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics/glpk')
-rw-r--r--sci-mathematics/glpk/ChangeLog8
-rw-r--r--sci-mathematics/glpk/glpk-4.41.ebuild57
-rw-r--r--sci-mathematics/glpk/glpk-4.43.ebuild57
-rw-r--r--sci-mathematics/glpk/glpk-4.45.ebuild (renamed from sci-mathematics/glpk/glpk-4.42.ebuild)5
4 files changed, 10 insertions, 117 deletions
diff --git a/sci-mathematics/glpk/ChangeLog b/sci-mathematics/glpk/ChangeLog
index b2b717ba955d..886aae3d069e 100644
--- a/sci-mathematics/glpk/ChangeLog
+++ b/sci-mathematics/glpk/ChangeLog
@@ -1,6 +1,12 @@
# 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.45 2010/07/12 17:20:38 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.46 2010/12/22 05:57:59 bicatali Exp $
+
+*glpk-4.45 (22 Dec 2010)
+
+ 22 Dec 2010; Sébastien Fabbro <bicatali@gentoo.org> -glpk-4.41.ebuild,
+ -glpk-4.42.ebuild, -glpk-4.43.ebuild, +glpk-4.45.ebuild:
+ Bump
*glpk-4.44 (12 Jul 2010)
diff --git a/sci-mathematics/glpk/glpk-4.41.ebuild b/sci-mathematics/glpk/glpk-4.41.ebuild
deleted file mode 100644
index 299095ee0b60..000000000000
--- a/sci-mathematics/glpk/glpk-4.41.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# 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.41.ebuild,v 1.1 2010/01/11 04:11:53 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.43.ebuild b/sci-mathematics/glpk/glpk-4.43.ebuild
deleted file mode 100644
index 3bedbf5b2428..000000000000
--- a/sci-mathematics/glpk/glpk-4.43.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# 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
-}
diff --git a/sci-mathematics/glpk/glpk-4.42.ebuild b/sci-mathematics/glpk/glpk-4.45.ebuild
index 4408a310c9f1..0edf07362623 100644
--- a/sci-mathematics/glpk/glpk-4.42.ebuild
+++ b/sci-mathematics/glpk/glpk-4.45.ebuild
@@ -1,6 +1,6 @@
# 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.42.ebuild,v 1.2 2010/04/12 13:57:23 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.45.ebuild,v 1.1 2010/12/22 05:57:59 bicatali Exp $
EAPI=2
inherit flag-o-matic
@@ -11,7 +11,7 @@ HOMEPAGE="http://www.gnu.org/software/glpk/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
SLOT="0"
-IUSE="doc examples gmp odbc mysql"
+IUSE="doc examples gmp odbc mysql static-libs"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
RDEPEND="odbc? ( || ( dev-db/libiodbc dev-db/unixODBC ) )
@@ -32,6 +32,7 @@ src_configure() {
econf \
--with-zlib \
+ $(use_enable static-libs static) \
$(use_with gmp) \
$(use_enable odbc) \
$(use_enable mysql) \