diff options
author | cwt <cwt@FreeBSD.org> | 1997-09-01 07:41:23 +0000 |
---|---|---|
committer | cwt <cwt@FreeBSD.org> | 1997-09-01 07:41:23 +0000 |
commit | a7b4b2632e11aaa4538130ec08c03694f56d1b66 (patch) | |
tree | 4ba4cdcf2857793fcc05f58b48d2550ba358b07a /math/gnuplot | |
parent | 49bf204bf5e95aa87c2bd5634c512387e260bdf7 (diff) | |
download | FreeBSD-ports-a7b4b2632e11aaa4538130ec08c03694f56d1b66.zip FreeBSD-ports-a7b4b2632e11aaa4538130ec08c03694f56d1b66.tar.gz |
Explicitly specify --libdir as ${PREFIX}/lib in the CONFIGURE_ARGS so
that configure can be adjusted to probe the right place for -lpng (and
subsequently provide the correct LDFLAGS in the Makefiles it creates.)
Diffstat (limited to 'math/gnuplot')
-rw-r--r-- | math/gnuplot/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/math/gnuplot/Makefile b/math/gnuplot/Makefile index 58d7beb..e482a0d 100644 --- a/math/gnuplot/Makefile +++ b/math/gnuplot/Makefile @@ -3,7 +3,7 @@ # Date created: 11 January 1997 # Whom: chuckr # -# $Id: Makefile,v 1.11 1997/07/19 01:21:09 chuckr Exp $ +# $Id: Makefile,v 1.12 1997/07/22 02:22:31 asami Exp $ # DISTNAME= gnuplot-beta336 @@ -17,7 +17,10 @@ LIB_DEPENDS= png\\.0\\.[7-9]:${PORTSDIR}/graphics/png WRKSRC= ${WRKDIR}/gnuplot GNU_CONFIGURE= yes -CONFIGURE_ARGS= --exec-prefix=${PREFIX} --with-x --without-linux-vga --with-gnu-readline --with-lasergnu --with-png --includedir=${PREFIX}/include +CONFIGURE_ARGS= --exec-prefix=${PREFIX} \ + --includedir=${PREFIX}/include --libdir=${PREFIX}/lib \ + --with-x --without-linux-vga \ + --with-gnu-readline --with-lasergnu --with-png MAN1= gnuplot.1 lasergnu.1 |