openbsd-ports/math/grace/Makefile

72 lines
1.7 KiB
Makefile
Raw Normal View History

# $OpenBSD: Makefile,v 1.2 2001/09/28 06:02:14 pvalchev Exp $
# $FreeBSD: ports/math/grace/Makefile,v 1.18 2001/04/25 05:59:19 lkoeller Exp $
# Original from: Lars Koeller <Lars.Koeller@Uni-Bielefeld.de>
COMMENT= "GRaphing, Advanced Computation and Exploration of data"
DISTNAME= grace-5.1.4
CATEGORIES= math
NEED_VERSION= 1.419
HOMEPAGE= http://plasma-gate.weizmann.ac.il/Grace/
MAINTAINER= Nikolay Sturm <Nikolay.Sturm@desy.de>
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ftp://plasma-gate.weizmann.ac.il/pub/grace/src/ \
ftp://ftp.fu-berlin.de/unix/graphics/grace/src/ \
ftp://freedom7.swmed.edu/pub/mirrors/grace/src/
FAKE_FLAGS= GRACE_HOME=${WRKINST}${PREFIX}/grace
CONFIGURE_STYLE= gnu dest
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC}/ac-tools
CONFIGURE_ARGS+= --with-bundled-xbae \
--with-extra-incpath=${LOCALBASE}/include \
--with-extra-ldpath=${LOCALBASE}/lib \
--enable-grace-home=${LOCALBASE}/grace
BUILD_DEPENDS= ${LOCALBASE}/lib/libpdf.a::print/pdflib
LIB_DEPENDS= jpeg.62::graphics/jpeg \
png.2::graphics/png \
t1.2::devel/t1lib \
tiff.35::graphics/tiff
FLAVORS= no_x11 fftw netcdf xmhtml
FLAVOR?=
.if ${FLAVOR:L:Mno_x11}
CONFIGURE_ARGS+= --without-x
.else
USE_X11= Yes
USE_MOTIF= openmotif
.endif
.if ${FLAVOR:L:Mfftw}
LIB_DEPENDS+= fftw.2::math/fftw
CONFIGURE_ARGS+= --with-fftw
.else
CONFIGURE_ARGS+= --without-fftw
.endif
.if ${FLAVOR:L:Mnetcdf}
LIB_DEPENDS+= netcdf.1::math/netcdf
CONFIGURE_ARGS+= --enable-netcdf
.else
CONFIGURE_ARGS+= --disable-netcdf
.endif
.if ${FLAVOR:L:Mxmhtml}
LIB_DEPENDS+= XmHTML.1::www/xmhtml
CONFIGURE_ARGS+= --enable-xmhtml
.else
CONFIGURE_ARGS+= --disable-xmhtml
.endif
.include <bsd.port.mk>