diff options
author | maho <maho@FreeBSD.org> | 2007-01-23 13:20:58 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2007-01-23 13:20:58 +0800 |
commit | 27e09755f3c62c604d785384b359ac0d64531a9f (patch) | |
tree | da467f9beb4f560a4f9461f6d0657d8a7403421b /cad/sceptre | |
parent | 41dbd5879c954b063e80f478ff8b2b459784536c (diff) | |
download | freebsd-ports-gnome-27e09755f3c62c604d785384b359ac0d64531a9f.tar.gz freebsd-ports-gnome-27e09755f3c62c604d785384b359ac0d64531a9f.tar.zst freebsd-ports-gnome-27e09755f3c62c604d785384b359ac0d64531a9f.zip |
* Fix build for CURRENT.
* Grab maintainership.
Diffstat (limited to 'cad/sceptre')
-rw-r--r-- | cad/sceptre/Makefile | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/cad/sceptre/Makefile b/cad/sceptre/Makefile index 9a6d39153979..568f4177f102 100644 --- a/cad/sceptre/Makefile +++ b/cad/sceptre/Makefile @@ -11,19 +11,20 @@ PORTREVISION= 1 CATEGORIES= cad MASTER_SITES= http://ftp.osuosl.org/pub/FreeBSD/distfiles/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= maho@FreeBSD.org COMMENT= SCEPTRE is a general purpose circuit analysis program WANT_FORTRAN= yes #dummy but future use -BUILD_DEPENDS+= gfortran42:${PORTSDIR}/lang/gcc42 -FC= gfortran42 -F77= gfortran42 + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 700000 +BUILD_DEPENDS+= g77-34:${PORTSDIR}/lang/gcc34 +FC= g77-34 +F77= g77-34 FFLAGS+= -fno-automatic -O MAKE_ENV+= FC="${FC}" F77="${F77}" FFLAGS="${FFLAGS}" - -BROKEN= Does not build -DEPRECATED= Nobody seems to use this port. Please report if you do. -EXPIRATION_DATE= 2007-07-01 +.endif NO_WRKSUBDIR= YES @@ -34,4 +35,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/doc/doc_ger.pdf ${PREFIX}/share/doc/sceptre/doc_ger.pdf .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |