diff options
author | bicatali <bicatali@32389bae-6d03-0410-99cf-db05cde120eb> | 2007-08-18 11:14:04 +0000 |
---|---|---|
committer | bicatali <bicatali@32389bae-6d03-0410-99cf-db05cde120eb> | 2007-08-18 11:14:04 +0000 |
commit | 7bc81b97774a54b717acea15adcd58559076a2e1 (patch) | |
tree | f7bdc697c00da04810d0bb90cac666b66f2007cb /sci-libs/mkl/mkl-9.1.023.ebuild | |
parent | mkl: lapack.pc fix (diff) | |
download | sci-7bc81b97774a54b717acea15adcd58559076a2e1.tar.gz sci-7bc81b97774a54b717acea15adcd58559076a2e1.tar.bz2 sci-7bc81b97774a54b717acea15adcd58559076a2e1.zip |
mkl: re-fix access violation and a comment
git-svn-id: http://overlays.gentoo.org/svn/proj/science/overlay@699 32389bae-6d03-0410-99cf-db05cde120eb
Diffstat (limited to 'sci-libs/mkl/mkl-9.1.023.ebuild')
-rw-r--r-- | sci-libs/mkl/mkl-9.1.023.ebuild | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sci-libs/mkl/mkl-9.1.023.ebuild b/sci-libs/mkl/mkl-9.1.023.ebuild index 17ae2eabb..7edeeb35f 100644 --- a/sci-libs/mkl/mkl-9.1.023.ebuild +++ b/sci-libs/mkl/mkl-9.1.023.ebuild @@ -10,8 +10,8 @@ MYP="${PN}-${MYPV}" DESCRIPTION="Intel(R) Math Kernel Library: linear algebra, fft, random number generators." HOMEPAGE="http://developer.intel.com/software/products/mkl/" SRC_URI="!int64? ( !serial? ( l_${PN}_p_${PV}.tgz ) ) - int64? ( l_${PN}_enh_p_${PV}.tgz ) - serial? ( l_${PN}_enh_p_${PV}.tgz )" + int64? ( l_${PN}_enh_p_${PV}.tgz ) + serial? ( l_${PN}_enh_p_${PV}.tgz )" LICENSE="${MYP}" @@ -41,10 +41,10 @@ pkg_nofetch() { einfo "and keep the license Intel sent you" einfo "SRC=${A}" - if use int64 || use serial; then - einfo "Since you have either USE=int64 or USE=serial" - einfo "You will need to download the enhanced version" - fi + if use int64 || use serial; then + einfo "Since you have either USE=int64 or USE=serial" + einfo "You will need to download the enhanced version" + fi } pkg_setup() { @@ -76,7 +76,7 @@ src_unpack() { local dp=950 ! use serial && ! use int64 && dp=400 ewarn "Intel ${PN} requires ${dp}Mb of disk space" - ewarn "Make sure you have enough in ${PORTAGE_TMPDIR} and in /opt" + ewarn "Make sure you have enough in ${PORTAGE_TMPDIR}, /tmp and in /opt" ewarn unpack ${A} @@ -87,8 +87,8 @@ src_unpack() { # tar xf l_*; ./install.sh --duplicate mkl.ini; # the file will be instman/mkl.ini - # binary blob extractor installs log crap in /opt/intel - #addwrite /opt/intel + # binary blob extractor installs crap in /opt/intel + addwrite /opt/intel cp ${MKL_LICENSE} ${WORKDIR}/ MKL_LICENSE="$(basename ${MKL_LICENSE})" cat > mkl.ini << EOF @@ -104,7 +104,7 @@ EOF --log log.txt &> /dev/null if [[ -z $(find "${S}" -name libmkl.so) ]]; then - eerror "could not find extracted files" + eerror "could not find extracted files" eerror "see ${PWD}/log.txt to see why" die "extracting failed" fi |