From owner-freebsd-ports@FreeBSD.ORG Fri Jan 12 08:56:03 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3FB6E16A58E for ; Fri, 12 Jan 2007 08:56:03 +0000 (UTC) (envelope-from maho.nakata@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.229]) by mx1.freebsd.org (Postfix) with ESMTP id E423E13C442 for ; Fri, 12 Jan 2007 08:56:00 +0000 (UTC) (envelope-from maho.nakata@gmail.com) Received: by wx-out-0506.google.com with SMTP id s18so739832wxc for ; Fri, 12 Jan 2007 00:56:00 -0800 (PST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:message-id:to:cc:subject:from; b=QlOux5zAYljm0q7HapPA4M6vjTyxcqY6PPOG04ZqW4Lh7EAaInJJXUSiij89SsJtu1yaPUr78GSsJDKZbh3sHa7xCorLUWVv8obyNNAzSqpji+9009UKMYZFZlAZLmasN8zFU2KrkwOjN3+QiI37+XXfFo3zMrig9XKCDr1u2Fo= Received: by 10.70.48.11 with SMTP id v11mr936947wxv.1168592156975; Fri, 12 Jan 2007 00:55:56 -0800 (PST) Received: from localhost ( [133.11.172.102]) by mx.google.com with ESMTP id 39sm3562882wrl.2007.01.12.00.55.54; Fri, 12 Jan 2007 00:55:56 -0800 (PST) Date: Fri, 12 Jan 2007 17:55:08 +0900 (JST) Message-Id: <20070112.175508.90768420.chat95@mac.com> To: ports@freebsd.org From: maho.nakata@gmail.com X-Mailman-Approved-At: Fri, 12 Jan 2007 17:38:36 +0000 Cc: kris@obsecurity.org, portmgr@freebsd.org Subject: status of migration to gfortran42 2007.1.12: currently all ports using fortran are unstable. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jan 2007 08:56:03 -0000 News: Kris approved that migration to gfortran > Unless the changes are too extensive, please proceed. so I'll proceed. * currently all ports using fortran are unstable. please wait until I announce about it.... current status of migration wait ... wait for commit approval source ... f90/f77 sources exist link ... only exist link against f90/f77 complied libraries gfortran ... used compiler is gfortran42 f77 ... used compiler is g77 (there are some compilation problem with gfortran) ports maintainer Used Fortran committed f77/f90? science/at ports@FreeBSD.org gfortran yes source math/superlu_mt ports@FreeBSD.org gfortran yes source math/metis-edf ports@FreeBSD.org gfortran yes source math/nsc2ke ports@FreeBSD.org gfortran yes source math/linpack ports@FreeBSD.org gfortran yes source math/octave-devel maho@FreeBSD.org gfortran yes source (*) math/jags eric+fbports@vangyzen.net gfortran yes source math/libRmath eric+fbports@vangyzen.net gfortran yes source science/elmerfront ports@FreeBSD.org gfortran yes source science/elmer-fem ports@FreeBSD.org gfortran yes source math/R eric+fbports@vangyzen.net gfortran yes source science/elmer-hutiter ports@FreeBSD.org gfortran yes source math/sdpa maho@FreeBSD.org gfortran yes link math/sdpara maho@FreeBSD.org gfortran yes link science/elmer-eio ports@FreeBSD.org gfortran yes source math/scalapack maho@FreeBSD.org gfortran yes source math/blacs maho@FreeBSD.org gfortran yes source math/blocksolve95 ports@FreeBSD.org gfortran yes source math/lapack++ maho@FreeBSD.org gfortran yes source math/lapack95 maho@FreeBSD.org gfortran yes source math/suitesparse maho@FreeBSD.org gfortran yes source science/mpqc maho@FreeBSD.org gfortran yes link science/2dhf maho@FreeBSD.org gfortran yes source cad/calculix maho@FreeBSD.org gfortran yes source math/arpack ports@FreeBSD.org gfortran yes source math/taucs ports@FreeBSD.org gfortran yes source math/metis ports@FreeBSD.org gfortran yes source net/openmpi brooks@FreeBSD.org gfortran yes source biology/psi88 ports@FreeBSD.org f77 yes source benchmarks/himenobench maho@FreeBSD.org gfortran yes source biology/ortep3 ports@FreeBSD.org gfortran yes source biology/molden ports@FreeBSD.org gfortran yes source astro/cfitsio ports@FreeBSD.org gfortran yes source math/blas stas@FreeBSD.org gfortran yes source math/atlas maho@FreeBSD.org gfortran yes source math/atlas-devel maho@FreeBSD.org gfortran yes source math/lapack jmz@FreeBSD.org gfortran yes source net/mpich2 thierry@FreeBSD.org gfortran yes source -------------------------------------------------------------------- * Migrate to gfortran42 WANT_FORTRAN= yes #dummy but future use BUILD_DEPENDS+= gfortran42:${PORTSDIR}/lang/gcc42 FC= gfortran42 F77= gfortran42 * Linking blas/lapack or atlas .if exists(${LOCALBASE}/lib/libatlas_r.so) && !defined(WITH_BLAS) WITH_ATLAS= yes .endif .if defined(WITH_ATLAS) LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas BLAS= -lf77blas -latlas LAPACK= -lalapack .else LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/lapack BLAS= -lblas LAPACK= -llapack .endif * Useful for other stuffs for gfortran related libaries when link against -lblas with C/C++ programs this corresponds to when some program want to link against libg2c of libf2c with GNU f77. FORTRANLIBDIR= `${DIRNAME} \`gfortran42 -print-libgcc-file-name\`` FORTRANLIBDIR2= `${DIRNAME} \`gfortran42 -print-libgcc-file-name\``/../../../ FORTRANLIBS= -lgfortranbegin -lgfortran thanks, -- NAKATA, Maho (maho@FreeBSD.org) _______________________________________________ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org"