1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

Migrate to gfortran.

This commit is contained in:
Maho Nakata 2007-01-09 01:36:21 +00:00
parent 413114ce6c
commit fc543c3243
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=181821
2 changed files with 28 additions and 0 deletions

View File

@ -19,12 +19,18 @@ WRKSRC= ${WRKDIR}/${PORTNAME}
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes
WANT_FORTRAN= yes #dummy
USE_GCC=4.2+
LIB_DEPENDS+= f2c.2:${PORTSDIR}/lang/f2c
ALL_TARGET= shared ALL_TARGET= shared
post-patch: post-patch:
${ECHO_CMD} ${FC}
@${GREP} -lR "<malloc.\h>" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \ @${GREP} -lR "<malloc.\h>" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \
's|<malloc\.h>|<stdlib.h>|g' 's|<malloc\.h>|<stdlib.h>|g'
@${REINPLACE_CMD} -e 's|="\.so"|=".so.0"|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|="\.so"|=".so.0"|g' ${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|%%FC%%|${FC}|g' ${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|%%FC%%|${FC}|g' ${WRKSRC}/configure.in
do-install: do-install:
.for file in drvrsmem.h fitsio.h fitsio2.h longnam.h .for file in drvrsmem.h fitsio.h fitsio2.h longnam.h

View File

@ -0,0 +1,22 @@
--- configure~ Tue Jan 9 10:31:25 2007
+++ configure Tue Jan 9 10:31:46 2007
@@ -857,7 +857,7 @@
fi
-for ac_prog in f77 xlf cf77 gf77 g77 af77 ncf f2c
+for ac_prog in %%FC%% f77 xlf cf77 gf77 g77 af77 ncf f2c
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
--- configure.in~ Fri Jul 29 06:26:00 2005
+++ configure.in Tue Jan 9 10:31:38 2007
@@ -54,7 +54,7 @@
fi
AC_PROG_CC
-AC_CHECK_PROGS(FC, f77 xlf cf77 gf77 g77 af77 ncf f2c , nope)
+AC_CHECK_PROGS(FC, %%FC%%, f77 xlf cf77 gf77 g77 af77 ncf f2c , nope)
if test $FC = 'nope' ; then
AC_MSG_WARN(cfitsio: == No acceptable f77 found in \$PATH)
AC_MSG_WARN(cfitsio: == Cfitsio will be built without Fortran wrapper support)