blob: 26429634d68c30253852f8bc8230c62a7cc1452a (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/mkl/mkl-9.1.023.ebuild,v 1.6 2007/11/21 00:29:28 bicatali Exp $
inherit eutils versionator toolchain-funcs fortran
PID=779
PB=${PN}
DESCRIPTION="Intel(R) Math Kernel Library: linear algebra, fft, random number generators."
HOMEPAGE="http://developer.intel.com/software/products/mkl/"
KEYWORDS="~x86 ~amd64 ~ia64"
SRC_URI="!int64? ( !serial? ( http://registrationcenter-download.intel.com/irc_nas/${PID}/l_${PN}_p_${PV}.tgz ) )
int64? ( http://registrationcenter-download.intel.com/irc_nas/${PID}/l_${PN}_enh_p_${PV}.tgz )
serial? ( http://registrationcenter-download.intel.com/irc_nas/${PID}/l_${PN}_enh_p_${PV}.tgz )"
MAJOR=$(get_major_version ${PV})
MINOR=$(get_version_component_range 2 ${PV})
#slotting not yet supported
#SLOT="${MAJOR}.${MINOR}"
SLOT="0"
LICENSE="Intel-SDP"
IUSE="serial int64 fortran95 fftw doc examples"
RESTRICT="strip mirror"
DEPEND="app-admin/eselect-blas
app-admin/eselect-cblas
app-admin/eselect-lapack"
RDEPEND="${DEPEND}
dev-util/pkgconfig
doc? ( app-doc/blas-docs app-doc/lapack-docs )"
MKL_DIR=/opt/intel/${PN}/${MAJOR}.${MINOR}
pkg_setup() {
# setting up license
[[ -z ${MKL_LICENSE} && -d /opt/intel/licenses ]] && \
MKL_LICENSE=$(find /opt/intel/licenses -name *MKL*.lic)
if [[ -z ${MKL_LICENSE} ]]; then
eerror "Did not find any valid mkl license."
eerror "Please locate your license file and run:"
eerror "\t MKL_LICENSE=/my/license/dir emerge ${PN}"
eerror "or place your license in /opt/intel/licenses"
eerror "Hint: the license file is in the email Intel sent you"
die "setup mkl license failed"
fi
# setting up compilers
MKL_CC=gnu
[[ $(tc-getCC) == icc ]] && MKL_CC=icc
FORTRAN="gfortran ifc g77"
use fortran95 && FORTRAN="gfortran ifc"
use int64 && FORTRAN="gfortran ifc"
fortran_pkg_setup
}
src_unpack() {
ewarn
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}, /tmp and in /opt"
ewarn
unpack ${A}
cd l_${PN}_*_${PV}/install
# need to make a file to install non-interactively.
# to produce such a file, first do it interactively
# tar xf l_*; ./install.sh --duplicate mkl.ini;
# the file will be instman/mkl.ini
# binary blob extractor installs rpm leftovers in /opt/intel
addwrite /opt/intel
cp ${MKL_LICENSE} "${WORKDIR}"/
MKL_LIC="$(basename ${MKL_LICENSE})"
cat > mkl.ini << EOF
[MKL]
EULA_ACCEPT_REJECT=ACCEPT
FLEXLM_LICENSE_LOCATION=${WORKDIR}/${MKL_LIC}
INSTALLMODE=NONRPM
INSTALL_DESTINATION=${S}
EOF
einfo "Extracting ..."
./install \
--silent ${PWD}/mkl.ini \
--log log.txt &> /dev/null
if [[ -z $(find "${S}" -name libmkl.so) ]]; then
eerror "could not find extracted files"
eerror "see ${PWD}/log.txt to see why"
die "extracting failed"
fi
# remove unused stuff and set up intel names
rm -rf "${WORKDIR}"/l_*
case ${ARCH} in
x86) MKL_ARCH=32
MKL_KERN=ia32
rm -rf "${S}"/lib*/*64*
;;
amd64) MKL_ARCH=em64t
MKL_KERN=em64t
rm -rf "${S}"/lib*/32 "${S}"/lib*/64
;;
ia64) MKL_ARCH=64
MKL_KERN=ipf
rm -rf "${S}"/lib*/32 "${S}"/lib*/em64t
;;
esac
cd "${S}"
# default profile regular is threaded
MKL_PROF="regular"
if use serial; then
MKL_PROF="${MKL_PROF} serial"
else
[[ -d lib_serial ]] && rm -rf lib_serial
fi
if use int64; then
MKL_PROF="${MKL_PROF} ilp64"
else
[[ -d lib_ilp64 ]] && rm -rf lib_ilp64
fi
# fix a bad makefile in the test
if [[ ${FORTRANC} == gfortran ]] || [[ ${FORTRANC} == if* ]]; then
sed -i \
-e "s/g77/${FORTRANC}/" \
-e 's/-DGNU_USE//' \
tests/fftf/makefile || die "sed fftf test failed"
fi
# fix bad permissions on tools
find tools -type f -perm /a+w ! -perm /a+x -exec chmod 644 '{}' \; \
|| die "permissions fix failed"
}
src_compile() {
if use fortran95; then
for p in ${MKL_PROF}; do
einfo "Compiling fortan95 static lib wrappers for ${p}"
for x in blas95 lapack95; do
cd "${S}"/interfaces/${x}
emake \
FC=${FORTRANC} \
MKL_SUBVERS=${p} \
lib${MKL_ARCH} \
|| die "emake $(basename ${x}) failed"
done
done
fi
if use fftw; then
for p in ${MKL_PROF}; do
einfo "Compiling fftw static lib wrappers for ${p}"
for x in "${S}"/interfaces/fft*; do
cd "${x}"
emake -j1 \
F=${MKL_CC} \
MKL_SUBVERS=${p} \
lib${MKL_ARCH} \
|| die "emake $(basename ${x}) failed"
done
done
fi
}
src_test() {
local usegnu
[[ ${FORTRANC} = g* ]] && usegnu=gnu
# restrict tests for blas and cblas for now.
# for t in blas cblas fft*; do
for t in blas lapack; do
cd "${S}"/tests/${t}
for p in ${MKL_PROF}; do
einfo "Testing ${t} for ${p}"
emake -j1 \
F=${usegnu} \
FC=${FORTRANC} \
MKL_SUBVERS=${p} \
lib${MKL_ARCH} \
|| die "emake ${t} failed"
done
done
}
# usage: mkl_install_lib <serial|regular|ilp64>
mkl_install_lib() {
local proflib=lib_${1}
local prof=${PN}-${1}
[[ "${1}" == "regular" ]] && proflib=lib && prof=${PN}-threads
local libdir="${MKL_DIR}/${proflib}/${MKL_ARCH}"
local extlibs="-L${libdir} -lguide -lpthread"
[[ "${1}" == "serial" ]] && extlibs=""
[[ "${FORTRANC}" == "gfortran" ]] && \
gfortranlibs="-L${libdir} -lmkl_gfortran"
cp -pPR "${S}"/${proflib} "${D}"${MKL_DIR}
for x in blas cblas; do
cat > eselect.${x}.${prof} << EOF
${libdir}/libmkl_${MKL_KERN}.a /usr/@LIBDIR@/lib${x}.a
${libdir}/libmkl.so /usr/@LIBDIR@/lib${x}.so
${libdir}/libmkl.so /usr/@LIBDIR@/lib${x}.so.0
${libdir}/${x}.pc /usr/@LIBDIR@/pkgconfig/${x}.pc
EOF
[[ ${x} == cblas ]] && \
echo "${MKL_DIR}/include/mkl_cblas.h /usr/include/cblas.h" >> eselect.${x}.${prof}
eselect ${x} add $(get_libdir) eselect.${x}.${prof} ${prof}
sed -e "s:@LIBDIR@:$(get_libdir):" \
-e "s:@INCDIR@:${MKL_DIR}/include:" \
-e "s:@PV@:${PV}:" \
-e "s:@EXTLIBS@:${extlibs}:g" \
-e "s:@GFORTRANLIBS@:${gfortranlibs}:g" \
"${FILESDIR}"/${x}.pc.in > ${x}.pc || die "sed ${x}.pc failed"
insinto ${libdir}
doins ${x}.pc
done
cat > eselect.lapack.${prof} << EOF
${libdir}/libmkl_lapack.a /usr/@LIBDIR@/liblapack.a
${libdir}/libmkl_lapack.so /usr/@LIBDIR@/liblapack.so
${libdir}/libmkl_lapack.so /usr/@LIBDIR@/liblapack.so.0
${libdir}/lapack.pc /usr/@LIBDIR@/pkgconfig/lapack.pc
EOF
sed -e "s:@LIBDIR@:$(get_libdir):" \
-e "s:@PV@:${PV}:" \
-e "s:@EXTLIBS@:${extlibs}:g" \
-e "s:@GFORTRANLIBS@:${gfortranlibs}:g" \
"${FILESDIR}"/lapack.pc.in > lapack.pc || die "sed lapack.pc failed"
insinto ${libdir}
doins lapack.pc
eselect lapack add $(get_libdir) eselect.lapack.${prof} ${prof}
echo "LDPATH=${libdir}"
}
src_install() {
# install license
if [[ ! -f /opt/intel/licenses/${MKL_LIC} ]]; then
insinto /opt/intel/licenses
doins "${WORKDIR}"/${MKL_LIC} || die "install license failed"
fi
dodir ${MKL_DIR}
# keep intel dir in /opt as default install
einfo "Installing headers, man pages and tools"
# use cp, too slow with doins
cp -pPR include man tools "${D}"${MKL_DIR} || die "install include|man|tools failed"
if use examples; then
einfo "Installing examples"
cp -pPR examples "${D}"${MKL_DIR} || die "install examples failed"
fi
insinto ${MKL_DIR}/doc
doins doc/*.txt || die "basic doc install failed"
if use doc; then
einfo "Installing documentation"
cp -pPR doc/*.pdf doc/*.htm "${D}"${MKL_DIR}/doc || die "doc failed"
fi
# take care of lib and eselect files
local env_file=35mkl
for p in ${MKL_PROF}; do
einfo "Installing profile: ${p}"
mkl_install_lib ${p} > ${env_file}
done
echo "MANPATH=${MKL_DIR}/man" >> ${env_file}
echo "INCLUDE=${MKL_DIR}/include" >> ${env_file}
doenvd ${env_file} || die "doenvd failed"
}
pkg_postinst() {
# set default profile according to upstream
local ext=threads
if use int64; then
ext=int64
elif use serial; then
ext=serial
fi
ESELECT_PROF="${PN}-${FORTRANC}-${ext}"
# if blas profile is mkl, set lapack and cblas profiles as mkl
local blas_lib=$(eselect blas show | cut -d' ' -f2)
for p in blas cblas lapack; do
local current_lib=$(eselect ${p} show | cut -d' ' -f2)
if [[ -z ${current_lib} || \
${current_lib} == ${ESELECT_PROF} || \
${blas_lib} == ${ESELECT_PROF} ]]; then
# work around eselect bug #189942
local configfile="${ROOT}"/etc/env.d/${p}/$(get_libdir)/config
[[ -e ${configfile} ]] && rm -f ${configfile}
eselect ${p} set ${ESELECT_PROF}
elog "${p} has been eselected to ${ESELECT_PROF}"
if [[ ${current_lib} != ${blas_lib} ]]; then
eselect blas set ${ESELECT_PROF}
elog "${p} has been eselected to ${ESELECT_PROF} for consistency"
fi
else
elog "Current eselected ${p} is ${current_lib}"
elog "To use ${p} ${ESELECT_PROF} implementation, you have to issue (as root):"
elog "\t eselect ${p} set ${ESELECT_PROF}"
fi
done
}
|