* NEW linetype keyword "nodraw" can be used to draw only the points in "with lp"
* NEW plot option to "skip N" lines at start of an ascii data file
* NEW 'set fit prescale' normalized fit parameters before M-L refinement
* NEW update svg terminal to grey out the key entry when a plot is toggled off
* NEW allow keywords "comma" and "tab" for "set datafile separator"
* CHANGE Accept "with image pixels" as a synonym for "with image failsafe"
* CHANGE return NaN if a requested numerical data value finds a string instead
* CHANGE Consume only one space following the font name in an enhanced test string
* CHANGE respond to left mouse click on press rather than on release
* FIX Faster recovery from outboard server gnuplot_qt being killed
* FIX get rid of O(N^2) memory allocation for string data in long input lines
* FIX large integers in iteration spec could cause overflow in end condition check
* FIX object fillcolors should be consistent with the color of current linetypes
* FIX LFS support on 64bit platforms (not backported for 32bit platforms)
* FIX timecolumn() applied to non-axis data reports an error rather than faulting
* FIX clipping could fail on integer overflow
* FIX segfault resulting from strcol(N) applied to empty field in a *.csv file
* FIX adjustment of key size to accommodate long key title
* FIX treat data value read as "NaN" the same as we would "1/0"
* FIX handling of events triggered by closing the qt plot window
* FIX iteration failure due to integer overflow
* FIX clip r axis tics to current plot boundary
* FIX logscale cb axis with volatile data
* FIX qt terminal timing problem with mouse click+release
* FIX qt terminal handle window close events
* FIX incorrect processing of certain loop [start🔚incr] combinations
* FIX Fix y extent and clipping of rectangles with y coord < 0 or inverted axes
* FIX handle columnheaders in input to fit
* FIX add sanity check in pdf.trm to avoid strcpy(fontname,fontname)
46 lines
1.4 KiB
Makefile
46 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.94 2014/11/18 22:19:47 adam Exp $
|
|
|
|
DISTNAME= gnuplot-4.6.6
|
|
CATEGORIES+= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gnuplot/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://gnuplot.sourceforge.net/
|
|
COMMENT= Portable interactive, function plotting utility
|
|
|
|
CONFLICTS+= gnuplot-nox11-[0-9]*
|
|
|
|
PATCHDIR= ${.CURDIR}/../../graphics/gnuplot/patches
|
|
DISTINFO_FILE= ${.CURDIR}/../../graphics/gnuplot/distinfo
|
|
|
|
USE_LANGUAGES= c
|
|
USE_TOOLS+= makeinfo pkg-config gmake
|
|
GNU_CONFIGURE= yes
|
|
#CONFIGURE_ARGS+= --enable-history-file
|
|
CONFIGURE_ARGS+= --with-plot=${PREFIX}
|
|
CONFIGURE_ARGS+= --without-latex
|
|
CONFIGURE_ARGS+= --without-lisp-files
|
|
CONFIGURE_ARGS+= --without-tutorial
|
|
CONFIGURE_ARGS+= ac_cv_prog_EMACS=
|
|
INFO_FILES= yes
|
|
|
|
CONFIGURE_ARGS+= --with-readline=bsd
|
|
.include "../../mk/readline.buildlink3.mk"
|
|
.include "../../mk/curses.buildlink3.mk"
|
|
|
|
LDFLAGS.SunOS+= -liconv
|
|
|
|
# Make this available to patch-ah so the font path can include pkgsrc fonts.
|
|
SUBST_CLASSES+= fontpath
|
|
SUBST_STAGE.fontpath= pre-configure
|
|
SUBST_MESSAGE.fontpath= Fixing font path.
|
|
SUBST_FILES.fontpath= src/variable.c
|
|
SUBST_SED.fontpath= -e 's,@PKGSRC_PREFIX@,"${PREFIX}",'
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/pango/buildlink3.mk"
|
|
.include "../../graphics/cairo/buildlink3.mk"
|
|
.include "../../graphics/plotutils/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|