diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-02-21 15:29:42 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-02-21 15:29:42 +0000 |
commit | 6f90746cb275c0a75a212636e613764af9c9a0e9 (patch) | |
tree | 6995798829a9f9cf71bdccf929eb01416e57683f /dev-libs/intel-common | |
parent | Version bump (diff) | |
download | gentoo-2-6f90746cb275c0a75a212636e613764af9c9a0e9.tar.gz gentoo-2-6f90746cb275c0a75a212636e613764af9c9a0e9.tar.bz2 gentoo-2-6f90746cb275c0a75a212636e613764af9c9a0e9.zip |
dev-libs/intel-common: Version Bump, #500386
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'dev-libs/intel-common')
-rw-r--r-- | dev-libs/intel-common/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/intel-common/intel-common-14.0.1.106.ebuild | 59 |
2 files changed, 66 insertions, 2 deletions
diff --git a/dev-libs/intel-common/ChangeLog b/dev-libs/intel-common/ChangeLog index 5297f3fe7c5a..77fb4a39c279 100644 --- a/dev-libs/intel-common/ChangeLog +++ b/dev-libs/intel-common/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/intel-common -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/intel-common/ChangeLog,v 1.12 2013/10/02 12:58:09 jlec Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/intel-common/ChangeLog,v 1.13 2014/02/21 15:29:42 jlec Exp $ + +*intel-common-14.0.1.106 (21 Feb 2014) + + 21 Feb 2014; Justin Lecher <jlec@gentoo.org> +intel-common-14.0.1.106.ebuild: + Version Bump, #500386 *intel-common-14.0.0.080 (02 Oct 2013) diff --git a/dev-libs/intel-common/intel-common-14.0.1.106.ebuild b/dev-libs/intel-common/intel-common-14.0.1.106.ebuild new file mode 100644 index 000000000000..be1d164d702e --- /dev/null +++ b/dev-libs/intel-common/intel-common-14.0.1.106.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/intel-common/intel-common-14.0.1.106.ebuild,v 1.1 2014/02/21 15:29:42 jlec Exp $ + +EAPI=5 + +INTEL_DPN=parallel_studio_xe +INTEL_DID=3644 +INTEL_DPV=2013_sp1_update1 +INTEL_SUBDIR=composerxe +INTEL_SINGLE_ARCH=false + +inherit intel-sdp + +DESCRIPTION="Common libraries and utilities needed for Intel compilers and libraries" +HOMEPAGE="http://software.intel.com/en-us/articles/intel-compilers/" + +IUSE="+compiler" +KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux" + +CHECKREQS_DISK_BUILD=375M + +pkg_setup() { + einfo ${INTEL_SDP_EDIR} + INTEL_BIN_RPMS="openmp openmp-devel" + INTEL_DAT_RPMS="compilerpro-common" + if use compiler; then + INTEL_BIN_RPMS+=" compilerpro-devel sourcechecker-devel" + INTEL_DAT_RPMS+=" compilerpro-vars sourcechecker-common" + fi + intel-sdp_pkg_setup +} + +src_install() { + intel-sdp_src_install + local path rootpath ldpath arch fenv=35intelsdp + cat > ${fenv} <<-EOF + NLSPATH=${INTEL_SDP_EDIR}/lib/locale/en_US/%N + INTEL_LICENSE_FILE="${INTEL_SDP_EDIR}"/licenses:"${EPREFIX}/opt/intel/license" + EOF + for arch in ${INTEL_ARCH}; do + path=${path}:${INTEL_SDP_EDIR}/bin/${arch}:${INTEL_SDP_EDIR}/mpirt/bin/${arch} + rootpath=${rootpath}:${INTEL_SDP_EDIR}/bin/${arch}:${INTEL_SDP_EDIR}/mpirt/bin/${arch} + ldpath=${ldpath}:${INTEL_SDP_EDIR}/compiler/lib/${arch}:${INTEL_SDP_EDIR}/mpirt/lib/${arch} + done + cat >> ${fenv} <<-EOF + PATH=${path#:} + ROOTPATH=${rootpath#:} + LDPATH=${ldpath#:} + EOF + + doenvd ${fenv} + + cat >> "${T}"/40-${PN} <<- EOF + SEARCH_DIRS_MASK="${INTEL_SDP_EDIR}" + EOF + insinto /etc/revdep-rebuild/ + doins "${T}"/40-${PN} +} |