aboutsummaryrefslogtreecommitdiffstats
path: root/astro/xplanet/Makefile
diff options
context:
space:
mode:
authorsem <sem@FreeBSD.org>2004-07-24 03:31:03 +0800
committersem <sem@FreeBSD.org>2004-07-24 03:31:03 +0800
commite6a5657e689ee6247f73014aaf5f51ff391b8e7e (patch)
tree65359bdabab4835965915b67a88db208977241f2 /astro/xplanet/Makefile
parent012f6330d4ce2deb59609930627f2e4f52e3bb26 (diff)
downloadfreebsd-ports-gnome-e6a5657e689ee6247f73014aaf5f51ff391b8e7e.tar.gz
freebsd-ports-gnome-e6a5657e689ee6247f73014aaf5f51ff391b8e7e.tar.zst
freebsd-ports-gnome-e6a5657e689ee6247f73014aaf5f51ff391b8e7e.zip
- Add forgotten WITHOUT_PNM knob
- Typo: WITH_TIFF should really be WITHOUT_TIFF PR: ports/69497 Submitted by: maintainer
Diffstat (limited to 'astro/xplanet/Makefile')
-rw-r--r--astro/xplanet/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/astro/xplanet/Makefile b/astro/xplanet/Makefile
index ad04899b731c..8a753435407f 100644
--- a/astro/xplanet/Makefile
+++ b/astro/xplanet/Makefile
@@ -58,7 +58,14 @@ LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png
CONFIGURE_ARGS+= --without-png
.endif
-.if !defined(WITH_TIFF)
+.if !defined(WITHOUT_PNM)
+CONFIGURE_ARGS+= --with-pnm
+LIB_DEPENDS+= netpbm.1:${PORTSDIR}/graphics/netpbm
+.else
+CONFIGURE_ARGS+= --without-pnm
+.endif
+
+.if !defined(WITHOUT_TIFF)
CONFIGURE_ARGS+= --with-tiff
LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff
.else