summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2007-12-04 11:34:43 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2007-12-04 11:34:43 +0000
commit48f2f683cf30cab19422ef458da1245f759c45cd (patch)
treefe2553b8b0dc66b8c502d917597e9780741e1b86 /sci-mathematics
parentalpha/ia64/sparc stable wrt #201175 (diff)
downloadgentoo-2-48f2f683cf30cab19422ef458da1245f759c45cd.tar.gz
gentoo-2-48f2f683cf30cab19422ef458da1245f759c45cd.tar.bz2
gentoo-2-48f2f683cf30cab19422ef458da1245f759c45cd.zip
Version bump
(Portage version: 2.1.4_rc4)
Diffstat (limited to 'sci-mathematics')
-rw-r--r--sci-mathematics/glpk/ChangeLog7
-rw-r--r--sci-mathematics/glpk/files/digest-glpk-4.243
-rw-r--r--sci-mathematics/glpk/glpk-4.24.ebuild41
3 files changed, 50 insertions, 1 deletions
diff --git a/sci-mathematics/glpk/ChangeLog b/sci-mathematics/glpk/ChangeLog
index 01cd4505aa1d..a999bda0783d 100644
--- a/sci-mathematics/glpk/ChangeLog
+++ b/sci-mathematics/glpk/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-mathematics/glpk
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.14 2007/10/03 12:56:14 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.15 2007/12/04 11:34:42 bicatali Exp $
+
+*glpk-4.24 (04 Dec 2007)
+
+ 04 Dec 2007; Sébastien Fabbro <bicatali@gentoo.org> +glpk-4.24.ebuild:
+ Version bump
*glpk-4.22 (03 Oct 2007)
diff --git a/sci-mathematics/glpk/files/digest-glpk-4.24 b/sci-mathematics/glpk/files/digest-glpk-4.24
new file mode 100644
index 000000000000..d6d7838b8b42
--- /dev/null
+++ b/sci-mathematics/glpk/files/digest-glpk-4.24
@@ -0,0 +1,3 @@
+MD5 765dcecc20dc6b80362e65c755f41976 glpk-4.24.tar.gz 1449575
+RMD160 8cacd508915e5e02422b369dc0f5ae778d20876e glpk-4.24.tar.gz 1449575
+SHA256 23326c9dd21762159b6fa946e41e0e95d233c6e9f9a69134ef10e3541cd516c9 glpk-4.24.tar.gz 1449575
diff --git a/sci-mathematics/glpk/glpk-4.24.ebuild b/sci-mathematics/glpk/glpk-4.24.ebuild
new file mode 100644
index 000000000000..43b8bab52807
--- /dev/null
+++ b/sci-mathematics/glpk/glpk-4.24.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.24.ebuild,v 1.1 2007/12/04 11:34:42 bicatali 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="~x86 ~amd64 ~ppc"
+
+DEPEND=">=sys-devel/gcc-3.2
+ virtual/libc
+ doc? ( virtual/ghostscript )"
+RDEPEND="virtual/libc"
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+
+ # INSTALL include some usage docs
+ dodoc AUTHORS ChangeLog INSTALL NEWS README || \
+ die "failed to install docs"
+
+ # 385Kb
+ insinto /usr/share/doc/${PF}/examples
+ doins examples/*.{c,mod,lp,mps,dat} || \
+ die "failed to install examples"
+
+ # manual/ is 2.5Mb in size
+ if use doc; then
+ cd "${S}"/doc
+ dvipdf refman.dvi
+ dvipdf lang.dvi
+ insinto /usr/share/doc/${PF}/manual
+ doins *.pdf || die "failed to install manual files"
+ docinto manual
+ dodoc *.txt || die "failed to install manual txt"
+ fi
+}