blob: 926381fbf6ad0d4dd1de5a22f5e54a555ef9633a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# $NetBSD: Makefile,v 1.42 2021/12/08 16:03:54 adam Exp $
DISTNAME= cfitsio-3.47
PKGNAME= ${DISTNAME}0
PKGREVISION= 8
CATEGORIES= devel
MASTER_SITES= http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html
COMMENT= FITS (flexible image transport system) file input and output
# similar; no copyright claim.
LICENSE= isc
GNU_CONFIGURE= YES
USE_LANGUAGES= c # fortran
USE_LIBTOOL= YES
MAKE_JOBS_SAFE= NO
PKGCONFIG_OVERRIDE+= cfitsio.pc.in
BUILD_TARGET= all testprog
INSTALLATION_DIRS= include lib lib/pkgconfig share/doc/cfitsio
CFITSIO_DOCS= cfitsio.pdf cfortran.doc fitsio.pdf fitsio.doc \
fpackguide.pdf quick.pdf
post-build:
cd ${WRKSRC}; \
./testprog > /dev/null; \
${CMP} testprog.fit testprog.std
pre-install:
rm ${WRKSRC}/testprog
post-install:
cd ${WRKSRC}/docs; \
${INSTALL_DATA} ${CFITSIO_DOCS} ${DESTDIR}${PREFIX}/share/doc/cfitsio
.include "../../www/curl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|