diff options
author | rakuco <rakuco@FreeBSD.org> | 2014-05-09 06:41:00 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2014-05-09 06:41:00 +0800 |
commit | 09f54e1577c158c952e83b131ff70891617ea4fb (patch) | |
tree | 1fb02e546c92b18cdc191f675c8206cbba79d0be /astro | |
parent | 9da47b6cb7059ccc82d2850e33166b9cbe0bacdd (diff) | |
download | freebsd-ports-graphics-09f54e1577c158c952e83b131ff70891617ea4fb.tar.gz freebsd-ports-graphics-09f54e1577c158c952e83b131ff70891617ea4fb.tar.zst freebsd-ports-graphics-09f54e1577c158c952e83b131ff70891617ea4fb.zip |
- Fix the plist when the CFITSIO option is on.
- Use the new OPTIONS helpers to simplify the Makefile.
Related to both, also stop automatically turning the CFITSIO option on when
libcfitsio.so is installed: wcslib has had proper --with{out}-cfitsio
options since version 4.4.4.
This will turn off CFITSIO support for most people and indirectly fix their
builds with astro/cfitsio-3.360-1 [1]. If people do choose to have it on,
ports/189487 needs to be committed, otherwise there will be plist errors
because wcslib's configure script will not be able to detect that cfitsio is
installed and can be used.
[1] http://lists.freebsd.org/pipermail/freebsd-ports/2014-May/092070.html
Diffstat (limited to 'astro')
-rw-r--r-- | astro/wcslib/Makefile | 22 | ||||
-rw-r--r-- | astro/wcslib/pkg-plist | 5 |
2 files changed, 10 insertions, 17 deletions
diff --git a/astro/wcslib/Makefile b/astro/wcslib/Makefile index 0f8376565f7..473aae0040c 100644 --- a/astro/wcslib/Makefile +++ b/astro/wcslib/Makefile @@ -3,7 +3,7 @@ PORTNAME= wcslib PORTVERSION= 4.13.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= astro MASTER_SITES= ftp://ftp.atnf.csiro.au/pub/software/wcslib/ @@ -23,24 +23,14 @@ PLIST_SUB= VERSION="${PORTVERSION}" # For most users it will not be required. OPTIONS_DEFINE= CFITSIO PGPLOT +OPTIONS_SUB= yes 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 ${PORT_OPTIONS:MCFITSIO} || exists(${LOCALBASE}/lib/libcfitsio.so) -PLIST_SUB+= HPXCVT="" -LIB_DEPENDS+= libcfitsio.so:${PORTSDIR}/astro/cfitsio -.else -PLIST_SUB+= HPXCVT="@comment " -.endif - -.if ${PORT_OPTIONS:MPGPLOT} -LIB_DEPENDS+= libpgplot.so:${PORTSDIR}/graphics/pgplot -.endif +CFITSIO_CONFIGURE_WITH= cfitsio +CFITSIO_LIB_DEPENDS= libcfitsio.so:${PORTSDIR}/astro/cfitsio +PGPLOT_CONFIGURE_WITH= pgplot +PGPLOT_LIB_DEPENDS= libpgplot.so:${PORTSDIR}/graphics/pgplot post-patch: @${REINPLACE_CMD} -e 's#%%PKGDIR%%#${STAGEDIR}${PREFIX}/libdata#g' \ diff --git a/astro/wcslib/pkg-plist b/astro/wcslib/pkg-plist index 8008ddc7564..34a1ab7f721 100644 --- a/astro/wcslib/pkg-plist +++ b/astro/wcslib/pkg-plist @@ -1,4 +1,5 @@ -%%HPXCVT%%bin/HPXcvt +%%CFITSIO%%bin/HPXcvt +%%CFITSIO%%bin/wcsware bin/fitshdr include/wcslib include/wcslib-%%VERSION%%/cel.h @@ -29,7 +30,9 @@ lib/libwcs.so lib/libwcs.so.%%VERSION%% lib/libwcs.so.4 libdata/pkgconfig/wcslib.pc +%%CFITSIO%%man/man1/HPXcvt.1.gz man/man1/fitshdr.1.gz +%%CFITSIO%%man/man1/wcsware.1.gz %%PORTDOCS%%%%DOCSDIR%%/html/functions_0x73.html %%PORTDOCS%%%%DOCSDIR%%/html/functions_vars_0x62.html %%PORTDOCS%%%%DOCSDIR%%/html/wcshdr_8h-source.html |