diff options
author | Sergey Matveychuk <sem@FreeBSD.org> | 2004-07-24 03:31:03 +0800 |
---|---|---|
committer | Sergey Matveychuk <sem@FreeBSD.org> | 2004-07-24 03:31:03 +0800 |
commit | 3dde34ca38bf5bdfca332d8c8154f5887f5abce1 (patch) | |
tree | 84cce7f5560008926d9e0be11e1012b62c683f3c /astro/xplanet | |
parent | 4e31eda9279315019188fe76ebfc19f700efd14b (diff) | |
download | freebsd-ports-gnome-3dde34ca38bf5bdfca332d8c8154f5887f5abce1.tar.gz freebsd-ports-gnome-3dde34ca38bf5bdfca332d8c8154f5887f5abce1.tar.zst freebsd-ports-gnome-3dde34ca38bf5bdfca332d8c8154f5887f5abce1.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')
-rw-r--r-- | astro/xplanet/Makefile | 9 |
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 |