diff options
author | Markus Dittrich <markusle@gentoo.org> | 2008-01-16 11:28:47 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2008-01-16 11:28:47 +0000 |
commit | 906967460924fdfb48cd62c3e50d92e5cd0a9fa8 (patch) | |
tree | 1107539e9a1d7223a76d61dd49d3201538f660d7 /sci-mathematics | |
parent | Marked ppc and ppc64 (diff) | |
download | gentoo-2-906967460924fdfb48cd62c3e50d92e5cd0a9fa8.tar.gz gentoo-2-906967460924fdfb48cd62c3e50d92e5cd0a9fa8.tar.bz2 gentoo-2-906967460924fdfb48cd62c3e50d92e5cd0a9fa8.zip |
Fixed problem with the version detection of boehm-gc (bug #206057)
(Portage version: 2.1.4)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/Macaulay2/ChangeLog | 5 | ||||
-rw-r--r-- | sci-mathematics/Macaulay2/Macaulay2-1.0.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sci-mathematics/Macaulay2/ChangeLog b/sci-mathematics/Macaulay2/ChangeLog index 01ac840bbb80..6190b424c8e4 100644 --- a/sci-mathematics/Macaulay2/ChangeLog +++ b/sci-mathematics/Macaulay2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-mathematics/Macaulay2 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/Macaulay2/ChangeLog,v 1.16 2008/01/06 15:51:17 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/Macaulay2/ChangeLog,v 1.17 2008/01/16 11:28:47 markusle Exp $ + + 16 Jan 2008; Markus Dittrich <markusle@gentoo.org> Macaulay2-1.0.ebuild: + Fixed problem with the version detection of boehm-gc (bug #206057). *Macaulay2-1.0 (06 Jan 2008) diff --git a/sci-mathematics/Macaulay2/Macaulay2-1.0.ebuild b/sci-mathematics/Macaulay2/Macaulay2-1.0.ebuild index 90020b82254b..bf8714ad0163 100644 --- a/sci-mathematics/Macaulay2/Macaulay2-1.0.ebuild +++ b/sci-mathematics/Macaulay2/Macaulay2-1.0.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/Macaulay2/Macaulay2-1.0.ebuild,v 1.2 2008/01/07 06:27:55 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/Macaulay2/Macaulay2-1.0.ebuild,v 1.3 2008/01/16 11:28:47 markusle Exp $ inherit elisp-common eutils flag-o-matic toolchain-funcs autotools @@ -33,7 +33,8 @@ pkg_setup() { # boehm-gc currently is broken with USE='threads' # (see bug #195335) causing Macaulay2 to fail - if built_with_use =dev-libs/boehm-gc-7* threads; then + if built_with_use "dev-libs/boehm-gc" "threads" \ + && has_version "=dev-libs/boehm-gc-7*"; then echo eerror "dev-libs/boehm-gc-7* with USE=\"threads\" is" eerror "currently broken (see bug #195335) causing" |