freebsd-ports/cad/pdnmesh/Makefile
Gerald Pfeifer 574540a30b Pacify portlint by using a tab instead of spaces after variable
names and no longer passing FC, F77, and FFLAGS to CONFIGURE_ENV.

Approved by:	maintainer timeout (sarod@users.sf.net, 16 days)
2009-02-07 10:06:42 +00:00

47 lines
1.1 KiB
Makefile

# New ports collection makefile for: pdnmesh
# Date created: 25 August 2001
# Whom: Sarod Yatawatta <sarod@cs.pdn.ac.lk>
#
# $FreeBSD$
#
PORTNAME= pdnmesh
PORTVERSION= 0.2.1
PORTREVISION= 6
CATEGORIES= cad
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:S/$/:sf/} \
${MASTER_SITE_SUNSITE:S/$/:sun/}
MASTER_SITE_SUBDIR= ${PORTNAME}/:sf science/visualization/:sun
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:sf,sun
MAINTAINER= sarod@users.sf.net
COMMENT= A finite element program
LIB_DEPENDS= gtkglext:${PORTSDIR}/x11-toolkits/gtkglext
.include <bsd.port.pre.mk>
.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 -lcblas
.else
LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas
LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/lapack
BLAS= -lblas
LAPACK= -llapack
.endif
USE_FORTRAN= yes
CONFIGURE_ENV+= BLAS_LIBS="${BLAS}" LAPACK_LIBS="${LAPACK}"
USE_GL= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
MAN1= pdnmesh.1
MAN5= pdnmesh_input.5
.include <bsd.port.post.mk>