diff options
author | maho <maho@FreeBSD.org> | 2004-02-03 07:57:41 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2004-02-03 07:57:41 +0800 |
commit | 22fdf9ca8a23800315d90f6904cde43902e0b17a (patch) | |
tree | 9d4b605bf585bda40e2d67201b1dc384f789875c /lang/g95 | |
parent | e8612c795f75635af8fa7e5df7b93bea01f90e39 (diff) | |
download | freebsd-ports-gnome-22fdf9ca8a23800315d90f6904cde43902e0b17a.tar.gz freebsd-ports-gnome-22fdf9ca8a23800315d90f6904cde43902e0b17a.tar.zst freebsd-ports-gnome-22fdf9ca8a23800315d90f6904cde43902e0b17a.zip |
a) add --disable-libmudflap since this port doesn't use libmudflap
b) remove g95 as far as possible this confuses too much.
I've already fill the PR #62287
Submitted by: Steve Kargl <sgk@troutmask.apl.washington.edu>
Diffstat (limited to 'lang/g95')
-rw-r--r-- | lang/g95/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lang/g95/Makefile b/lang/g95/Makefile index 1bc93fd1b26d..4b9a38353a7c 100644 --- a/lang/g95/Makefile +++ b/lang/g95/Makefile @@ -6,7 +6,7 @@ # $FreeBSD$ # -PORTNAME= g95 +PORTNAME= gfortran PORTVERSION= 3.5.${SNAPDATE} CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_LOCAL} @@ -89,7 +89,6 @@ check: build post-install: ${LN} ${PREFIX}/bin/gfortrantree-ssa ${PREFIX}/bin/gfortran - ${LN} ${PREFIX}/bin/gfortrantree-ssa ${PREFIX}/bin/g95 .for f in gcc cpp gcov ${CONFIGURE_TARGET}-gcc ${CONFIGURE_TARGET}-g++ gcj gcjh gij jv-scan jcf-dump jv-convert jar grepjar rmic rmiregistry if [ -e ${PREFIX}/bin/${f}tree-ssa ]; then \ @@ -100,7 +99,7 @@ post-install: fi .endfor -.for f in libgfortran libgfortranbegin libmudflap libmudflapth libiberty ${EXTRA_SHLIB} +.for f in libgfortran libgfortranbegin libiberty ${EXTRA_SHLIB} ${MV} -f ${PREFIX}/lib/${f}.* ${TARGLIB} .endfor ${RM} -f ${PREFIX}/lib/libiberty.a @@ -129,6 +128,4 @@ post-install: ${CP} -p ${TMPPLIST} ${TMPPLIST}.pre cd ${WRKDIR} ; ex < ex.script -cklatest: - .include <bsd.port.post.mk> |