From 6bf0de6ddfc37f3b8f315ec814cfc64435f84db2 Mon Sep 17 00:00:00 2001 From: Maho Nakata Date: Mon, 18 Nov 2002 09:27:32 +0000 Subject: Now ifc outputs FreeBSD's native binary. Bump portrevision. Wonderful work by: Masakazu Higaki Approved by: maho(maintainer) Reviewed by: knu(mentor) --- lang/ifc7/files/patch-ifc | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 lang/ifc7/files/patch-ifc (limited to 'lang/ifc7/files/patch-ifc') diff --git a/lang/ifc7/files/patch-ifc b/lang/ifc7/files/patch-ifc new file mode 100644 index 000000000000..3428a50551d2 --- /dev/null +++ b/lang/ifc7/files/patch-ifc @@ -0,0 +1,42 @@ +--- opt/intel/compiler60/ia32/bin/ifc.orig Sun Sep 22 01:03:04 2002 ++++ opt/intel/compiler60/ia32/bin/ifc Sun Sep 22 01:06:31 2002 +@@ -1,29 +1,31 @@ + #!/bin/sh + +-INTEL_LICENSE_FILE=/licenses; ++PREFIX=/usr/local ++export PREFIX ++INTEL_LICENSE_FILE=${PREFIX}/intel/licenses; + export INTEL_LICENSE_FILE; + + if [ -z LD_LIBRARY_PATH ] + then +- LD_LIBRARY_PATH=/compiler60/ia32/lib; ++ LD_LIBRARY_PATH=${PREFIX}/intel/compiler60/ia32/lib; + else +- LD_LIBRARY_PATH=/compiler60/ia32/lib:$LD_LIBRARY_PATH ++ LD_LIBRARY_PATH=${PREFIX}/intel/compiler60/ia32/lib:$LD_LIBRARY_PATH + fi + export LD_LIBRARY_PATH; + + if [ -z PATH ] + then +- PATH=/compiler60/ia32/bin; ++ PATH=${PREFIX}/intel/compiler60/ia32/bin; + else +- PATH=/compiler60/ia32/bin:$PATH; ++ PATH=${PREFIX}/intel/compiler60/ia32/bin:$PATH; + fi + export PATH; + +-export -n IA32ROOT; unset IA32ROOT; ++unset IA32ROOT; + + if [ $# != 0 ] + then +- exec -a "/compiler60/ia32/bin/ifc" /compiler60/ia32/bin/ifcbin "$@"; ++ exec ${PREFIX}/intel/compiler60/ia32/bin/ifcbin "$@"; + else +- exec -a "/compiler60/ia32/bin/ifc" /compiler60/ia32/bin/ifcbin; ++ exec ${PREFIX}/intel/compiler60/ia32/bin/ifcbin; + fi -- cgit v1.2.3