diff options
author | George Shapovalov <george@gentoo.org> | 2004-01-30 19:54:56 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2004-01-30 19:54:56 +0000 |
commit | ec4d07645ce0bcf8578528695e090611cc054245 (patch) | |
tree | e931ce3ad907dfadb27035cb3a6c24f2b2f8425e /dev-libs/mkl/mkl-5.2.ebuild | |
parent | stable on sparc (diff) | |
download | gentoo-2-ec4d07645ce0bcf8578528695e090611cc054245.tar.gz gentoo-2-ec4d07645ce0bcf8578528695e090611cc054245.tar.bz2 gentoo-2-ec4d07645ce0bcf8578528695e090611cc054245.zip |
new version
Diffstat (limited to 'dev-libs/mkl/mkl-5.2.ebuild')
-rw-r--r-- | dev-libs/mkl/mkl-5.2.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-libs/mkl/mkl-5.2.ebuild b/dev-libs/mkl/mkl-5.2.ebuild new file mode 100644 index 000000000000..5af269a63af7 --- /dev/null +++ b/dev-libs/mkl/mkl-5.2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/mkl/mkl-5.2.ebuild,v 1.1 2004/01/30 19:54:56 george Exp $ + +S=${WORKDIR} +DESCRIPTION="Intel(R) Math Kernel Library" +HOMEPAGE="http://developer.intel.com/software/products/mkl/" +SRC_URI="http://developer.intel.com/software/products/mkl/downloads/mkl52lin_e.tar" + +IUSE="" + +# No need to, there aren't any executables and it takes a long time. +RESTRICT="nostrip" + +SLOT="0" +LICENSE="imkl-5.1" +KEYWORDS="~x86 ~sparc" + +DEPEND="app-arch/cpio + app-arch/rpm" + +RDEPEND=">=sys-kernel/linux-headers-2.4 + >=sys-libs/glibc-2.2.2" + +src_compile() { + mkdir opt + + for x in intel-*.i386.rpm + do + einfo "Extracting: ${x}" + rpm2cpio ${x} | cpio --extract --make-directories --unconditional + done +} + +src_install () { + cp -a opt ${D} + cd ${D}/opt/intel/mkl/ + dodoc license.txt + dohtml -r mklnotes.htm mkllic.htm doc/* + rm -rf license.txt *.htm uninstall doc/ + + # Mkl enviroment + dodir /etc/env.d + echo "LDPATH=/opt/intel/mkl/lib/32/" > ${D}/etc/env.d/35mkl + echo "MKL_ROOT=/opt/intel/mkl" >> ${D}/etc/env.d/35mkl +} |