2002-07-18 13:05:10 +00:00
# New ports collection makefile for: ifc
# Date created: Oct 30, 2001
# Whom: chat95@mbox.kyoto-inet.or.jp
2002-07-08 03:14:41 +00:00
#
# $FreeBSD$
#
2004-02-01 06:29:19 +00:00
PORTNAME = ifc7
2004-04-09 15:06:54 +00:00
PORTVERSION = 7.1.040
Say hello to the linux mega patch, it consolidates our linux bits a
little bit and allows to proceed to a more recent linux_base from
a stable (read as: the major bugs should be ironed out or identified
and most linux ports build just fine) source.
It also allows to ship 4.11 with a working linuxolator (the EOLed
linux_base is marked forbidden because of a security hole).
This is a major update, please read UPDATING (and CHANGES if you
develop linux ports).
Changes:
- change the default linux_base from v7 to v8
- add a newer freetype to linux_base-8 for nicer fonts display [1]
- don't let cpio use hardlinks in the linux_base-8 port to quiet some
warnings in some cases [2]
- fix a cut&past error in the linux_base-8 pkg-install script [3]
- convert the binary knob "USE_LINUX" to a version specifier, e.g.
USE_LINUX=<value> specifies a dependency upon
emulators/linux_base-<value>, exceptions are a value of "7" (which
does what you want and adds a dependency to linux_base) and any
value without a corresponding port in
PORTSDIR/emulators/linux_base-<value> (which adds a dependency to
the default linux_base)
- don't implicitly add USE_LINUX with the USE_LINUX_PREFIX knob,
this allows us to use the USE_LINUX_PREFIX knob for linux_base and
paves the way for splitting up future linux base ports into
individual pieces
- remove RESTRICTED from some GPL licensed ports, even when we only
distribute binaries, we get them from official linux sites, so
anyone can grab them there if he needs to
- add a dependency upon the linux X11 bits where necessary (based upon
guesswork)
- don't use USE_X_PREFIX in some linux ports since it adds a dependency
to the FreeBSD X11 libs, as a workaround use PREFIX?= (the clean
solution would be to remove the implicit USE_XLIB from USE_X_PREFIX)
- bump the portrevision of the linux ports ("better safe than sorry"
algorithm)
- pass maintainership of the important linux infrastructure to a
mailinglist, hijack freebsd-emulation@ for this purpose (if somebody
doesn't like this: tell us your bikeshed color at freebsd-emulation@,
my color would be "linuxolator@" in case someone cares...)
- add a pkg-install script for linux-fontconfig, but don't use it;
everything should work without it (the FreeBSD fc-cache program should
do all the work), but in case we need it we just need to decomment the
pkg-install part in the Makefile
- fix some dependencies
- fix some bugs
- add some static plists
- unbreak the ports with dependecies to more than one linux_base
This also fixes some ports which are marked BROKEN because of dependencies
to v7 and v8 of linux_base at the same time.
Known bugs:
- the linux-mesa and linux-devtools ports install libGL*.so symlinks
- some "minor" plist bugs (e.g. ld.so.{conf,cache} are modified by
the linux X11 port, so linx_Base-8 moans at deinstall time)
Future work (interested souls should coordinate with freebsd-emulation@):
- add some kind of USE_LINUX_X11 knob to streamline the X11 dependencies,
or modify the behavior of USE_XLIB in the USE_LINUX case
AFAIK trevor has some patches.
- make USE_XLIB and USE_X_PREFIX orthogonal to be able to get rid of
the PREFIX?= workaround in some linux ports
Should be discussed/coordinated on/with x11@.
- move the RPM bits from x11-toolkits/linux-gtk/Makefile to PORTSDIR/Mk/
- update to a more recent linux base
PR: 69997, 70539 (and maybe others)
Discussed with/on: java@, x11@, trevor, portmgr
Tested by: mezz, portmgr, pointyhat
RPM hunted down by: Joseph Gelinas <scirocco@tasam.com> [1]
Requested by: portmgr [2]
Submitted by: kris [3]
Approved by: portmgr
2004-12-31 18:24:10 +00:00
PORTREVISION = 1
2002-11-18 09:27:32 +00:00
CATEGORIES = lang linux devel
MASTER_SITES =
2003-07-12 04:17:57 +00:00
DISTNAME = l_fc_pc_${ PORTVERSION }
2002-07-08 03:14:41 +00:00
EXTRACT_SUFX = .tar
2002-11-18 09:27:32 +00:00
MAINTAINER = maho@FreeBSD.org
2003-03-07 06:14:21 +00:00
COMMENT = Intel' s Fortran compiler, set up to produce native FreeBSD objects
2002-07-08 03:14:41 +00:00
2004-01-19 13:44:47 +00:00
EXTRACT_DEPENDS = rpm2cpio.pl:${ PORTSDIR } /archivers/rpm2cpio
2002-07-08 03:14:41 +00:00
2002-07-18 13:05:10 +00:00
RESTRICTED = Intel forbids any redistribution
2002-07-08 03:14:41 +00:00
2002-11-18 09:27:32 +00:00
ONLY_FOR_ARCHS = i386
2002-07-08 03:14:41 +00:00
Mega-patch to cleanup the ports infrastructure regarding our linux bits:
- USE_LINUX now implies NO_FILTER_SHLIBS=yes. It also doesn't use FreeBSD
tools to strip binaries anymore, so it's not neccesary anymore to override
STRIP and STRIP_CMD.
- USE_LINUX_PREFIX implies NO_MTREE now.
- In the USE_LINUX case, USE_XLIB now depends upon the linux X11 libraries
instead upon the native FreeBSD libraries.
- The variable LINUX_BASE_PORT contains a string which is suitable as an
item in *_DEPENDS, so if a port BATCH_DEPENDS or FETCH_DEPENDS upon the
default (or overriden) linux base, ${LINUX_BASE_PORT} should be used
instead of a hardcoded reference.
- Change all ports to comply to the "new world order".
- The Ports Collection now allows to override the default linux_base port.
Specify e.g. OVERRIDE_LINUX_BASE_PORT=rh-9 in /etc/make.conf to use
${PORTSDIR}/emulators/linux_base-rh-9 (the logic is to use
${PORTSDIR}/emulators/linux_base-${OVERRIDE_LINUX_BASE_PORT}).
- If USE_LINUX or OVERRIDE_LINUX_BASE doesn't point to an existing linux_base
port and if USE_LINUX isn't set to "yes" (case insensitive), the port will
be marked as IGNORE. [1]
- Readd USE_LINUX knobs into several ports and make several uses of a
conditional dependency ("USE_LINUX?=") into an unconditional one
("USE_LINUX=") which where removed/changed by Trevor to allow the use of
alternative linux_base ports. While this is a nice goal, the implementation
resulted in missing dependencies. The OVERRIDE_LINUX_BASE_PORT knob
in this commit is supposed to fix the problem while keeping the feature.
Basicaly this includes a backout of Trevor's commit, to prevent confusion
I mention it here explicitely.
- Use the correct prefix (X11- instead of LOCAL- or LINUX-) for some ports.
Chase dependencies for this.
- Changes to make linux_devtools installable on amd64, remove some stray
device nodes (they don't work on recent OS versions and aren't really
needed).
- Make linux_base-8 PREFIX clean and remove some stray device nodes.
Additionally tell a little bit more about how to setup NIS/YP [2].
- Update the PGSQL dependency in the linux-opengroupware port to a recent
version (the old one isn't available anymore), I don't know if this
works (at least it isn't more broken than before).
- Use PREFIX/usr/share/doc instead of PREFIX/usr/doc in the divx4linux
ports, the former path exists already and gets populated by other
packages too (PREFIX=LINUXPREFIX!).
- Fix some obvious (non-linuxolator) bugs in some linux ports while being
there.
- Bump PORTREVISION where neccesary.
Requested by: portmgr (linimon) [1]
Submittted by: Gerrit Kuehn <gerrit_huehn@gruft.fido.de [2]
Approved by: portmgr (kris, linimon), maintainers (or maintainer timeout)
Tested on: ports cluster (kris)
Reviewed by: silence on emulation@
Superseedes PR: 69997
Maintainer approval from:
chris@chrisburkert.de
cracauer@cons.org
des
girgen
jamie@bishopston.net
mezz
mi
nivit@users.sf.net
pat
simond@irrelevant.org
riggs@rrr.de
Udo.Schweigert@Siemens.com
2005-06-17 22:59:29 +00:00
USE_LINUX = yes
2002-07-08 03:14:41 +00:00
NO_WRKSUBDIR = yes
2003-04-28 22:17:47 +00:00
COMPILERDIR = compiler70
PLIST_SUB = COMPILERDIR = ${ COMPILERDIR }
PATCH_WRKSRC = ${ WRKSRC } /opt/intel/${ COMPILERDIR }
MAN1 = ifc.1
2007-08-04 11:41:30 +00:00
MANPREFIX = ${ PREFIX } /intel/${ COMPILERDIR } /
2002-09-22 12:03:30 +00:00
2002-07-18 13:05:10 +00:00
IFC_SITE = http://www.intel.com/software/products/compilers/
2002-07-08 03:14:41 +00:00
. i n c l u d e < b s d . p o r t . p r e . m k >
2004-01-19 13:44:47 +00:00
EXTRACT_AFTER_ARGS = | tar -xf - \
2004-04-09 15:06:54 +00:00
--exclude intel-iidb\* .rpm \
2004-01-19 13:44:47 +00:00
--exclude \* ia64.rpm \
--exclude flexlm64
2003-04-28 22:17:47 +00:00
IFCCFGVAL != ${ UNAME } -r | ${ SED } -e 's/\..*//'
2004-04-09 15:06:54 +00:00
. f o r f i l e i n $ { D I S T N A M E }
. i f ! e x i s t s ( $ { D I S T D I R } / $ { D I S T _ S U B D I R } / $ { f i l e } $ { E X T R A C T _ S U F X } )
IGNORE = " Go to Intel Premier Support, https://premier.intel.com, to obtain ${ DISTFILES } . Product updates such as this compiler are posted regularly on Premier Support. You must have a license to obtain access to Premier Support. If you do not already have a license go to ${ IFC_SITE } to review licensing options \(evaluation, commercial, and free non-commercial\) and obtain a license. Put ${ DISTFILES } into ${ DISTDIR } and run make again "
2002-07-08 03:14:41 +00:00
. e n d i f
2004-04-09 15:06:54 +00:00
. e n d f o r
2002-07-08 03:14:41 +00:00
2003-04-28 22:17:47 +00:00
. i f e x i s t s ( $ { L I N U X B A S E } / b o o t / k e r n e l . h ) #|| \
# exists(${PREFIX}/intel/compiler60/bin/icc) || \
# exists(${PREFIX}/intel/compiler70/bin/icc)
BROKEN = Cannot coexist with linux_devtools or icc
2002-11-08 20:28:25 +00:00
. e n d i f
2002-07-08 03:14:41 +00:00
post-extract :
2003-04-28 22:17:47 +00:00
@${ SED } 's:%%COMPILERDIR%%:${COMPILERDIR}:' ${ FILESDIR } /cpio-exclude \
>${ WRKDIR } /cpio-exclude
2002-11-18 09:27:32 +00:00
. i f d e f i n e d ( N O P O R T D O C S )
2003-04-28 22:17:47 +00:00
@${ SED } 's:%%COMPILERDIR%%:${COMPILERDIR}:' \
${ FILESDIR } /cpio-exclude_noportdocs >>${ WRKDIR } /cpio-exclude
2002-11-18 09:27:32 +00:00
. e n d i f
2004-04-09 15:06:54 +00:00
@cd ${ WRKSRC } && rpm2cpio.pl 2>/dev/null *.rpm | \
2003-04-28 22:17:47 +00:00
${ CPIO } -idfuE ${ WRKDIR } /cpio-exclude --quiet
2002-07-08 03:14:41 +00:00
pre-patch :
2002-07-18 13:05:10 +00:00
# Allow everyone to use it
2002-07-08 03:14:41 +00:00
@${ CHMOD } a+rx ${ WRKSRC } /opt
2002-11-18 09:27:32 +00:00
# Remove unneeded/unsafe access rights
2002-07-08 03:14:41 +00:00
. f o r i i n d o c s i a 3 2 / i n c l u d e i a 3 2 / l i b
2003-04-28 22:17:47 +00:00
@${ FIND } ${ WRKSRC } /opt/intel/${ COMPILERDIR } /${ i } -type f -print0 | \
2003-11-13 13:30:42 +00:00
${ XARGS } -0 ${ CHMOD } a-x,g-w
2002-07-08 03:14:41 +00:00
. e n d f o r
2003-11-13 13:30:42 +00:00
@${ FIND } ${ WRKSRC } /opt -type d -print0 | ${ XARGS } -0 ${ CHMOD } go-w
2002-07-18 13:05:10 +00:00
# Use the Linux ABI for the binaries
2003-04-28 22:17:47 +00:00
. f o r i i n i f c b i n f p p i c i d f 9 0 c o m p r o f m e r g e p r o f o r d e r x i a r x i l d
2004-04-09 15:06:54 +00:00
@${ BRANDELF } -t Linux ${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/bin/${ i }
2002-07-08 03:14:41 +00:00
. e n d f o r
post-patch :
2002-07-18 13:05:10 +00:00
# Correct some paths and patch some files
2003-04-28 22:17:47 +00:00
. f o r i i n i a 3 2 / b i n / i f c i a 3 2 / b i n / i f c v a r s . c s h i a 3 2 / b i n / i f c v a r s . s h
2004-01-19 13:44:47 +00:00
@${ REINPLACE_CMD } -i "" -e ' s:%%ICC_LOCALBASE%%:${ LOCALBASE } :g; \
s@\< INSTALLDIR\> @${ PREFIX } /intel@g; s@man -w@manpath -q@g' \
2003-04-28 22:17:47 +00:00
${ WRKSRC } /opt/intel/${ COMPILERDIR } /${ i }
@${ CHMOD } 755 ${ WRKSRC } /opt/intel/${ COMPILERDIR } /${ i }
. e n d f o r
@${ REINPLACE_CMD } -i "" -e 's:\<INSTALLTIMECOMBOPACKAGEID\>:${DISTNAME}:g' \
${ WRKSRC } /opt/intel/${ COMPILERDIR } /docs/fsupport
. f o r i i n i f c . o r i g
@${ RM } ${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/bin/${ i }
2002-07-08 03:14:41 +00:00
. e n d f o r
2002-11-18 09:27:32 +00:00
# Provide a more FreeBSD'ish compile environment
. f o r i i n i f c . c f g
2003-04-28 22:17:47 +00:00
@${ REINPLACE_CMD } -i "" -e 's:-Xlinker -rpath -Xlinker <INSTALLDIR>/${COMPILERDIR}/ia32/lib::g' \
-e 's@\<INSTALLDIR\>@${PREFIX}/intel@g;' \
${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/bin/${ i }
2004-04-09 15:06:54 +00:00
@${ ECHO_CMD } -e " -Qlocation,ld, ${ PREFIX } /intel/ ${ COMPILERDIR } /ia32/bin/ldwrapper\n\n-Ulinux\n-U__linux__\n-U__linux\n-U__gnu_linux__\n\n-D__FreeBSD__= ${ IFCCFGVAL } \n-D__ELF__=1\n " >>${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/bin/${ i }
2004-01-19 13:44:47 +00:00
. i f $ { O S V E R S I O N } < 5 0 0 0 1 6
2004-04-09 15:06:54 +00:00
@${ ECHO_CMD } -e "-Qoption,ld,-MT\n" >>${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/bin/${ i }
2004-01-19 13:44:47 +00:00
. e n d i f
2003-04-28 22:17:47 +00:00
@${ CHMOD } a-x,g-w ${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/bin/${ i }
2002-11-18 09:27:32 +00:00
. e n d f o r
2003-04-28 22:17:47 +00:00
@cd ${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/bin/ && ${ LN } -s ifc.cfg ifcbin.cfg
2002-11-18 09:27:32 +00:00
2007-10-03 23:22:04 +00:00
. i f ( $ { O S V E R S I O N } > = 5 0 0 0 4 2 )
2004-05-06 19:49:54 +00:00
OBJCOPY_OPS = --redefine-sym stdin = __stdinp \
2003-10-24 23:17:46 +00:00
--redefine-sym stdout = __stdoutp \
--redefine-sym stderr = __stderrp
. e n d i f
2002-11-18 09:27:32 +00:00
do-build :
# Fix unresolved references
@cd ${ WRKSRC } && ${ CC } ${ CFLAGS } -c ${ FILESDIR } /assert_fail.c \
2004-01-19 13:44:47 +00:00
${ FILESDIR } /linux_file.c ${ FILESDIR } /linux_stat.c \
2003-04-28 22:17:47 +00:00
${ FILESDIR } /mmap.c ${ FILESDIR } /pthread.c \
2004-01-19 13:44:47 +00:00
${ FILESDIR } /sysconf.c \
2002-11-18 09:27:32 +00:00
${ FILESDIR } /errno_location.c ${ FILESDIR } /mcount.S
2004-01-19 13:44:47 +00:00
. i f ( $ { O S V E R S I O N } < 5 0 2 1 0 1 )
2004-04-09 15:06:54 +00:00
@cd ${ WRKSRC } && ${ CC } ${ CFLAGS } -c ${ FILESDIR } /cxa_atexit.c
2004-01-19 13:44:47 +00:00
. e n d i f
2007-10-03 23:22:04 +00:00
. i f ( $ { O S V E R S I O N } < 5 0 0 0 4 2 )
2003-04-28 22:17:47 +00:00
@${ CC } ${ CFLAGS } -c -o ${ WRKSRC } /stdin.o ${ FILESDIR } /stdin.c
@${ CC } ${ CFLAGS } -c -o ${ WRKSRC } /stdout.o ${ FILESDIR } /stdout.c
2002-11-18 09:27:32 +00:00
@${ CC } ${ CFLAGS } -c -o ${ WRKSRC } /stderr.o ${ FILESDIR } /stderr.c
2003-10-24 23:17:46 +00:00
. e n d i f
2002-11-18 09:27:32 +00:00
. f o r i i n l i b c x a . a l i b i m f . a l i b i r c . a l i b i r c m t . a l i b u n w i n d . a \
libBINDF90.a libCEPCF90.a libF90.a libIEPCF90.a libPEPCF90.a \
libcprts.a libintrins.a libompstub.a
2003-10-08 00:04:36 +00:00
@${ OBJCOPY } --redefine-sym __sigsetjmp = sigsetjmp \
2003-10-24 23:17:46 +00:00
${ OBJCOPY_OPS } \
2003-04-28 22:17:47 +00:00
${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/lib/${ i }
2002-11-18 09:27:32 +00:00
. e n d f o r
2004-01-19 13:44:47 +00:00
@cd ${ WRKSRC } && ${ AR } x /usr/lib/libcompat.a ftime.o
2003-04-28 22:17:47 +00:00
@${ AR } q ${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/lib/libcxa.a ${ WRKSRC } /*.o
2002-11-18 09:27:32 +00:00
. f o r i i n B I N D F 9 0 P E P C F 9 0 C E P C F 9 0 P O S F 9 0 I E P C F 9 0
2003-04-28 22:17:47 +00:00
@${ OBJCOPY } --strip-symbol= stat \
--strip-symbol= fstat \
--strip-symbol= lstat \
2004-01-19 13:44:47 +00:00
--redefine-sym lseek = l_lseek \
2003-04-28 22:17:47 +00:00
--redefine-sym lseek64 = lseek \
--redefine-sym open64 = open \
--redefine-sym creat64 = creat \
--redefine-sym ftruncate64 = ftruncate \
--redefine-sym mmap = Mmap \
${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/lib/lib${ i } .a
2002-11-18 09:27:32 +00:00
. e n d f o r
# Some magic to be able to link
2003-04-28 22:17:47 +00:00
@${ MKDIR } ${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/bin/ldwrapper
@${ CC } ${ CFLAGS } -o \
${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/bin/ldwrapper/ld \
${ FILESDIR } /ld.c
Mega-patch to cleanup the ports infrastructure regarding our linux bits:
- USE_LINUX now implies NO_FILTER_SHLIBS=yes. It also doesn't use FreeBSD
tools to strip binaries anymore, so it's not neccesary anymore to override
STRIP and STRIP_CMD.
- USE_LINUX_PREFIX implies NO_MTREE now.
- In the USE_LINUX case, USE_XLIB now depends upon the linux X11 libraries
instead upon the native FreeBSD libraries.
- The variable LINUX_BASE_PORT contains a string which is suitable as an
item in *_DEPENDS, so if a port BATCH_DEPENDS or FETCH_DEPENDS upon the
default (or overriden) linux base, ${LINUX_BASE_PORT} should be used
instead of a hardcoded reference.
- Change all ports to comply to the "new world order".
- The Ports Collection now allows to override the default linux_base port.
Specify e.g. OVERRIDE_LINUX_BASE_PORT=rh-9 in /etc/make.conf to use
${PORTSDIR}/emulators/linux_base-rh-9 (the logic is to use
${PORTSDIR}/emulators/linux_base-${OVERRIDE_LINUX_BASE_PORT}).
- If USE_LINUX or OVERRIDE_LINUX_BASE doesn't point to an existing linux_base
port and if USE_LINUX isn't set to "yes" (case insensitive), the port will
be marked as IGNORE. [1]
- Readd USE_LINUX knobs into several ports and make several uses of a
conditional dependency ("USE_LINUX?=") into an unconditional one
("USE_LINUX=") which where removed/changed by Trevor to allow the use of
alternative linux_base ports. While this is a nice goal, the implementation
resulted in missing dependencies. The OVERRIDE_LINUX_BASE_PORT knob
in this commit is supposed to fix the problem while keeping the feature.
Basicaly this includes a backout of Trevor's commit, to prevent confusion
I mention it here explicitely.
- Use the correct prefix (X11- instead of LOCAL- or LINUX-) for some ports.
Chase dependencies for this.
- Changes to make linux_devtools installable on amd64, remove some stray
device nodes (they don't work on recent OS versions and aren't really
needed).
- Make linux_base-8 PREFIX clean and remove some stray device nodes.
Additionally tell a little bit more about how to setup NIS/YP [2].
- Update the PGSQL dependency in the linux-opengroupware port to a recent
version (the old one isn't available anymore), I don't know if this
works (at least it isn't more broken than before).
- Use PREFIX/usr/share/doc instead of PREFIX/usr/doc in the divx4linux
ports, the former path exists already and gets populated by other
packages too (PREFIX=LINUXPREFIX!).
- Fix some obvious (non-linuxolator) bugs in some linux ports while being
there.
- Bump PORTREVISION where neccesary.
Requested by: portmgr (linimon) [1]
Submittted by: Gerrit Kuehn <gerrit_huehn@gruft.fido.de [2]
Approved by: portmgr (kris, linimon), maintainers (or maintainer timeout)
Tested on: ports cluster (kris)
Reviewed by: silence on emulation@
Superseedes PR: 69997
Maintainer approval from:
chris@chrisburkert.de
cracauer@cons.org
des
girgen
jamie@bishopston.net
mezz
mi
nivit@users.sf.net
pat
simond@irrelevant.org
riggs@rrr.de
Udo.Schweigert@Siemens.com
2005-06-17 22:59:29 +00:00
# We can't use STRIP_CMD, since we need the FreeBSD one, not the Linux one.
@/usr/bin/strip ${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/bin/ldwrapper/ld
2003-04-28 22:17:47 +00:00
@${ CHMOD } 755 ${ WRKSRC } /opt/intel/${ COMPILERDIR } /ia32/bin/ldwrapper/ld
2002-07-08 03:14:41 +00:00
do-install :
2003-04-28 22:17:47 +00:00
@cd ${ WRKSRC } /opt && ${ FIND } . -print | \
${ CPIO } -pdu -R ${ BINOWN } :${ BINGRP } --quiet ${ PREFIX }
2002-07-08 03:14:41 +00:00
post-install :
2004-04-09 15:06:54 +00:00
@${ ECHO } " ${ PKGNAME } is now installed in ${ PREFIX } /intel, to use it you have to "
@${ ECHO } " put your license into your \$ ${ INTEL_FLEXLM_LICENSE } (default: "
@${ ECHO } " ${ PREFIX } /intel/licenses) directory and add "
@${ ECHO } " ${ PREFIX } /intel/ ${ COMPILERDIR } /ia32/bin to your PATH. "
@${ ECHO }
@${ ECHO } "If you use ifc on a Pentium 4 make sure you have 'options CPU_ENABLE_SSE'"
@${ ECHO } "in your kernel config (have a look at http://www.FreeBSD.org/handbook/"
@${ ECHO } "if you do not know how to do this), else ifc will hang forever."
@${ ECHO }
@${ ECHO } "WARNING: If you use ifc while having linux_devtools installed, ifc will use"
@${ ECHO } "the wrong includes and therefore will generate bogus (not working) binaries!"
@${ ECHO }
@${ ECHO } "If you encounter further problems with ifc please consult the errata at"
@${ ECHO } "http://support.intel.com/support/performancetools/fortran/linux/"
@${ ECHO } "first."
2002-07-08 03:14:41 +00:00
. i n c l u d e < b s d . p o r t . p o s t . m k >