blob: afaa5967cde18013f362d7e0dafa096fbb478b54 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
INTEL_DPN=parallel_studio_xe
INTEL_DID=2504
INTEL_DPV=2011_sp1_update2
INTEL_SUBDIR=composerxe
inherit intel-sdp
DESCRIPTION="Intel C/C++ Compiler"
HOMEPAGE="http://software.intel.com/en-us/articles/intel-composer-xe/"
IUSE="eclipse"
DEPEND="~dev-libs/intel-common-${PV}[compiler]"
RDEPEND="${DEPEND}
eclipse? ( dev-util/eclipse-sdk )"
QA_PREBUILT="
${INTEL_SDP_DIR}/bin/*/*
${INTEL_SDP_DIR}/compiler/lib/*/*
${INTEL_SDP_DIR}/mpirt/bin/*/*
${INTEL_SDP_DIR}/mpirt/lib/*/*"
QA_PRESTRIPPED="${INTEL_SDP_DIR}/compiler/lib/*/.*libFNP.so"
INTEL_BIN_RPMS="compilerproc compilerproc-devel"
INTEL_DAT_RPMS="compilerproc-common"
src_install() {
intel-sdp_src_install
local i
local idir=/opt/intel/composerxe-2011.$(get_version_component_range 3-4)/compiler/lib
for i in ${idir}/{ia32,intel64}/locale/ja_JP/{diagspt,flexnet,helpxi}.cat; do
if [[ -e "${EPREFIX}${i}" ]]; then
rm -rf "${ED}${i}" || die
fi
done
}
|