mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
3a1e325db0
PR: 119725 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
74 lines
1.8 KiB
Makefile
74 lines
1.8 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: gretl
|
|
# Date created: Mar 22, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gretl
|
|
PORTVERSION= 1.7.1
|
|
CATEGORIES= math finance
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Gnu Regression, Econometrics and Time-series Library
|
|
|
|
BUILD_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot
|
|
LIB_DEPENDS= fftw3.4:${PORTSDIR}/math/fftw3 \
|
|
mpfr.2:${PORTSDIR}/math/mpfr
|
|
RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot
|
|
|
|
USE_BZIP2= yes
|
|
WANT_GNOME= yes
|
|
USE_GNOME= gnometarget gtk20 libxml2
|
|
USE_GETTEXT= yes
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS= libtool:15 autoconf:261
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -DGNUPLOT_PNG" \
|
|
LDFLAGS="-L${LOCALBASE}/lib ${GCCLIBDIR}"
|
|
CONFIGURE_ARGS= --enable-static --enable-shared --with-gmake
|
|
ALL_TARGET= # empty
|
|
USE_LDCONFIG= yes
|
|
|
|
MAN1= gretl.1 gretl-config.1
|
|
|
|
USE_FORTRAN= yes
|
|
CONFIGURE_ENV+= FC="${FC}" F77="${F77}" FFLAGS="${FFLAGS}" LAPACK_LIBS="${BLAS} ${LAPACK} -l${FORTRANRUNTIME}"
|
|
FORTRANRUNTIME= gfortran
|
|
GCCLIBDIR= -L`${CAT} ${WRKSRC}/LIBDIR` -L`${CAT} ${WRKSRC}/LIBDIR`/../../..
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "alpha"
|
|
BROKEN= math/lapack appears to be broken on alpha
|
|
.endif
|
|
|
|
.if ${HAVE_GNOME:Mlibgnomeui}!=""
|
|
PKGNAMESUFFIX= -gnome
|
|
USE_GNOME+= gnomeprefix gtksourceview libgnomeui
|
|
GCONF_SCHEMAS= gretl.schemas
|
|
.else
|
|
CONFIGURE_ARGS+= --without-gnome --without-gtksourceview
|
|
.endif
|
|
|
|
.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
|
|
|
|
pre-configure:
|
|
@${DIRNAME} `${F77} -print-libgcc-file-name` > ${WRKSRC}/LIBDIR
|
|
|
|
.include <bsd.port.post.mk>
|