e9a2c0a4b1
Approved by: portmgr@ (implicit)
146 lines
3.5 KiB
Makefile
146 lines
3.5 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: gretl
|
|
# Date created: Mar 22, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gretl
|
|
PORTVERSION= 1.9.9
|
|
CATEGORIES= math finance
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= bf@FreeBSD.org
|
|
COMMENT= GNU Regression, Econometrics, and Time-series Library
|
|
|
|
LIB_DEPENDS= fftw3:${PORTSDIR}/math/fftw3
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_BZIP2= yes
|
|
USE_FORTRAN= yes
|
|
USE_GMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
WANT_GNOME= yes
|
|
|
|
ALL_TARGET= # empty
|
|
CONFIGURE_ARGS = --enable-static --enable-shared --with-gmake \
|
|
--without-gnome
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ENV= LAPACK_LIBS="${LAPACK} ${BLAS}"
|
|
|
|
MAN1= gretl.1
|
|
|
|
OPTIONS_DEFINE = ATLAS GUI ODBC OPENMP R
|
|
|
|
ATLAS_DESC = Use ATLAS for BLAS and LAPACK
|
|
GUI_DESC= Build the graphical user interface and plugins
|
|
ODBC_DESC= Build with unixODBC database support
|
|
OPENMP_DESC= Use multithreading via OpenMP
|
|
R_DESC= Build with libR support
|
|
|
|
OPTIONS_DEFAULT= GUI OPENMP
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MATLAS}
|
|
LIB_DEPENDS+= atlas:${PORTSDIR}/math/atlas
|
|
BLAS= -lf77blas
|
|
LAPACK= -lalapack -lcblas
|
|
.else
|
|
LIB_DEPENDS+= blas:${PORTSDIR}/math/blas \
|
|
lapack:${PORTSDIR}/math/lapack
|
|
BLAS= -lblas
|
|
LAPACK= -llapack
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGUI}
|
|
CONFIGURE_ARGS+= --enable-gui=yes
|
|
USE_GNOME= gnomehier gtksourceview2
|
|
BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot
|
|
RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot
|
|
PLIST_SUB+= GUI=""
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-gui=no
|
|
PLIST_SUB+= GUI="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
CONFIGURE_ARGS+= --enable-nls=yes
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-nls=no
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MODBC}
|
|
CONFIGURE_ARGS+= --with-odbc
|
|
LIB_DEPENDS+= odbc.2:${PORTSDIR}/databases/unixODBC
|
|
PLIST_SUB+= ODBC=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-odbc
|
|
PLIST_SUB+= ODBC="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MOPENMP}
|
|
CONFIGURE_ARGS+= --enable-openmp
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MR}
|
|
CONFIGURE_ARGS+= --with-libR
|
|
LIB_DEPENDS+= R:${PORTSDIR}/math/R
|
|
.else
|
|
CONFIGURE_ARGS+= --without-libR
|
|
.endif
|
|
|
|
.if !empty(MACHINE_CPU:Msse2)
|
|
CONFIGURE_ARGS+= --enable-sse2=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-sse2=no
|
|
.endif
|
|
|
|
post-patch:
|
|
@${SED} -i '.orig' -E -e '/#include[[:blank:]]+<sys\/socket\.h>/\
|
|
{x; s/.*/#include <netinet\/in.h>/; H; x;}' \
|
|
${WRKSRC}/configure \
|
|
${WRKSRC}/plugin/mailer.c
|
|
@${REINPLACE_CMD} -e 's|set term png|set term dumb|g' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's| DOMAIN| CEPHES_DOMAIN|g' \
|
|
${WRKSRC}/cephes/iv.c
|
|
@${REINPLACE_CMD} -e 's|@gnome_prefix@|@prefix@|g' \
|
|
${WRKSRC}/gnome/gretl.keys.in
|
|
|
|
.if ${PORT_OPTIONS:MGUI}
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/share/applications
|
|
.for _file in gretl.desktop
|
|
${INSTALL_DATA} ${WRKSRC}/gnome/${_file} ${PREFIX}/share/applications
|
|
.endfor
|
|
@${MKDIR} ${PREFIX}/share/mime/packages
|
|
.for _file in gretl.xml
|
|
${INSTALL_DATA} ${WRKSRC}/xdg/${_file} ${PREFIX}/share/mime/packages
|
|
.endfor
|
|
@${MKDIR} ${PREFIX}/share/mime-info
|
|
.for _file in gretl.keys gretl.mime
|
|
${INSTALL_DATA} ${WRKSRC}/gnome/${_file} ${PREFIX}/share/mime-info
|
|
.endfor
|
|
@${MKDIR} ${PREFIX}/share/pixmaps
|
|
.for _file in gnome-application-x-gretldata.png gnome-application-x-gretlsession.png
|
|
${INSTALL_DATA} ${WRKSRC}/gnome/${_file} ${PREFIX}/share/pixmaps
|
|
.endfor
|
|
.for _file in gretl-logo.xpm gretl.xpm
|
|
${INSTALL_DATA} ${WRKSRC}/pixmaps/${_file} ${PREFIX}/share/pixmaps
|
|
.endfor
|
|
@-update-mime-database ${PREFIX}/share/mime
|
|
|
|
.endif
|
|
|
|
regression-test test check: build
|
|
@(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${_MAKE_JOBS} \
|
|
${MAKE_ARGS} check)
|
|
|
|
.include <bsd.port.mk>
|