annotate src/tiff.mk @ 3293:cf6f40cededb

Support file list generation in packages. For the following modules: - arpack - blas - build-autoconf - build-automake - build-cmake - build-gperf - build-libtool - build-msvctools - build-pkg-config - build-texinfo - bzip2 - curl - dbus - expat - fftw - fltk - fontconfig - freetype - gettext - glpk - gmp - gnuplot - gnutls - graphicsmagick - hdf5 - jasper - jpeg - lapack - lcms - libgcrypt - libgpg_error - libiconv - libidn - libpng - libssh2 - libxml2 - ncurses - nettle - openssl - pcre - pstoedit - zlib - qhull - qrupdate - qscintilla - qt - readline - suitesparse - texinfo - tiff
author Michael Goffioul <michael.goffioul@gmail.com>
date Sat, 09 Nov 2013 23:28:04 -0500
parents 14afb4dd1939
children 13be64f9f16d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2247
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 306
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
4 PKG := tiff
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 444
diff changeset
5 $(PKG)_IGNORE :=
2780
016ef289a545 update package tiff
Mark Brand <mabrand@mabrand.nl>
parents: 2625
diff changeset
6 $(PKG)_CHECKSUM := 652e97b78f1444237a82cbcfe014310e776eb6f0
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
7 $(PKG)_SUBDIR := tiff-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
8 $(PKG)_FILE := tiff-$($(PKG)_VERSION).tar.gz
1456
c92395bc3a88 fix download URLs of package: gdal geos libgeotiff proj tiff
Volker Grabsch <vog@notjusthosting.com>
parents: 1068
diff changeset
9 $(PKG)_URL := http://download.osgeo.org/libtiff/$($(PKG)_FILE)
c92395bc3a88 fix download URLs of package: gdal geos libgeotiff proj tiff
Volker Grabsch <vog@notjusthosting.com>
parents: 1068
diff changeset
10 $(PKG)_URL_2 := ftp://ftp.remotesensing.org/libtiff/$($(PKG)_FILE)
3102
14afb4dd1939 [MSVC] enable TIFF compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
11 $(PKG)_DEPS := zlib jpeg
14afb4dd1939 [MSVC] enable TIFF compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
12 ifneq ($(MXE_SYSTEM),msvc)
14afb4dd1939 [MSVC] enable TIFF compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
13 $(PKG)_DEPS += xz
14afb4dd1939 [MSVC] enable TIFF compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
14 endif
150
9dd4eddcf968 translated package: tiff
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15
9dd4eddcf968 translated package: tiff
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2365
diff changeset
17 $(WGET) -q -O- 'http://www.remotesensing.org/libtiff/' | \
150
9dd4eddcf968 translated package: tiff
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 $(SED) -n 's,.*>v\([0-9][^<]*\)<.*,\1,p' | \
9dd4eddcf968 translated package: tiff
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 head -1
9dd4eddcf968 translated package: tiff
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 endef
9dd4eddcf968 translated package: tiff
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21
9dd4eddcf968 translated package: tiff
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 define $(PKG)_BUILD
9dd4eddcf968 translated package: tiff
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 cd '$(1)' && ./configure \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2883
diff changeset
24 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
25 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2780
diff changeset
26 $(ENABLE_SHARED_OR_STATIC) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
27 --prefix='$(HOST_PREFIX)' \
3102
14afb4dd1939 [MSVC] enable TIFF compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
28 --without-x && $(CONFIGURE_POST_HOOK)
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3102
diff changeset
29 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= DESTDIR='$(3)'
2883
c5301f967c64 remove installed .la files for tiff
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
30
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3102
diff changeset
31 rm -f '$(3)$(HOST_LIBDIR)/libtiff.la'
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3102
diff changeset
32 rm -f '$(3)$(HOST_LIBDIR)/lib/libtiffxx.la'
150
9dd4eddcf968 translated package: tiff
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
33 endef