diff options
author | Markus Dittrich <markusle@gentoo.org> | 2006-06-01 15:34:16 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2006-06-01 15:34:16 +0000 |
commit | d98004186f9565a16dd4be7ea84e09cf4a5695c9 (patch) | |
tree | 33a1e1aac9c8ebdee0b99bff4a784d17bd25dac9 /sci-mathematics/scilab | |
parent | Initial import of ebuild. (diff) | |
download | gentoo-2-d98004186f9565a16dd4be7ea84e09cf4a5695c9.tar.gz gentoo-2-d98004186f9565a16dd4be7ea84e09cf4a5695c9.tar.bz2 gentoo-2-d98004186f9565a16dd4be7ea84e09cf4a5695c9.zip |
Fixed small typo and appended -pthread to LDFLAGS to fix linking problems with libblas.so (see bug #131957).
(Portage version: 2.1_rc3-r2)
Diffstat (limited to 'sci-mathematics/scilab')
-rw-r--r-- | sci-mathematics/scilab/ChangeLog | 6 | ||||
-rw-r--r-- | sci-mathematics/scilab/scilab-4.0.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sci-mathematics/scilab/ChangeLog b/sci-mathematics/scilab/ChangeLog index 0d30f3a39f2e..0f803fe5ba6b 100644 --- a/sci-mathematics/scilab/ChangeLog +++ b/sci-mathematics/scilab/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-mathematics/scilab # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/scilab/ChangeLog,v 1.22 2006/05/01 22:22:53 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/scilab/ChangeLog,v 1.23 2006/06/01 15:34:16 markusle Exp $ + + 01 Jun 2006; Markus Dittrich <markusle@gentoo.org> scilab-4.0.ebuild: + Fixed small typo and appended -pthread to LDFLAGS to fix linking + problems with libblas.so (see bug #131957). 01 May 2006; Markus Dittrich <markusle@gentoo.org> scilab-4.0.ebuild: Disable parallel build since it is broken (see bug #117490). diff --git a/sci-mathematics/scilab/scilab-4.0.ebuild b/sci-mathematics/scilab/scilab-4.0.ebuild index fc1368d423c6..88049a55da15 100644 --- a/sci-mathematics/scilab/scilab-4.0.ebuild +++ b/sci-mathematics/scilab/scilab-4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/scilab/scilab-4.0.ebuild,v 1.3 2006/05/01 22:22:54 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/scilab/scilab-4.0.ebuild,v 1.4 2006/06/01 15:34:16 markusle Exp $ inherit eutils fortran toolchain-funcs multilib autotools @@ -64,7 +64,7 @@ src_unpack() { sed -e "s:@CC_OPTIONS@:${CFLAGS}:" \ -e "s:@FC_OPTIONS@:${FFLAGS}:" \ - -e "s:@LD_LDFLAGS@:$LDFLAGS}:" \ + -e "s:@LD_LDFLAGS@:${LDFLAGS} -lpthread:" \ -i Makefile.incl.in || die "Failed to fix Makefile.incl.in" } |