39 lines
966 B
Bash
39 lines
966 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-lang/icc/icc-13.1.3.163.ebuild,v 1.1 2013/05/02 14:17:35 jlec Exp $
|
|
|
|
EAPI=5
|
|
|
|
INTEL_DPN=parallel_studio_xe
|
|
INTEL_DID=3078
|
|
INTEL_DPV=2013_update3
|
|
INTEL_SUBDIR=composerxe
|
|
|
|
inherit intel-sdp
|
|
|
|
DESCRIPTION="Intel C/C++ Compiler"
|
|
HOMEPAGE="http://software.intel.com/en-us/articles/intel-composer-xe/"
|
|
|
|
IUSE="eclipse"
|
|
KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
|
|
|
|
DEPEND="
|
|
eclipse? ( dev-util/eclipse-sdk )"
|
|
RDEPEND="${DEPEND}
|
|
~dev-libs/intel-common-${PV}[compiler]"
|
|
|
|
INTEL_BIN_RPMS="compilerproc compilerproc-devel"
|
|
INTEL_DAT_RPMS="compilerproc-common"
|
|
|
|
CHECKREQS_DISK_BUILD=325M
|
|
|
|
src_install() {
|
|
intel-sdp_src_install
|
|
local i
|
|
local idir=${INTEL_SDP_EDIR}/compiler/lib
|
|
for i in ${idir}/{ia32,intel64}/locale/ja_JP/{diagspt,flexnet,helpxi}.cat; do
|
|
if [[ -e "${i}" ]]; then
|
|
rm -rvf "${D}${i}" || die
|
|
fi
|
|
done
|
|
}
|