diff options
author | obrien <obrien@FreeBSD.org> | 2005-03-02 16:46:01 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2005-03-02 16:46:01 +0800 |
commit | 204d77aaaf37160523c9dca4a74b86725eeeb345 (patch) | |
tree | ca67d1919ff0977c9631e9410a92a4229a2beaaf /lang/gcc42 | |
parent | 2eba80d8002f0e436a990d04503265903c628f44 (diff) | |
download | freebsd-ports-gnome-204d77aaaf37160523c9dca4a74b86725eeeb345.tar.gz freebsd-ports-gnome-204d77aaaf37160523c9dca4a74b86725eeeb345.tar.zst freebsd-ports-gnome-204d77aaaf37160523c9dca4a74b86725eeeb345.zip |
portlint.
Diffstat (limited to 'lang/gcc42')
-rw-r--r-- | lang/gcc42/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lang/gcc42/Makefile b/lang/gcc42/Makefile index 544b78565bed..e4e3d62eb9aa 100644 --- a/lang/gcc42/Makefile +++ b/lang/gcc42/Makefile @@ -22,11 +22,16 @@ DISTFILES= \ .if defined(WITH_FORTRAN) DISTFILES+= gcc-fortran-${VERSIONSTRING}${EXTRACT_SUFX} .endif + MAINTAINER?= gerald@FreeBSD.org COMMENT?= GNU Compiler Collection 4.0 LATEST_LINK?= gcc40${PKGNAMESUFFIX} +.if defined(WITH_FORTRAN) +LIB_DEPENDS= gmp.6:${PORTSDIR}/math/libgmp4 +.endif + USE_BISON= yes USE_BZIP2= yes USE_GMAKE= yes @@ -61,6 +66,9 @@ CONFIGURE_ARGS= --disable-nls \ --with-libiconv-prefix=${LOCALBASE} \ --program-suffix=${SUFFIX} \ --with-gxx-include-dir=${TARGLIB}/include/c++/ +.if defined(WITH_FORTRAN) +CONFIGURE_ARGS+= --with-gmp=${LOCALBASE} +.endif MAKE_ARGS+= MAKEINFOFLAGS="--no-split" .if defined(WANT_SHAREDLIBS) CONFIGURE_ARGS+= --enable-shared @@ -99,8 +107,6 @@ PLIST_SUB+= LIBJAVA="" .endif .if defined(WITH_FORTRAN) -LIB_DEPENDS+= gmp.6:${PORTSDIR}/math/libgmp4 -CONFIGURE_ARGS+= --with-gmp=${LOCALBASE} MAN1+= gfortran${SUFFIX}.1 INFO+= gfortran PLIST_SUB+= FORTRAN="" |