openbsd-ports/math/octave/Makefile

91 lines
2.2 KiB
Makefile
Raw Normal View History

# $OpenBSD: Makefile,v 1.28 2007/09/15 18:44:36 steven Exp $
# vax: no IEEE arithmetic
# sparc: fPIC version of libgcc.a needed but not available
NOT_FOR_ARCHS= vax sparc
COMMENT= high-level language for numerical computations
VERSION= 2.9.13
DISTNAME= octave-${VERSION}
CATEGORIES= math
2007-06-20 04:51:42 -04:00
SHARED_LIBS= cruft 5.0 \
octave 4.0 \
octinterp 4.0
2005-12-24 15:05:27 -05:00
HOMEPAGE= http://www.octave.org/
MAINTAINER= Steven Mestdagh <steven@openbsd.org>
2007-06-20 04:51:42 -04:00
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
2007-06-20 04:51:42 -04:00
WANTLIB= c g2c m ncurses readline stdc++ z
MASTER_SITES= ftp://ftp.octave.org/pub/octave/bleeding-edge/ \
ftp://neacm.fe.up.pt/pub/octave/bleeding-edge/ \
ftp://ftp.u-aizu.ac.jp/pub/SciEng/numanal/Octave/bleeding-edge/
2007-08-05 18:27:53 -04:00
BUILD_DEPENDS= ::devel/desktop-file-utils
2006-08-03 16:04:51 -04:00
LIB_DEPENDS= fftw3.>=3::math/fftw3 \
lapack.>=3::math/lapack \
2007-06-20 04:51:42 -04:00
blas.>=1::math/blas \
amd::math/amd \
pcre.>=1::devel/pcre \
curl.>=6::net/curl
USE_GMAKE= Yes
SEPARATE_BUILD= simple
CONFIGURE_STYLE=autoconf
2007-06-20 04:51:42 -04:00
AUTOCONF_VERSION=2.61
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
--with-fftw \
--without-mpi \
--without-hdf5
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib" \
F77=${FC}
2005-12-24 15:05:27 -05:00
MAKE_ENV= LIBcruft_VERSION=${LIBcruft_VERSION} \
LIBoctave_VERSION=${LIBoctave_VERSION} \
LIBoctinterp_VERSION=${LIBoctinterp_VERSION}
2005-12-24 15:05:27 -05:00
# needed to build on amd64
GCC_ARCH= ${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}
GNU_ARCH= ${GCC_ARCH:S/amd64/x86_64/}
2005-12-24 15:05:27 -05:00
SUBST_VARS= GNU_ARCH VERSION
# need to use fpic version of libgcc.a
post-configure:
@perl -pi -e 's#(gcc-lib/${GCC_ARCH}/[\d.]+)\s#\1/fpic #' \
${WRKBUILD}/Makeconf
.ifmake regress
# some tests need HOME to be writable
PORTHOME= /tmp
# define some user for tilde expansion test
MAKE_ENV+= USER=nobody
.endif
post-regress:
@rm -f /tmp/oct-*
# fix ls-R and install HTML documentation
2007-06-20 04:51:42 -04:00
HTMLDOCS= interpreter liboctave
post-install:
@cd ${PREFIX}/share/octave && \
perl -pi -e "s,${PREFIX},${TRUEPREFIX}," ls-R
@cd ${PREFIX}/libexec/octave && \
perl -pi -e "s,${PREFIX},${TRUEPREFIX}," ls-R
.for d in ${HTMLDOCS}
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/octave/${d}
${INSTALL_DATA} ${WRKBUILD}/doc/${d}/HTML/*.html \
${PREFIX}/share/doc/octave/${d}
.endfor
.include <bsd.port.mk>