annotate src/cfitsio.mk @ 3694:193fbb6106e0

update checksum for cfitsio
author John W. Eaton <jwe@octave.org>
date Sat, 23 Aug 2014 10:14:49 -0400
parents 26e3a441d573
children d95b8b84cea7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3163
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
1 # This file is part of MXE.
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
2 # See index.html for further information.
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
3
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
4 PKG := cfitsio
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
3619
26e3a441d573 cfitsio: update to version 3370.
John Donoghue
parents: 3480
diff changeset
6 $(PKG)_VERSION := 3370
3694
193fbb6106e0 update checksum for cfitsio
John W. Eaton <jwe@octave.org>
parents: 3619
diff changeset
7 $(PKG)_CHECKSUM := 48bd6389dcff3228508eec70384f2cae3a88ff32
3163
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
8 $(PKG)_SUBDIR := $(PKG)
3619
26e3a441d573 cfitsio: update to version 3370.
John Donoghue
parents: 3480
diff changeset
9 $(PKG)_FILE := $(PKG)$($(PKG)_VERSION).tar.gz
26e3a441d573 cfitsio: update to version 3370.
John Donoghue
parents: 3480
diff changeset
10 $(PKG)_URL := ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/$($(PKG)_FILE)
3163
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
11 $(PKG)_DEPS :=
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
12
3182
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
13 $(PKG)_MAKE_FLAGS :=
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
14 ifeq ($(BUILD_SHARED),yes)
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
15 $(PKG)_MAKE_FLAGS += shared
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
16 endif
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
17
3163
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
18 define $(PKG)_UPDATE
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
19 echo 'Warning: Updates are temporarily disabled for package cfitsio.' >&2;
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
20 echo $(cfitsio_VERSION)
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
21 endef
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
22
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
23 ifeq ($(MXE_SYSTEM),msvc)
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
24 define $(PKG)_BUILD
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
25 $(SED) -i 's/cfitsio\.dll/$(LIBRARY_PREFIX)cfitsio$(LIBRARY_SUFFIX).dll/g' '$(1)/makefile.vcc'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
26 cd '$(1)' && env -u MAKE -u MAKEFLAGS nmake -f makefile.vcc
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
27 $(SED) -e 's#@prefix@#$(HOST_PREFIX)#' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
28 -e 's#@exec_prefix@#$${prefix}#' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
29 -e 's#@libdir@#$${exec_prefix}/lib#' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
30 -e 's#@includedir@#$${prefix}/include#' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
31 -e 's#@LIBS@##' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
32 -e '/^Libs\.private:/ { s#-lm\>##; }' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
33 -e 's#@CFITSIO_MAJOR@#$(word 1,$(subst ., ,$($(PKG)_VERSION)))#' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
34 -e 's#@CFITSIO_MINOR@#$(word 2,$(subst ., ,$($(PKG)_VERSION)))#' \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
35 '$(1)/cfitsio.pc.in' > '$(1)/cfitsio.pc'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
36 $(INSTALL) -d '$(HOST_BINDIR)'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
37 $(INSTALL) '$(1)/$(LIBRARY_PREFIX)cfitsio$(LIBRARY_SUFFIX).dll' '$(HOST_BINDIR)'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
38 $(INSTALL) -d '$(HOST_LIBDIR)'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
39 $(INSTALL) '$(1)/cfitsio.lib' '$(HOST_LIBDIR)'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
40 $(INSTALL) -d '$(HOST_LIBDIR)/pkgconfig'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
41 $(INSTALL) '$(1)/cfitsio.pc' '$(HOST_LIBDIR)/pkgconfig'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
42 $(INSTALL) -d '$(HOST_INCDIR)'
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
43 for f in fitsio.h fitsio2.h longnam.h drvrsmem.h; do \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
44 $(INSTALL) "$(1)/$$f" '$(HOST_INCDIR)'; \
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
45 done
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
46 endef
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
47 else
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
48 define $(PKG)_BUILD
3182
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
49 cd '$(1)' && '$(1)/configure' \
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
50 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
51 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
52 --prefix='$(HOST_PREFIX)'
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
53 $(MAKE) -C '$(1)' -j '$(JOBS)' $($(PKG)_MAKE_FLAGS)
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
54 $(MAKE) -C '$(1)' -j 1 install
23a5b6df3061 Update cfitsio for mingw build
John Donoghue <john.donoghue@ieee.org>
parents: 3163
diff changeset
55
3163
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
56 endef
18c5fa5ce861 Add CFITSIO module (currently only compiles with MSVC)
Michael Goffioul <michael.goffioul@gmail.com>
parents:
diff changeset
57 endif