mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
2ce5a2f3f1
PR: 52717 Submitted by: KATO Tsuguru <tkato@prontomail.com> (maintainer)
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: gretl
|
|
# Date created: Mar 22, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gretl
|
|
PORTVERSION= 1.0.9
|
|
CATEGORIES= misc
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Gnu Regression, Econometrics and Time-series Library
|
|
|
|
BUILD_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot
|
|
LIB_DEPENDS= gmp.6:${PORTSDIR}/math/libgmp4
|
|
RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot
|
|
|
|
USE_BZIP2= yes
|
|
USE_X_PREFIX= yes
|
|
USE_GMAKE= yes
|
|
WANT_GNOME= yes
|
|
USE_GNOME= gnometarget gtk20 libxml2
|
|
USE_AUTOCONF_VER= 253
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= --enable-static --enable-shared --with-gmake
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MAN1= gretl.1 gretl-config.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${HAVE_GNOME:Mlibgnomeui}!=""
|
|
PKGNAMESUFFIX= -gnome
|
|
USE_GNOME+= gnomeprefix libgnomeprintui libgnomeui
|
|
PLIST_SUB+= GRETLDATADIR="share/gnome"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-gnome
|
|
PLIST_SUB+= GRETLDATADIR="share"
|
|
.endif
|
|
|
|
.if defined(WITH_LAPACK)
|
|
LIB_DEPENDS+= lapack.3:${PORTSDIR}/math/lapack
|
|
.else
|
|
CONFIGURE_ARGS+= --with-lapack=no
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|