Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/intel-common: ChangeLog intel-common-15.0.1.133.ebuild
Date: Sun, 30 Nov 2014 17:42:38
Message-Id: 20141130174234.3643CB3C2@oystercatcher.gentoo.org
1 jlec 14/11/30 17:42:34
2
3 Modified: ChangeLog
4 Added: intel-common-15.0.1.133.ebuild
5 Log:
6 dev-libs/intel-common: Version Bump
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.18 dev-libs/intel-common/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/intel-common/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/intel-common/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/intel-common/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/intel-common/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 15 Sep 2014 12:34:28 -0000 1.17
24 +++ ChangeLog 30 Nov 2014 17:42:34 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/intel-common
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/intel-common/ChangeLog,v 1.17 2014/09/15 12:34:28 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/intel-common/ChangeLog,v 1.18 2014/11/30 17:42:34 jlec Exp $
30 +
31 +*intel-common-15.0.1.133 (30 Nov 2014)
32 +
33 + 30 Nov 2014; Justin Lecher <jlec@g.o> +intel-common-15.0.1.133.ebuild:
34 + Version Bump
35
36 *intel-common-15.0.0.090-r1 (15 Sep 2014)
37
38
39
40
41 1.1 dev-libs/intel-common/intel-common-15.0.1.133.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/intel-common/intel-common-15.0.1.133.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/intel-common/intel-common-15.0.1.133.ebuild?rev=1.1&content-type=text/plain
45
46 Index: intel-common-15.0.1.133.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/intel-common/intel-common-15.0.1.133.ebuild,v 1.1 2014/11/30 17:42:34 jlec Exp $
51
52 EAPI=5
53
54 INTEL_DPN=parallel_studio_xe
55 INTEL_DID=4992
56 INTEL_DPV=2015_update1
57 INTEL_SUBDIR=composerxe
58 INTEL_SINGLE_ARCH=false
59
60 inherit intel-sdp
61
62 DESCRIPTION="Common libraries and utilities needed for Intel compilers and libraries"
63 HOMEPAGE="http://software.intel.com/en-us/articles/intel-compilers/"
64
65 IUSE="+compiler"
66 KEYWORDS="-* ~amd64 ~x86 ~amd64-linux ~x86-linux"
67
68 CHECKREQS_DISK_BUILD=375M
69
70 pkg_setup() {
71 einfo ${INTEL_SDP_EDIR}
72 INTEL_BIN_RPMS="openmp openmp-devel"
73 INTEL_DAT_RPMS="compilerpro-common compilerpro-common-pset"
74 if use compiler; then
75 INTEL_BIN_RPMS+=" compilerpro-devel sourcechecker-devel"
76 INTEL_DAT_RPMS+=" compilerpro-vars sourcechecker-common ccompxe compxe fcompxe"
77 fi
78 intel-sdp_pkg_setup
79 }
80
81 src_install() {
82 intel-sdp_src_install
83 local path rootpath ldpath arch fenv=35intelsdp
84 cat > ${fenv} <<-EOF
85 NLSPATH=${INTEL_SDP_EDIR}/lib/locale/en_US/%N
86 INTEL_LICENSE_FILE="${INTEL_SDP_EDIR}"/licenses:"${EPREFIX}/opt/intel/license"
87 EOF
88 for arch in ${INTEL_ARCH}; do
89 path=${path}:${INTEL_SDP_EDIR}/bin/${arch}:${INTEL_SDP_EDIR}/mpirt/bin/${arch}
90 rootpath=${rootpath}:${INTEL_SDP_EDIR}/bin/${arch}:${INTEL_SDP_EDIR}/mpirt/bin/${arch}
91 ldpath=${ldpath}:${INTEL_SDP_EDIR}/compiler/lib/${arch}:${INTEL_SDP_EDIR}/mpirt/lib/${arch}
92 done
93 cat >> ${fenv} <<-EOF
94 PATH=${path#:}
95 ROOTPATH=${rootpath#:}
96 LDPATH=${ldpath#:}
97 EOF
98
99 doenvd ${fenv}
100
101 cat >> "${T}"/40-${PN} <<- EOF
102 SEARCH_DIRS_MASK="${INTEL_SDP_EDIR}"
103 EOF
104 insinto /etc/revdep-rebuild/
105 doins "${T}"/40-${PN}
106 }