summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2002-10-27 01:47:17 +0000
committerGeorge Shapovalov <george@gentoo.org>2002-10-27 01:47:17 +0000
commit71792fe973e094770913b8849d131d4d6333cf7b (patch)
tree7b2d9152c29232bceb31a87461c4528a471259e6 /app-misc
parentoops, correcting thans to wrong person in Changelog.. (diff)
downloadgentoo-2-71792fe973e094770913b8849d131d4d6333cf7b.tar.gz
gentoo-2-71792fe973e094770913b8849d131d4d6333cf7b.tar.bz2
gentoo-2-71792fe973e094770913b8849d131d4d6333cf7b.zip
new package: the GNU Linear Programming Kit
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/glpk/ChangeLog11
-rw-r--r--app-misc/glpk/files/digest-glpk-3.2.11
-rw-r--r--app-misc/glpk/glpk-3.2.1.ebuild34
3 files changed, 46 insertions, 0 deletions
diff --git a/app-misc/glpk/ChangeLog b/app-misc/glpk/ChangeLog
new file mode 100644
index 000000000000..f99c73380df2
--- /dev/null
+++ b/app-misc/glpk/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for app-misc/glpk
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/app-misc/glpk/ChangeLog,v 1.1 2002/10/27 01:47:17 george Exp $
+
+*glpk-3.2.1 (26 Oct 2002)
+
+ 26 Oct 2002; George Shapovalov <george@gentoo.org> glpk-3.2.1.ebuild :
+
+ fisrt submission
+ "the GNU Linear Programming Kit",
+ submitted by Rigo Ketelings <rigo@home.nl>
diff --git a/app-misc/glpk/files/digest-glpk-3.2.1 b/app-misc/glpk/files/digest-glpk-3.2.1
new file mode 100644
index 000000000000..4bd7d0abbecf
--- /dev/null
+++ b/app-misc/glpk/files/digest-glpk-3.2.1
@@ -0,0 +1 @@
+MD5 440d5e25a3066a896ff1b3e1ac5251c5 glpk-3.2.1.tar.gz 843405
diff --git a/app-misc/glpk/glpk-3.2.1.ebuild b/app-misc/glpk/glpk-3.2.1.ebuild
new file mode 100644
index 000000000000..f809e097388f
--- /dev/null
+++ b/app-misc/glpk/glpk-3.2.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/glpk/glpk-3.2.1.ebuild,v 1.1 2002/10/27 01:47:17 george Exp $
+
+DEPEND="virtual/glibc"
+
+DESCRIPTION="GLPK - the GNU Linear Programming Kit"
+HOMEPAGE="http://www.gnu.org"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+SLOT="0"
+KEYWORDS="~x86"
+LICENSE="GPL-2"
+
+S=${WORKDIR}/${P}
+
+src_compile() {
+# ./configure \
+# --host=${CHOST} \
+# --prefix=/usr \
+# --infodir=/usr/share/info \
+# --mandir=/usr/share/man || die "./configure failed"
+ econf || die "./configure failed"
+
+ emake || die
+}
+
+src_install() {
+ dodir /usr/bin
+ dodir /usr/include
+ dodir /usr/lib
+ make DESTDIR=${D} install || die
+ dodoc AUTHORS COPYING INSTALL README NEWS VERSION STATUS
+}