blob: e7798264826b16be548fd6fac7934471743f3c8f (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit versionator elisp-common rpm multilib
PID=786
PB=cc
PEXEC=icc
DESCRIPTION="Intel C/C++ optimized compiler for Linux"
HOMEPAGE="http://www.intel.com/software/products/compilers/clin/"
# everything below should not change between ifc and icc
PACKAGEID="l_${PB}_c_${PV}"
KEYWORDS="~amd64 ~ia64 ~x86"
SRC_URI="amd64? ( http://registrationcenter-download.intel.com/irc_nas/${PID}/${PACKAGEID}_intel64.tar.gz )
ia64? ( http://registrationcenter-download.intel.com/irc_nas/${PID}/${PACKAGEID}_ia64.tar.gz )
x86? ( http://registrationcenter-download.intel.com/irc_nas/${PID}/${PACKAGEID}_ia32.tar.gz )"
MAJOR=$(get_major_version ${PV})
MINOR=$(get_version_component_range 2 ${PV})
LICENSE="${PN}-${MAJOR}.${MINOR}"
SLOT="${MAJOR}.${MINOR}"
RESTRICT="test strip mirror"
IUSE="emacs"
RDEPEND="amd64? ( app-emulation/emul-linux-x86-compat )"
if use x86; then
MY_P="${PACKAGEID}_ia32"
elif use amd64; then
MY_P="${PACKAGEID}_intel64"
elif use ia64; then
MY_P="${PACKAGEID}_ia64"
fi
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
cd "${S}"
local ext=
use amd64 && ext=e
INSTALL_DIR=/opt/intel/${PB}${ext}/${PV}
# checking existence of idb
if [[ -x "/opt/intel/idb${ext}/${PV}/bin/idb" ]]; then
rm -f data/intel*idb*.rpm
else
INSTALL_IDB_DIR=/opt/intel/idb${ext}/${PV}
fi
for x in data/intel*.rpm; do
einfo "Extracting $(basename ${x})..."
rpm_unpack "${S}/${x}" || die "rpm_unpack ${x} failed"
done
einfo "Fixing paths and tagging"
cd "${S}/${INSTALL_DIR}"/bin
sed -e "s|<INSTALLDIR>|${INSTALL_DIR}|g" \
-i ${PEXEC} ${PEXEC}*sh \
|| die "sed fixing path failed"
cd "${S}/${INSTALL_DIR}"/doc
sed -e "s|\<installpackageid\>|${PACKAGEID}|g" \
-e "s|\<INSTALLTIMECOMBOPACKAGEID\>|${PACKAGEID}|g" \
-i *support \
|| die "sed support file failed"
chmod 644 *support
}
src_install() {
einfo "Copying files"
dodir ${INSTALL_DIR}
cp -pPR "${S}/${INSTALL_DIR}"/* "${D}/${INSTALL_DIR}/" || die "copying ${PN} failed"
local env_file=05${PN}
echo "PATH=${INSTALL_DIR}/bin" > ${env_file}
echo "ROOTPATH=${INSTALL_DIR}/bin" >> ${env_file}
echo "LDPATH=${INSTALL_DIR}/lib" >> ${env_file}
echo "MANPATH=${INSTALL_DIR}/man" >> ${env_file}
echo "INCLUDE=${INSTALL_DIR}/include" >> ${env_file}
doenvd ${env_file} || die "doenvd ${env_file} failed"
if [[ -n "${INSTALL_IDB_DIR}" ]]; then
dodir ${INSTALL_IDB_DIR}
cp -pPR "${S}/${INSTALL_IDB_DIR}"/* "${D}/${INSTALL_IDB_DIR}/" || die "copying debugger failed"
local idb_env_file=06idb
echo "PATH=${INSTALL_IDB_DIR}/bin" > ${idb_env_file}
echo "ROOTPATH=${INSTALL_IDB_DIR}/bin" >> ${idb_env_file}
echo "MANPATH=${INSTALL_IDB_DIR}/man" >> ${idb_env_file}
doenvd ${idb_env_file} || die "doenvd ${idb_env_file} failed"
use emacs && \
elisp-site-file-install "${S}${INSTALL_IDB_DIR}/bin/*.el"
fi
}
pkg_postinst () {
einfo "Make sure you have recieved the restrictive"
einfo "non-commercial license ${PN} by registering at:"
einfo ""
einfo "You cannot run ${PN} without this license file."
einfo "Read the website for more information on this license."
einfo
einfo "Documentation can be found in ${INSTALL_DIR}/doc"
ewarn "Please perform \n\t env-update && source /etc/profile"
ewarn "prior to using ${PN}."
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|