summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2008-03-26 14:03:08 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2008-03-26 14:03:08 +0000
commit837d564b3c92d1d27e98d2b15a02a140069a57bd (patch)
treee35888db04b340ececa07cbacf4b1a090db80376 /sci-mathematics/glpk
parentAdd libpq from 206725 (diff)
downloadgentoo-2-837d564b3c92d1d27e98d2b15a02a140069a57bd.tar.gz
gentoo-2-837d564b3c92d1d27e98d2b15a02a140069a57bd.tar.bz2
gentoo-2-837d564b3c92d1d27e98d2b15a02a140069a57bd.zip
Fixed syntax errors
(Portage version: 2.1.4.4)
Diffstat (limited to 'sci-mathematics/glpk')
-rw-r--r--sci-mathematics/glpk/ChangeLog5
-rw-r--r--sci-mathematics/glpk/glpk-4.27.ebuild6
2 files changed, 7 insertions, 4 deletions
diff --git a/sci-mathematics/glpk/ChangeLog b/sci-mathematics/glpk/ChangeLog
index 1ea702009ff4..7cbb902c2c87 100644
--- a/sci-mathematics/glpk/ChangeLog
+++ b/sci-mathematics/glpk/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-mathematics/glpk
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.17 2008/03/25 18:07:22 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/ChangeLog,v 1.18 2008/03/26 14:03:08 bicatali Exp $
+
+ 26 Mar 2008; Sébastien Fabbro <bicatali@gentoo.org> glpk-4.27.ebuild:
+ Fixed syntax errors
25 Mar 2008; Sébastien Fabbro <bicatali@gentoo.org> glpk-4.27.ebuild:
Added proper dependencies and use flag iodbc, mysql and gmp. Fixed
diff --git a/sci-mathematics/glpk/glpk-4.27.ebuild b/sci-mathematics/glpk/glpk-4.27.ebuild
index 6511c78a7cee..8093f832f2d5 100644
--- a/sci-mathematics/glpk/glpk-4.27.ebuild
+++ b/sci-mathematics/glpk/glpk-4.27.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.27.ebuild,v 1.2 2008/03/25 18:07:22 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/glpk/glpk-4.27.ebuild,v 1.3 2008/03/26 14:03:08 bicatali Exp $
DESCRIPTION="GNU Linear Programming Kit"
LICENSE="GPL-3"
@@ -11,7 +11,7 @@ SLOT="0"
IUSE="doc gmp iodbc mysql"
KEYWORDS="~x86 ~amd64 ~ppc"
-DEPEND="odbc? ( dev-db/libiodbc )
+DEPEND="iodbc? ( dev-db/libiodbc )
gmp? ( dev-libs/gmp )
mysql? ( virtual/mysql )"
@@ -40,6 +40,6 @@ src_install() {
cd "${S}"/doc
dodoc *.ps *.txt || die "failed to install manual files"
insinto /usr/share/doc/${PF}
- doins memo/gomory.djvu || "failed to instal memo"
+ doins memo/gomory.djvu || die "failed to instal memo"
fi
}