annotate src/giflib.mk @ 2540:4b9fb17a28c8

update package giflib
author Mark Brand <mabrand@mabrand.nl>
date Mon, 21 May 2012 12:07:04 +0200
parents 4d0f3a9da57e
children f79b2ad2be45
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: 1466
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: 408
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
4 PKG := giflib
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 422
diff changeset
5 $(PKG)_IGNORE :=
2540
4b9fb17a28c8 update package giflib
Mark Brand <mabrand@mabrand.nl>
parents: 2525
diff changeset
6 $(PKG)_CHECKSUM := bc942711f75de7d8539f79be34d69c0d53c381c1
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
7 $(PKG)_SUBDIR := giflib-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
8 $(PKG)_FILE := giflib-$($(PKG)_VERSION).tar.bz2
2540
4b9fb17a28c8 update package giflib
Mark Brand <mabrand@mabrand.nl>
parents: 2525
diff changeset
9 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/giflib/giflib-4.x/$($(PKG)_FILE)
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
10 $(PKG)_DEPS := gcc
151
0f1fe7c7ab35 translated package: giflib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11
0f1fe7c7ab35 translated package: giflib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2365
diff changeset
13 $(WGET) -q -O- 'http://sourceforge.net/projects/giflib/files/giflib 4.x/' | \
1466
2726fbef533c improved update script of all remaining SourceForge packages
Volker Grabsch <vog@notjusthosting.com>
parents: 1120
diff changeset
14 $(SED) -n 's,.*/giflib-\([0-9][^"]*\)/".*,\1,p' | \
2726fbef533c improved update script of all remaining SourceForge packages
Volker Grabsch <vog@notjusthosting.com>
parents: 1120
diff changeset
15 head -1
151
0f1fe7c7ab35 translated package: giflib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 endef
0f1fe7c7ab35 translated package: giflib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17
0f1fe7c7ab35 translated package: giflib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 define $(PKG)_BUILD
0f1fe7c7ab35 translated package: giflib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 cd '$(1)' && ./configure \
0f1fe7c7ab35 translated package: giflib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 --host='$(TARGET)' \
2540
4b9fb17a28c8 update package giflib
Mark Brand <mabrand@mabrand.nl>
parents: 2525
diff changeset
21 --build="`config.guess`" \
4b9fb17a28c8 update package giflib
Mark Brand <mabrand@mabrand.nl>
parents: 2525
diff changeset
22 --prefix='$(PREFIX)/$(TARGET)' \
151
0f1fe7c7ab35 translated package: giflib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
23 --disable-shared \
1094
a4ae064a6db1 bugfix: open files in binary mode in package giflib (by Dmitry Groshev)
Volker Grabsch <vog@notjusthosting.com>
parents: 714
diff changeset
24 --without-x \
a4ae064a6db1 bugfix: open files in binary mode in package giflib (by Dmitry Groshev)
Volker Grabsch <vog@notjusthosting.com>
parents: 714
diff changeset
25 CPPFLAGS='-D_OPEN_BINARY'
151
0f1fe7c7ab35 translated package: giflib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26 $(MAKE) -C '$(1)/lib' -j '$(JOBS)' install
0f1fe7c7ab35 translated package: giflib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 endef