summaryrefslogtreecommitdiff
path: root/science/getdp/Makefile
blob: 9bcf06a2ec3746e3558c103fab4d21bb49ca5e33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# New ports collection makefile for:  getdp
# Date created:               25 September 2004
# Whom:                       Thierry Thomas <thierry@pompo.net>
#
# $FreeBSD$
#

PORTNAME=	getdp
PORTVERSION=	1.2.1
PORTREVISION=	2
CATEGORIES=	science
MASTER_SITES=	http://www.geuz.org/getdp/src/
DISTNAME=	${PORTNAME}-${PORTVERSION}-source
EXTRACT_SUFX=	.tgz

MAINTAINER=	ports@FreeBSD.org
COMMENT=	A rather general finite element solver using mixed finite elements

LIB_DEPENDS=	gsl.9:${PORTSDIR}/math/gsl	\
		lapack.4:${PORTSDIR}/math/lapack

WANT_FORTRAN=	yes #dummy but future use
BUILD_DEPENDS+= gfortran42:${PORTSDIR}/lang/gcc42
FC=		gfortran42
F77=		gfortran42
CONFIGURE_ENV+=	FC="${FC}" F77="${F77}" FFLAGS="${FFLAGS}"

GNU_CONFIGURE=	yes
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS=	--with-gsl-prefix=${LOCALBASE}	\
		--with-blas-lapack-prefix=${LOCALBASE}

WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}

MAN1=		getdp.1

EXAMPLES=	Magnetostatics.pro README solver.par test.geo test.msh test.pro

.if defined(WITH_MULTIHARMONIC)
CONFIGURE_ARGS+=	--enable-multiharmonic
.endif

.include <bsd.port.pre.mk>

.if !defined(NOPORTDOCS)
. if ${PERL_LEVEL} < 500600
NOPORTDOCS=	yes
. else
ALL_TARGET=	all doc
BUILD_DEPENDS+=	texi2pdf:${PORTSDIR}/print/teTeX-base	\
		dvips:${PORTSDIR}/print/dvipsk-tetex
USE_PERL5_BUILD=	yes
. endif
.endif

post-install:
	@${STRIP_CMD} ${PREFIX}/bin/getdp
.if !defined(NOPORTDOCS)
	@${MKDIR} ${DOCSDIR}
	cd ${DOCSDIR} && ${TAR} xfz ${WRKSRC}/${PORTNAME}-${PORTVERSION}-doc.tgz
	@${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}
	@${ECHO_MSG} "===>  Documentation installed in ${DOCSDIR}."
	@${MKDIR} ${EXAMPLESDIR}
	${INSTALL_DATA} ${EXAMPLES:S|^|${WRKSRC}/demos/|} ${EXAMPLESDIR}
	@${ECHO_MSG} "===>  Examples installed in ${EXAMPLESDIR}."
.endif

.if defined(MAINTAINER_MODE)
regression-test:	install
	cd ${WRKSRC}/demos && ${PORTNAME} test.pro -solve MagSta_phi
.endif

.include <bsd.port.post.mk>