blob: 22897989bf77005dc4534ef97d23e13805ef03cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# $NetBSD: Makefile,v 1.6 2004/06/25 17:09:27 adrianp Exp $
#
DISTNAME= gnuplot-4.0.0
PKGNAME= ${DISTNAME:C/-/-nox11-/}
SVR4_PKGNAME= gplot
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gnuplot/} \
ftp://ftp.ucc.ie/pub/gnuplot/ \
ftp://ftp.cc.monash.edu.au/pub/gnuplot/
MAINTAINER= root@garbled.net
HOMEPAGE= http://gnuplot.sourceforge.net/
COMMENT= Portable interactive, function plotting utility
CONFLICTS+= gnuplot-[0-9]*
USE_BUILDLINK3= YES
# because of missing rl_complete_with_tilde_expansion and rl_terminal_name
USE_GNU_READLINE= YES
GNU_CONFIGURE= YES
USE_MAKEINFO= YES
INFO_FILES= gnuplot.info
CONFIGURE_ARGS+= --with-pdf
CONFIGURE_ARGS+= --with-plot=${LOCALBASE}
CONFIGURE_ARGS+= --with-readline=${BUILDLINK_PREFIX.readline}
CONFIGURE_ARGS+= --without-x
.include "../../devel/readline/buildlink3.mk"
.include "../../graphics/plotutils-nox11/buildlink3.mk"
.include "../../graphics/gd/buildlink3.mk"
.include "../../print/pdflib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|