a245fe1498
allow OPTIONS to be able to influence dependencies. This is still experimental [1] * Teach bsd.gcc.mk about gfortran [2] * Remove the outdated emulators/linux_base; the new default has been linux_base-fc4. This will allow the outdated port to be removed [3] * Add USE_FIREBIRD macros to bsd.database.mk [4] PR: 93687 [1], 93690 [2], 103184 [3], 103357 [4] Submitted by: shaun [1], Pedro F. Giffuni <giffunip at asme to org> [2], gerald [2], thierry [2], vd [3], skv [4]
34 lines
640 B
Makefile
34 lines
640 B
Makefile
# New ports collection makefile for: Elmer-MatC
|
|
# Date created: 5 Jan 2006
|
|
# Whom: Pedro Giffuni <giffunip@asme.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= matc
|
|
PORTVERSION= 5.2.0
|
|
CATEGORIES= science
|
|
MASTER_SITES= ftp://ftp.funet.fi/pub/sci/physics/elmer/
|
|
PKGNAMEPREFIX= elmer-
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= MatC language library used by ELMER FEM package
|
|
|
|
USE_GCC= 4.1+
|
|
WITH_FORTRAN= yes
|
|
F77= ${FC}
|
|
CONFIGURE_ENV+= FC=${FC} F77=${FC}
|
|
|
|
GNU_CONFIGURE= yes
|
|
ALL_TARGET=
|
|
|
|
PLIST_SUB= ARCH=${MACHINE_ARCH}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
|
|
CFLAGS+= -fPIC
|
|
FFLAGS+= -fPIC
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|