blob: 74747c86bbe893b26c05ecb3ba536a756c4f37be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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.3 2004/03/24 14:33:56 weeve 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
}
|