* g77 -> gfortran throughout. Got rid of the separate

expressions/builders for Fortran.  Tested by building Octave with
  gfortran 4.3.

svn path=/nixpkgs/branches/stdenv-updates/; revision=14978
This commit is contained in:
Eelco Dolstra
2009-04-09 15:24:33 +00:00
parent 65a6c5ad9b
commit eeed10ba8e
13 changed files with 96 additions and 352 deletions

View File

@@ -26,7 +26,7 @@ EOF
if test -n "$langCC"; then
langs="$langs,c++"
fi
if test -n "$langF77"; then
if test -n "$langFortran"; then
langs="$langs,f77"
fi

View File

@@ -1,5 +1,5 @@
{ stdenv, fetchurl, noSysDirs
, langC ? true, langCC ? true, langF77 ? false
, langC ? true, langCC ? true, langFortran ? false
}:
assert langC;
@@ -13,5 +13,5 @@ stdenv.mkDerivation {
url = http://ftp.gnu.org/gnu/gcc/gcc-3.3.6/gcc-3.3.6.tar.bz2;
md5 = "6936616a967da5a0b46f1e7424a06414";
};
inherit noSysDirs langC langCC langF77;
inherit noSysDirs langC langCC langFortran;
}