annotate src/gdal.mk @ 2333:f653602a0500

Rebrand to new project name MXE
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 28 Mar 2012 15:46:58 +0200
parents 0f50afdf5866
children f48c5b085a38
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: 2270
diff changeset
1 # This file is part of MXE.
714
29f1ba4559ae point consequently to "doc/index.html" instead of "doc/index.html or doc/README"
Volker Grabsch <vog@notjusthosting.com>
parents: 694
diff changeset
2 # See doc/index.html for further information.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 377
diff changeset
3
168
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 # GDAL
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
5 PKG := gdal
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 432
diff changeset
6 $(PKG)_IGNORE :=
2205
8d3a639eccec update package gdal
Mark Brand <mabrand@mabrand.nl>
parents: 2189
diff changeset
7 $(PKG)_VERSION := 1.9.0
8d3a639eccec update package gdal
Mark Brand <mabrand@mabrand.nl>
parents: 2189
diff changeset
8 $(PKG)_CHECKSUM := e2eaaf0fba39137b40c0d3069ac41dfb6f3c76db
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
9 $(PKG)_SUBDIR := gdal-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
10 $(PKG)_FILE := gdal-$($(PKG)_VERSION).tar.gz
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
11 $(PKG)_WEBSITE := http://www.gdal.org/
1456
c92395bc3a88 fix download URLs of package: gdal geos libgeotiff proj tiff
Volker Grabsch <vog@notjusthosting.com>
parents: 1447
diff changeset
12 $(PKG)_URL := http://download.osgeo.org/gdal/$($(PKG)_FILE)
c92395bc3a88 fix download URLs of package: gdal geos libgeotiff proj tiff
Volker Grabsch <vog@notjusthosting.com>
parents: 1447
diff changeset
13 $(PKG)_URL_2 := ftp://ftp.remotesensing.org/gdal/$($(PKG)_FILE)
2270
0f50afdf5866 rename project libgta to gta
Mark Brand <mabrand@mabrand.nl>
parents: 2269
diff changeset
14 $(PKG)_DEPS := gcc zlib libpng tiff libgeotiff jpeg jasper giflib expat sqlite curl geos postgresql gta
168
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 define $(PKG)_UPDATE
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 wget -q -O- 'http://trac.osgeo.org/gdal/wiki/DownloadSource' | \
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 $(SED) -n 's,.*gdal-\([0-9][^>]*\)\.tar.*,\1,p' | \
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 head -1
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 endef
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
22 define $(PKG)_BUILD
744
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
23 # The option '--without-threads' means native win32 threading without pthread.
168
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 cd '$(1)' && ./configure \
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 --host='$(TARGET)' \
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 --disable-shared \
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 --prefix='$(PREFIX)/$(TARGET)' \
744
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
28 --with-bsb \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
29 --with-grib \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
30 --with-ogr \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
31 --with-vfk \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
32 --with-pam \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
33 --without-threads \
181
edcc5f6538d5 package gdal: explicitly mention zlib, enable threading support
Volker Grabsch <vog@notjusthosting.com>
parents: 177
diff changeset
34 --with-libz='$(PREFIX)/$(TARGET)' \
1622
8d778d0707ed package gdal: libpng 1.5 compatibility
Mark Brand <mabrand@mabrand.nl>
parents: 1618
diff changeset
35 --with-png='$(PREFIX)/$(TARGET)' \
168
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
36 --with-libtiff='$(PREFIX)/$(TARGET)' \
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
37 --with-geotiff='$(PREFIX)/$(TARGET)' \
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
38 --with-jpeg='$(PREFIX)/$(TARGET)' \
744
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
39 --with-jasper='$(PREFIX)/$(TARGET)' \
168
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
40 --with-gif='$(PREFIX)/$(TARGET)' \
188
11829aaff7d3 new package: expat
Volker Grabsch <vog@notjusthosting.com>
parents: 182
diff changeset
41 --with-expat='$(PREFIX)/$(TARGET)' \
744
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
42 --with-sqlite3='$(PREFIX)/$(TARGET)' \
168
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
43 --with-curl='$(PREFIX)/$(TARGET)/bin/curl-config' \
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
44 --with-geos='$(PREFIX)/$(TARGET)/bin/geos-config' \
794
4125ce84f068 bugfix: provide the full path to pg_config in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 782
diff changeset
45 --with-pg='$(PREFIX)/bin/$(TARGET)-pg_config' \
2269
e34b54a07244 Make GDAL depend on libgta.
Martin Lambers <marlam@marlam.de>
parents: 2205
diff changeset
46 --with-gta='$(PREFIX)/$(TARGET)' \
939
096553bf7955 disable odbc support of package gdal (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents: 794
diff changeset
47 --without-odbc \
744
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
48 --without-static-proj4 \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
49 --without-xerces \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
50 --without-grass \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
51 --without-libgrass \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
52 --without-spatialite \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
53 --without-cfitsio \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
54 --without-pcraster \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
55 --without-netcdf \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
56 --without-pcidsk \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
57 --without-ogdi \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
58 --without-fme \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
59 --without-hdf4 \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
60 --without-hdf5 \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
61 --without-ecw \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
62 --without-kakadu \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
63 --without-mrsid \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
64 --without-jp2mrsid \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
65 --without-msg \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
66 --without-oci \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
67 --without-mysql \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
68 --without-ingres \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
69 --without-dods-root \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
70 --without-dwgdirect \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
71 --without-dwg-plt \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
72 --without-idb \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
73 --without-sde \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
74 --without-epsilon \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
75 --without-perl \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
76 --without-php \
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
77 --without-ruby \
168
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
78 --without-python \
744
b09aadb3810b make all dependencies explicit in package gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
79 --without-macosx-framework \
2189
dc1705c24517 package gdal gdk-pixbuf libpano13: tiff 4 detection workaround
Mark Brand <mabrand@mabrand.nl>
parents: 1946
diff changeset
80 LIBS="-ljpeg -lsecur32 `'$(TARGET)-pkg-config' --libs openssl libtiff-4`"
182
d1678aced603 disable parallel builds for packages pthreads, winpcap and gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 181
diff changeset
81 $(MAKE) -C '$(1)' -j 1 lib-target
d1678aced603 disable parallel builds for packages pthreads, winpcap and gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 181
diff changeset
82 $(MAKE) -C '$(1)' -j 1 install-lib
d1678aced603 disable parallel builds for packages pthreads, winpcap and gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 181
diff changeset
83 $(MAKE) -C '$(1)/port' -j 1 install
d1678aced603 disable parallel builds for packages pthreads, winpcap and gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 181
diff changeset
84 $(MAKE) -C '$(1)/gcore' -j 1 install
d1678aced603 disable parallel builds for packages pthreads, winpcap and gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 181
diff changeset
85 $(MAKE) -C '$(1)/frmts' -j 1 install
d1678aced603 disable parallel builds for packages pthreads, winpcap and gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 181
diff changeset
86 $(MAKE) -C '$(1)/alg' -j 1 install
d1678aced603 disable parallel builds for packages pthreads, winpcap and gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 181
diff changeset
87 $(MAKE) -C '$(1)/ogr' -j 1 install OGR_ENABLED=
d1678aced603 disable parallel builds for packages pthreads, winpcap and gdal
Volker Grabsch <vog@notjusthosting.com>
parents: 181
diff changeset
88 $(MAKE) -C '$(1)/apps' -j 1 install BIN_LIST=
1946
c6831f324cc3 improved coding style regarding creation of symlinks
Volker Grabsch <vog@notjusthosting.com>
parents: 1935
diff changeset
89 ln -sf '$(PREFIX)/$(TARGET)/bin/gdal-config' '$(PREFIX)/bin/$(TARGET)-gdal-config'
168
df943f9448f7 translated package: gdal
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
90 endef