diff options
Diffstat (limited to 'dev-lang/ifc/ifc-6.0.ebuild')
-rw-r--r-- | dev-lang/ifc/ifc-6.0.ebuild | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/dev-lang/ifc/ifc-6.0.ebuild b/dev-lang/ifc/ifc-6.0.ebuild deleted file mode 100644 index 49d0014e3d0e..000000000000 --- a/dev-lang/ifc/ifc-6.0.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ifc/ifc-6.0.ebuild,v 1.16 2005/10/01 16:19:57 ribosome Exp $ - -S=${WORKDIR} -DESCRIPTION="Intel Fortran Compiler - The Pentium optimized compiler for Linux" - -SRC_URI1="http://developer.intel.com/software/products/compilers/downloads/l_fc_p_6.0.140.tar" -SRC_URI2="ftp://download.intel.com/software/products/compilers/downloads/l_fc_p_6.0.140.tar" -SRC_URI3="ftp://download.intel.co.jp/software/products/compilers/downloads/l_fc_p_6.0.140.tar" -SRC_URI="${SRC_URI1} ${SRC_URI2} ${SRC_URI3}" - -HOMEPAGE="http://www.intel.com/software/products/compilers/flin/" - -# The ifc-6 license is the same copy with minimal name changes. -LICENSE="icc-6.0" -SLOT="0" -KEYWORDS="-* x86" -IUSE="" - - -DEPEND=">=virtual/linux-sources-2.4 - >=sys-libs/glibc-2.2.2 - app-arch/cpio - app-arch/rpm" - -RDEPEND=">=virtual/linux-sources-2.4 - >=sys-libs/glibc-2.2.2" - -src_compile() { - # Keep disk space to a minimum - rm -f intel-*.ia64.rpm - - mkdir opt - - for x in intel-*.i386.rpm - do - einfo "Extracting: ${x}" - rpm2cpio ${x} | cpio --extract --make-directories --unconditional - done - - # From UNTAG_CFG_FILES in 'install' - SD=${S}/opt/intel # Build DESTINATION - RD=/opt/intel # Real DESTINATION - for FILE in $(find $SD/compiler60/ia??/bin/ -regex '.*[ei][cf]p?c$\|.*cfg$\|.*pcl$\|.*vars[^/]*.c?sh$' 2>/dev/null) - do - sed s@\<INSTALLDIR\>@$RD@g ${FILE} > ${FILE}.abs - mv -f ${FILE}.abs ${FILE} - chmod 755 ${FILE} - done - - # From UNTAG_SUPPORT in 'install' - eval `grep "^[ ]*COMBOPACKAGEID=" install` - - SUPPORTFILE=${SD}/compiler60/docs/fsupport - sed s@\<INSTALLTIMECOMBOPACKAGEID\>@$COMBOPACKAGEID@g $SUPPORTFILE > $SUPPORTFILE.abs - mv $SUPPORTFILE.abs $SUPPORTFILE - chmod 644 $SUPPORTFILE - - SUPPORTFILE=${SD}/compiler60/docs/ldbsupport - sed s@\<INSTALLTIMECOMBOPACKAGEID\>@$COMBOPACKAGEID@g $SUPPORTFILE > $SUPPORTFILE.abs - mv $SUPPORTFILE.abs $SUPPORTFILE - chmod 644 $SUPPORTFILE -} - -src_install () { - dodoc lgpltext - dodoc flicense - cp -pPR opt ${D} - - # ifc enviroment - insinto /etc/env.d - doins ${FILESDIR}/${PVR}/05icc-ifc -} - -pkg_postinst () { - einfo - einfo "http://www.intel.com/software/products/compilers/f60l/f60l_noncom_lic.htm" - einfo "From the above url you can get a free, non-time limited, non-commercial" - einfo "personal use license key that comes with no support. You will need to read" - einfo "and agree to the license and then fill in your info to have one emailed to" - einfo "you. Read the website for the details." - einfo - einfo "Documentation can be found in /opt/intel/compiler60/docs/ ." - einfo - einfo "You will need to place your license in /opt/intel/licenses/ ." - einfo -} |