diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-12-10 19:50:55 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-12-10 19:50:55 +0000 |
commit | 3309399d1117fcd2873cadfadd75bae158e7e1d8 (patch) | |
tree | ba853c257a45f4aa3f3b54826b5e46f3a33d4197 /dev-lang/icc | |
parent | dev-lang/icc: Drop old version (diff) | |
download | gentoo-2-3309399d1117fcd2873cadfadd75bae158e7e1d8.tar.gz gentoo-2-3309399d1117fcd2873cadfadd75bae158e7e1d8.tar.bz2 gentoo-2-3309399d1117fcd2873cadfadd75bae158e7e1d8.zip |
dev-lang/icc: Drop old version
(Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Diffstat (limited to 'dev-lang/icc')
-rw-r--r-- | dev-lang/icc/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/icc/icc-10.0.026.ebuild | 101 |
2 files changed, 4 insertions, 102 deletions
diff --git a/dev-lang/icc/ChangeLog b/dev-lang/icc/ChangeLog index f5ac784af276..62e2ff9e7d1e 100644 --- a/dev-lang/icc/ChangeLog +++ b/dev-lang/icc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/icc # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/icc/ChangeLog,v 1.89 2012/12/10 19:35:25 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/icc/ChangeLog,v 1.90 2012/12/10 19:50:55 jlec Exp $ + + 10 Dec 2012; Justin Lecher <jlec@gentoo.org> -icc-10.0.026.ebuild: + Drop old version *icc-13.0.1.117 (10 Dec 2012) diff --git a/dev-lang/icc/icc-10.0.026.ebuild b/dev-lang/icc/icc-10.0.026.ebuild deleted file mode 100644 index 74af0672ea49..000000000000 --- a/dev-lang/icc/icc-10.0.026.ebuild +++ /dev/null @@ -1,101 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/icc/icc-10.0.026.ebuild,v 1.16 2009/08/22 20:29:05 williamh Exp $ - -inherit rpm eutils - -PID=786 -PB=cc -PEXEC="icc icpc" -DESCRIPTION="Intel C/C++ optimized compiler for Linux" -HOMEPAGE="http://www.intel.com/software/products/compilers/clin/" - -### -# everything below common to ifc and icc -# no eclass: very likely to change for next versions -### -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 )" - -LICENSE="Intel-SDP" -SLOT="0" - -RESTRICT="test strip mirror" -IUSE="" -DEPEND="" -RDEPEND="~virtual/libstdc++-3.3 - amd64? ( app-emulation/emul-linux-x86-compat )" - -pkg_setup() { - if has_version "<dev-lang/${P}"; then - ewarn "${PN}-9.x detected, probably with slotting." - ewarn "This version has many bugs and was installed with slotting." - ewarn "You might want to do an emerge -C ${PN} first" - epause 10 - fi -} - -src_unpack() { - unpack ${A} - mv "${WORKDIR}"/l_* "${S}" - cd "${S}" - - local ext= - use amd64 && ext=e - INSTALL_DIR=/opt/intel/${PB}${ext}/${PV} - - # debugger installed with dev-lang/idb - rm -f data/intel*idb*.rpm - - 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" \ - -e 's|export -n IA32ROOT;||g' \ - -i ${PEXEC} *sh \ - || die "sed fixing shells and paths 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} - doenvd ${env_file} || die "doenvd ${env_file} failed" -} - -pkg_postinst () { - # remove left over from unpacking - rm -f "${ROOT}"/opt/intel/{intel_sdp_products.db,.*.log} || die "remove logs failed" - - elog "Make sure you have recieved the a license for ${PN}" - elog "To receive a restrictive non-commercial licenses , you need to register at:" - elog "http://www.intel.com/cd/software/products/asmo-na/eng/download/download/219771.htm" - elog "Read the website for more information on this license." - elog "You cannot run ${PN} without a license file." - elog "Then put the license file into ${ROOT}/opt/intel/licenses" - elog "\nTo use ${PN} issue first \n\tsource /etc/profile" - elog "Debugger is installed with dev-lang/idb" -} |