diff options
author | Markus Dittrich <markusle@gentoo.org> | 2006-12-12 13:20:57 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2006-12-12 13:20:57 +0000 |
commit | 78dc998c4100ff565cb4f50cd16ea04e68b60e93 (patch) | |
tree | 190825e39b0e82c980c454aec9352d1e475cdbd3 /sci-libs/blas-atlas | |
parent | Stable on sparc wrt security #153916 (diff) | |
download | gentoo-2-78dc998c4100ff565cb4f50cd16ea04e68b60e93.tar.gz gentoo-2-78dc998c4100ff565cb4f50cd16ea04e68b60e93.tar.bz2 gentoo-2-78dc998c4100ff565cb4f50cd16ea04e68b60e93.zip |
Pass MAKEOPTS to atlas' native build system and use emake instead of plain make.
(Portage version: 2.1.2_rc3-r2)
Diffstat (limited to 'sci-libs/blas-atlas')
-rw-r--r-- | sci-libs/blas-atlas/ChangeLog | 7 | ||||
-rw-r--r-- | sci-libs/blas-atlas/blas-atlas-3.7.23.ebuild | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/sci-libs/blas-atlas/ChangeLog b/sci-libs/blas-atlas/ChangeLog index fc77a0aa0c8d..37d5a7c1b1ae 100644 --- a/sci-libs/blas-atlas/ChangeLog +++ b/sci-libs/blas-atlas/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/blas-atlas # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-atlas/ChangeLog,v 1.49 2006/12/09 13:50:15 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-atlas/ChangeLog,v 1.50 2006/12/12 13:20:57 markusle Exp $ + + 12 Dec 2006; Markus Dittrich <markusle@gentoo.org> + blas-atlas-3.7.23.ebuild: + Pass MAKEOPTS to atlas' native build system and use emake instead + of plain make. *blas-atlas-3.7.23 (09 Dec 2006) diff --git a/sci-libs/blas-atlas/blas-atlas-3.7.23.ebuild b/sci-libs/blas-atlas/blas-atlas-3.7.23.ebuild index b812ef2fd4b4..21bc988008a4 100644 --- a/sci-libs/blas-atlas/blas-atlas-3.7.23.ebuild +++ b/sci-libs/blas-atlas/blas-atlas-3.7.23.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-libs/blas-atlas/blas-atlas-3.7.23.ebuild,v 1.1 2006/12/09 13:50:15 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-atlas/blas-atlas-3.7.23.ebuild,v 1.2 2006/12/12 13:20:57 markusle Exp $ inherit eutils toolchain-funcs fortran @@ -83,6 +83,7 @@ src_unpack() { compdefs="${compdefs} -C sm '$(tc-getCC)' -F sm '${CFLAGS}'" compdefs="${compdefs} -C dm '$(tc-getCC)' -F dm '${CFLAGS}'" compdefs="${compdefs} -C if '${FORTRANC}' -F if '${FFLAGS}'" + compdefs="${compdefs} -Ss pmake '\$(MAKE) ${MAKEOPTS}'" compdefs="${compdefs} -Si cputhrchk 0 ${archselect}" cd ${BLD_DIR} && ../configure ${compdefs} \ @@ -91,7 +92,7 @@ src_unpack() { src_compile() { cd ${BLD_DIR} - make || die "make failed" + emake -j1 || die "make failed" make shared-strip RPATH=${RPATH}/atlas || \ die "failed to build shared libraries" |