blob: 0524ea1b66a0113e56fbb090c75c9ffcb5ca7877 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/ipp/ipp-6.0.0.063.ebuild,v 1.4 2009/01/31 12:07:10 bicatali Exp $
inherit check-reqs
PID=1243
PB=${PN}
DESCRIPTION="Intel(R) Integrated Performance Primitive library for multimedia and data processing"
HOMEPAGE="http://developer.intel.com/software/products/ipp/"
KEYWORDS="~amd64 ~x86 ~ia64"
COM_URI="http://registrationcenter-download.intel.com/irc_nas/${PID}"
SRC_URI="amd64? ( ${COM_URI}/l_${PB}_em64t_p_${PV}.tar.gz )
x86? ( ${COM_URI}/l_${PB}_ia32_p_${PV}.tar.gz )
ia64? ( ${COM_URI}/l_${PB}_itanium_p_${PV}.tar.gz )"
SLOT="0"
LICENSE="Intel-SDP"
IUSE=""
RESTRICT="strip mirror binchecks"
INTEL_LIC_DIR=/opt/intel/licenses
pkg_setup() {
# Check the license
if [[ -z ${IPP_LICENSE} ]]; then
IPP_LICENSE="$(grep -ls PerfPrim ${ROOT}${INTEL_LIC_DIR}/* | tail -n 1)"
IPP_LICENSE=${IPP_LICENSE/${ROOT}/}
fi
if [[ -z ${IPP_LICENSE} ]]; then
eerror "Did not find any valid ipp license."
eerror "Register at ${HOMEPAGE} to receive a license"
eerror "and place it in ${INTEL_LIC_DIR} or run:"
eerror "export IPP_LICENSE=/my/license/file emerge ipp"
die "license setup failed"
fi
local disq_req
IPP_ARCH=
if use amd64; then
IPP_ARCH="em64t"
disk_req="800"
elif use x86; then
IPP_ARCH="ia32"
disk_req="600"
elif use ia64; then
IPP_ARCH="ia64"
disk_req="700"
fi
einfo "IPP_LICENSE=${IPP_LICENSE}"
einfo "IPP_ARCH=${IPP_ARCH}"
# Check if we have enough RAM and free diskspace
CHECKREQS_MEMORY="512"
CHECKREQS_DISK_BUILD=${disk_req}
check_reqs
}
src_unpack() {
unpack ${A}
cd l_${PB}_*_${PV}
# need to make a file to install non-interactively.
# to produce such a file, first do it interactively
# tar xf l_*; ./install.sh --duplicate ipp.ini;
# binary blob extractor uses stupid directory
addpredict /usr/local/share/macrovision
addwrite /opt/intel
cp ${IPP_LICENSE} "${WORKDIR}"/
IPP_LICENSE_LOCAL="${WORKDIR}/$(basename ${IPP_LICENSE})"
cat > ipp.ini <<- EOF
ACTIVATION=license_file
CONTINUE_WITH_OPTIONAL_ERROR=yes
PSET_INSTALL_DIR=${S}
PSET_LICENSE_FILE=${IPP_LICENSE_LOCAL}
INSTALL_MODE=NONRPM
ACCEPT_EULA=accept
EOF
einfo "Extracting ..."
./install.sh --silent ${PWD}/ipp.ini &> log.txt
# This check is arbitrary to say the least...
# We used to look for a specific library (ie: libippmmx.so) but that
# is unreliable as they are moving targets and may not be there on
# the next release. ippEULA.txt is more likely to remain there at
# the next release.
if [[ -z $(find "${S}" -name ippEULA.txt) ]]; then
eerror "could not find extracted files"
eerror "see ${PWD}/log.txt to see why"
die "extracting failed"
fi
# clean up
cd "${S}"
find . -type d -print0 | xargs --null chmod 755
rm -rf tmp* uninstall.sh
rm -rf "${WORKDIR}"/l_*
rm -f /opt/intel/.*ipp*.log /opt/intel/intel_sdp_products.db
}
src_install() {
local instdir=/opt/intel/${PN}/${PV}/${IPP_ARCH}
dodir ${instdir}
# install license file
if [[ ! -f ${INTEL_LIC_DIR}/$(basename ${IPP_LICENSE}) ]]; then
insinto ${INTEL_LIC_DIR}
doins ${IPP_LICENSE_LOCAL}
fi
# cp quicker than doins
einfo "Copying all files"
cp -pPR "${S}"/* "${D}"${instdir} || \
die "copying files failed"
local env_file=36ipp
echo "LDPATH=${instdir}/sharedlib" > ${env_file}
doenvd ${env_file} || die "doenvd ${env_file} failed"
}
|