Mon May 10 06:22:03 2010 UTC ()
Darwin also has NetBSD's readline.


(minskim)
diff -r1.18 -r1.19 pkgsrc/graphics/gnuplot/Makefile.common

cvs diff -r1.18 -r1.19 pkgsrc/graphics/gnuplot/Attic/Makefile.common (expand / switch to unified diff)

--- pkgsrc/graphics/gnuplot/Attic/Makefile.common 2010/02/19 14:09:58 1.18
+++ pkgsrc/graphics/gnuplot/Attic/Makefile.common 2010/05/10 06:22:03 1.19
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile.common,v 1.18 2010/02/19 14:09:58 asau Exp $ 1# $NetBSD: Makefile.common,v 1.19 2010/05/10 06:22:03 minskim Exp $
2 2
3# used by ../../graphics/gnuplot-nox11 3# used by ../../graphics/gnuplot-nox11
4 4
5DISTNAME= gnuplot-4.2.6 5DISTNAME= gnuplot-4.2.6
6CATEGORIES+= graphics 6CATEGORIES+= graphics
7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gnuplot/} 7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gnuplot/}
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://gnuplot.sourceforge.net/ 10HOMEPAGE= http://gnuplot.sourceforge.net/
11COMMENT= Portable interactive, function plotting utility 11COMMENT= Portable interactive, function plotting utility
12 12
13PATCHDIR= ${.CURDIR}/../../graphics/gnuplot/patches 13PATCHDIR= ${.CURDIR}/../../graphics/gnuplot/patches
14DISTINFO_FILE= ${.CURDIR}/../../graphics/gnuplot/distinfo 14DISTINFO_FILE= ${.CURDIR}/../../graphics/gnuplot/distinfo
@@ -19,20 +19,20 @@ PKG_DESTDIR_SUPPORT= user-destdir @@ -19,20 +19,20 @@ PKG_DESTDIR_SUPPORT= user-destdir
19GNU_CONFIGURE= YES 19GNU_CONFIGURE= YES
20 20
21USE_TOOLS+= makeinfo 21USE_TOOLS+= makeinfo
22INFO_FILES= # PLIST 22INFO_FILES= # PLIST
23 23
24CONFIGURE_ARGS+= --enable-history-file 24CONFIGURE_ARGS+= --enable-history-file
25CONFIGURE_ARGS+= --with-plot=${PREFIX:Q} 25CONFIGURE_ARGS+= --with-plot=${PREFIX:Q}
26CONFIGURE_ARGS+= --without-lisp-files 26CONFIGURE_ARGS+= --without-lisp-files
27CONFIGURE_ARGS+= --without-tutorial 27CONFIGURE_ARGS+= --without-tutorial
28 28
29# Use BSD editline wherever possible: 29# Use BSD editline wherever possible:
30.include "../../mk/bsd.prefs.mk" 30.include "../../mk/bsd.prefs.mk"
31 31
32.if !empty(OPSYS:M*BSD) || ${OPSYS} == "DragonFly" 32.if !empty(OPSYS:M*BSD) || ${OPSYS} == "DragonFly" || ${OPSYS} == "Darwin"
33CONFIGURE_ARGS+= --with-readline=bsd 33CONFIGURE_ARGS+= --with-readline=bsd
34.include "../../mk/curses.buildlink3.mk" 34.include "../../mk/curses.buildlink3.mk"
35.else 35.else
36CONFIGURE_ARGS+= --with-readline=${BUILDLINK_PREFIX.readline} 36CONFIGURE_ARGS+= --with-readline=${BUILDLINK_PREFIX.readline}
37.include "../../devel/readline/buildlink3.mk" 37.include "../../devel/readline/buildlink3.mk"
38.endif 38.endif