mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
47 lines
1005 B
Makefile
47 lines
1005 B
Makefile
# Created by: Jason Evans <jasone@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= crux
|
|
PORTVERSION= 1.2.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= biology python
|
|
MASTER_SITES= http://www.canonware.com/download/Crux/
|
|
|
|
MAINTAINER= jasone@FreeBSD.org
|
|
COMMENT= Software toolkit for phylogenetic inference
|
|
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-python=${PYTHON_CMD} --disable-mpi
|
|
USE_CSTD= gnu99
|
|
USE_GMAKE= yes
|
|
USE_PYTHON= 2.5+
|
|
|
|
OPTIONS_DEFINE= SYS_LINALG
|
|
SYS_LINALG_DESC= Enable system ATLAS/LAPACK
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
USE_FORTRAN= yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MSYS_LINALG}
|
|
CONFIGURE_ARGS+= --enable-sys-linalg
|
|
LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-sys-linalg
|
|
.endif
|
|
|
|
.if ${ARCH} == "powerpc" && ${OSVERSION} > 900000
|
|
BROKEN= Does not build on powerpc-9: error in pthreads
|
|
.endif
|
|
|
|
post-install:
|
|
@${PREFIX}/bin/crux -b -q /dev/null
|
|
|
|
.include <bsd.port.post.mk>
|