diff options
Diffstat (limited to 'dev-lang/icc/icc-13.0.1.117.ebuild')
-rw-r--r-- | dev-lang/icc/icc-13.0.1.117.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-lang/icc/icc-13.0.1.117.ebuild b/dev-lang/icc/icc-13.0.1.117.ebuild new file mode 100644 index 000000000000..cb4a629a31f3 --- /dev/null +++ b/dev-lang/icc/icc-13.0.1.117.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +INTEL_DPN=parallel_studio_xe +INTEL_DID=2872 +INTEL_DPV=2013_update1 +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,multilib=]" + +INTEL_BIN_RPMS="compilerproc compilerproc-devel" +INTEL_DAT_RPMS="compilerproc-common" + +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 +} |