c487cb967a
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
31 lines
840 B
Makefile
31 lines
840 B
Makefile
# $NetBSD: Makefile,v 1.11 2004/10/03 00:13:25 tv Exp $
|
|
|
|
DISTNAME= cfitsio2500
|
|
PKGNAME= cfitsio-2.500
|
|
PKGREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/
|
|
|
|
MAINTAINER= tron@NetBSD.org
|
|
HOMEPAGE= http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html
|
|
COMMENT= FITS (flexible image transport system) file input and output
|
|
|
|
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV:C/-.*//}
|
|
GNU_CONFIGURE= YES
|
|
USE_LIBTOOL= YES
|
|
|
|
ALL_TARGET= all testprog
|
|
|
|
post-build:
|
|
cd ${WRKSRC}; \
|
|
./testprog | diff - testprog.out; \
|
|
cmp testprog.fit testprog.std
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/cfitsio
|
|
cd ${WRKSRC}; \
|
|
${LIBTOOL} ${INSTALL_DATA} libcfitsio.la ${PREFIX}/lib; \
|
|
${INSTALL_DATA} *.h ${PREFIX}/include; \
|
|
${INSTALL_DATA} fitsio.doc ${PREFIX}/share/doc/cfitsio
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|