Files
ports/math/gnuplot/Makefile
T
pirofti 569fbf97f8 Update to gnuplot 5.2.1.
While at it remove obsolete emacs dependency, use GNU readline and
take maintainership.

OK and input feinerer@, OK steven@
2017-11-04 17:21:41 +00:00

66 lines
1.5 KiB
Makefile

# $OpenBSD: Makefile,v 1.67 2017/11/04 17:21:41 pirofti Exp $
COMMENT = command-driven interactive function plotting program
V = 5.2
PATCHLEVEL = 1
DISTNAME = gnuplot-${V}.${PATCHLEVEL}
CATEGORIES = math graphics
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=gnuplot/}
HOMEPAGE = http://www.gnuplot.info/
MAINTAINER = Paul Irofti <pirofti@openbsd.org>
# see Copyright in source
# http://gnuplot.cvs.sourceforge.net/gnuplot/gnuplot/Copyright
PERMIT_PACKAGE_CDROM = Yes
WANTLIB += c cerf m ncurses ereadline ${COMPILER_LIBCXX} z
LIB_DEPENDS += devel/readline \
math/libcerf
FLAVORS = no_cairo no_x11
FLAVOR ?=
CONFIGURE_STYLE = gnu
CONFIGURE_ARGS = --without-linux-vga \
--without-latex \
--without-tutorial \
--with-readline=${LOCALBASE} \
--disable-wxwidgets \
--with-qt=no \
--without-lua \
--without-pdf
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
USE_GMAKE = Yes
FAKE_FLAGS = appdefaultdir="${PREFIX}/lib/X11/app-defaults/"
TEST_IS_INTERACTIVE = x11
SUBST_VARS = V
.if ${FLAVOR:Mno_x11}
CONFIGURE_ARGS += --without-x \
--without-gd
.else
LIB_DEPENDS += converters/libiconv graphics/gd
WANTLIB += X11 fontconfig freetype gd iconv jpeg png tiff webp
CONFIGURE_ARGS += --with-x
.endif
.if ${FLAVOR:Mno_cairo} || ${FLAVOR:Mno_x11}
CONFIGURE_ARGS += --without-cairo
.else
LIB_DEPENDS += devel/gettext \
devel/pango \
graphics/cairo
WANTLIB += cairo gobject-2.0 glib-2.0 intl pango-1.0 pangocairo-1.0
.endif
.include <bsd.port.mk>