annotate src/geos.mk @ 4561:5353c3cb21bf

geos: update to v3.6.2 * src/geos.mk: update version, checksum
author John D
date Thu, 30 Nov 2017 08:23:59 -0500
parents f4427fcc8b30
children e08c581e84b0
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: 2203
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: 397
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 303
diff changeset
4 PKG := geos
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 420
diff changeset
5 $(PKG)_IGNORE :=
4561
5353c3cb21bf geos: update to v3.6.2
John D
parents: 4430
diff changeset
6 $(PKG)_VERSION := 3.6.2
5353c3cb21bf geos: update to v3.6.2
John D
parents: 4430
diff changeset
7 $(PKG)_CHECKSUM := b9d0578c6b5308cf05a3dd8873802f9862c04291
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 303
diff changeset
8 $(PKG)_SUBDIR := geos-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 303
diff changeset
9 $(PKG)_FILE := geos-$($(PKG)_VERSION).tar.bz2
1456
c92395bc3a88 fix download URLs of package: gdal geos libgeotiff proj tiff
Volker Grabsch <vog@notjusthosting.com>
parents: 883
diff changeset
10 $(PKG)_URL := http://download.osgeo.org/geos/$($(PKG)_FILE)
c92395bc3a88 fix download URLs of package: gdal geos libgeotiff proj tiff
Volker Grabsch <vog@notjusthosting.com>
parents: 883
diff changeset
11 $(PKG)_URL_2 := ftp://ftp.remotesensing.org/geos/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3031
diff changeset
12 $(PKG)_DEPS :=
165
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 define $(PKG)_UPDATE
4384
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4278
diff changeset
15 $(WGET) -q -O- 'http://download.osgeo.org/geos/' | \
165
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 $(SED) -n 's,.*geos-\([0-9][^>]*\)\.tar.*,\1,p' | \
4384
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4278
diff changeset
17 tail -1
165
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 endef
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 define $(PKG)_BUILD
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 cd '$(1)' && ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
22 $(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: 2644
diff changeset
23 $(ENABLE_SHARED_OR_STATIC) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
24 --prefix='$(HOST_PREFIX)'
165
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
1828
04215d0b04a9 test program for package geos
Volker Grabsch <vog@notjusthosting.com>
parents: 1827
diff changeset
26
3031
951da75fd09c improve handling of cross tool prefix
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
27 '$(MXE_CC)' \
1828
04215d0b04a9 test program for package geos
Volker Grabsch <vog@notjusthosting.com>
parents: 1827
diff changeset
28 -W -Wall -Werror -ansi -pedantic \
3014
b6c7244a2f66 Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
29 '$(2).c' -o '$(HOST_BINDIR)/test-geos.exe' \
b6c7244a2f66 Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
John W. Eaton <jwe@octave.org>
parents: 3013
diff changeset
30 -lgeos_c `'$(HOST_BINDIR)/geos-config' --cflags --libs` -lstdc++
165
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31 endef