diff options
author | wxs <wxs@FreeBSD.org> | 2013-01-09 00:31:50 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2013-01-09 00:31:50 +0800 |
commit | 108d5f664775067d58eaeaad36590c9bc66f76b2 (patch) | |
tree | 2431dbb0e9cb699aa74f9b847523b84816c602bf /astro | |
parent | 833eab876231ea86166af205a3755ffef08c58c5 (diff) | |
download | freebsd-ports-graphics-108d5f664775067d58eaeaad36590c9bc66f76b2.tar.gz freebsd-ports-graphics-108d5f664775067d58eaeaad36590c9bc66f76b2.tar.zst freebsd-ports-graphics-108d5f664775067d58eaeaad36590c9bc66f76b2.zip |
Trim header.
Convert to new options.
PR: ports/173818
Submitted by: Chris Petrik <c.petrik.sosa@gmail.com>
Approved by: maintainer timeout
Diffstat (limited to 'astro')
-rw-r--r-- | astro/wcslib/Makefile | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/astro/wcslib/Makefile b/astro/wcslib/Makefile index cc5e90f454e..35e1bcd9b7c 100644 --- a/astro/wcslib/Makefile +++ b/astro/wcslib/Makefile @@ -1,8 +1,4 @@ -# ex:ts=4 -# New ports collection makefile for: wcslib -# Date created: Wed Jul 15 10:09:45 EST 2009 -# Whom: Tony Maher <tonymaher@optusnet.com.au> -# +# Created by: Tony Maher <tonymaher@optusnet.com.au> # $FreeBSD$ PORTNAME= wcslib @@ -25,20 +21,23 @@ MAN1= fitshdr.1 # See makedefs.in which describes why you want to set the extra support. # For most users it will not be required. -OPTIONS= CFITSIO "Add cfitsio support (for tests only)" Off \ - PGPLOT "Add pgplot support (for tests only)" Off +OPTIONS_DEFINE= CFITSIO PGPLOT +CFITSIO_DESC= Add cfitsio support (for tests only) +PGPLOT_DESC= Add pgplot support (for tests only) + +.include <bsd.port.options.mk> # The configure script unconditionally searches for the cftisio library # and uses it if found. -.if defined(WITH_CFITSIO) || exists(${LOCALBASE}/lib/libcfitsio.so) +.if ${PORT_OPTIONS:MCFITSIO} || exists(${LOCALBASE}/lib/libcfitsio.so) PLIST_SUB+= HPXCVT="" LIB_DEPENDS+= cfitsio:${PORTSDIR}/astro/cfitsio .else PLIST_SUB+= HPXCVT="@comment " .endif -.if defined(WITH_PGPLOT) +.if ${PORT_OPTIONS:MPGPLOT} LIB_DEPENDS+= pgplot.5:${PORTSDIR}/graphics/pgplot .endif @@ -47,7 +46,7 @@ post-patch: ${WRKSRC}/GNUmakefile post-install: -.if !defined(NOPORTDOCS) +.if ! ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} (cd ${WRKSRC}/ && ${INSTALL_DATA} CHANGES README COPYING COPYING.LESSER wcslib.pdf ${DOCSDIR}) @${MKDIR} ${DOCSDIR}/html |