diff options
author | glewis <glewis@FreeBSD.org> | 2004-07-14 00:28:56 +0800 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2004-07-14 00:28:56 +0800 |
commit | 759f7f12fba8937746649bc8fc4f7dc5d7a9bd20 (patch) | |
tree | eff7a743e60ee2532ddd4ee318870151e6b7ccf7 /math/gnuplot | |
parent | 7b9eb2ba70df6a6ea97d0de7a8baa050bdeb30c0 (diff) | |
download | freebsd-ports-gnome-759f7f12fba8937746649bc8fc4f7dc5d7a9bd20.tar.gz freebsd-ports-gnome-759f7f12fba8937746649bc8fc4f7dc5d7a9bd20.tar.zst freebsd-ports-gnome-759f7f12fba8937746649bc8fc4f7dc5d7a9bd20.zip |
. Sort OPTIONS and the associated sections that deal with them.
. Add a GD option that compile gd support into gnuplot.
Prompted by: Chris Burkert <chris@chrisburkert.de>
Diffstat (limited to 'math/gnuplot')
-rw-r--r-- | math/gnuplot/Makefile | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/math/gnuplot/Makefile b/math/gnuplot/Makefile index f3be049b3f1c..f2a8513c649d 100644 --- a/math/gnuplot/Makefile +++ b/math/gnuplot/Makefile @@ -18,11 +18,11 @@ COMMENT= A command-driven interactive function plotting program USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ARGS= --without-tutorial --without-linux-vga --without-gd \ - --with-lasergnu +CONFIGURE_ARGS= --without-tutorial --without-linux-vga --with-lasergnu -OPTIONS= PNG "Enable PNG support" on \ - PDF "Enable PDF support" on +OPTIONS= GD "Enable GD support" on \ + PDF "Enable PDF support" on \ + PNG "Enable PNG support" on MAN1= gnuplot.1 lasergnu.1 INFO= gnuplot @@ -51,11 +51,11 @@ CONFIGURE_ARGS+= --without-x PLIST_SUB+= X11:="@comment " .endif -.if defined(WITHOUT_PNG) -CONFIGURE_ARGS+= --without-png +.if defined(WITHOUT_GD) +CONFIGURE_ARGS+= --without-gd .else -LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png -CONFIGURE_ARGS+= --with-png=${LOCALBASE} +LIB_DEPENDS+= gd.4:${PORTSDIR}/graphics/gd +CONFIGURE_ARGS+= --with-gd=${LOCALBASE} .endif .if defined(WITHOUT_PDF) @@ -65,6 +65,13 @@ LIB_DEPENDS+= pdf.7:${PORTSDIR}/print/pdflib CONFIGURE_ARGS+= --with-pdf=${LOCALBASE} .endif +.if defined(WITHOUT_PNG) +CONFIGURE_ARGS+= --without-png +.else +LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png +CONFIGURE_ARGS+= --with-png=${LOCALBASE} +.endif + post-patch: @${REINPLACE_CMD} -e \ 's|)/@PACKAGE@/@PKG_MAJOR@|)|g' ${WRKSRC}/src/Makefile.in |