annotate src/libpng.mk @ 1554:3b49412a7e1b

upgrade libpng to 1.5.1beta6
author Mark Brand <mabrand@mabrand.nl>
date Fri, 21 Jan 2011 11:26:18 +0100
parents cf541f507c71
children 8f4c31ee4441
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
641
dab071eac9c0 simplified file markers
Volker Grabsch <vog@notjusthosting.com>
parents: 634
diff changeset
1 # This file is part of mingw-cross-env.
714
29f1ba4559ae point consequently to "doc/index.html" instead of "doc/index.html or doc/README"
Volker Grabsch <vog@notjusthosting.com>
parents: 641
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: 409
diff changeset
3
148
3a3fd9c5b5c1 translated package: libpng
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 # libpng
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
5 PKG := libpng
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 445
diff changeset
6 $(PKG)_IGNORE :=
1554
3b49412a7e1b upgrade libpng to 1.5.1beta6
Mark Brand <mabrand@mabrand.nl>
parents: 1553
diff changeset
7 $(PKG)_VERSION := 1.5.1beta06
3b49412a7e1b upgrade libpng to 1.5.1beta6
Mark Brand <mabrand@mabrand.nl>
parents: 1553
diff changeset
8 $(PKG)_CHECKSUM := ce8341e91e2c4affd07d5c5a60aa4a45d6dc7dbe
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
9 $(PKG)_SUBDIR := libpng-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
10 $(PKG)_FILE := libpng-$($(PKG)_VERSION).tar.bz2
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
11 $(PKG)_WEBSITE := http://www.libpng.org/
1488
51315d3e9bf9 upgrade download URL of package libpng
Volker Grabsch <vog@notjusthosting.com>
parents: 1189
diff changeset
12 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)$(subst .,,$(call SHORT_PKG_VERSION,$(PKG)))/$($(PKG)_VERSION)/$($(PKG)_FILE)
51315d3e9bf9 upgrade download URL of package libpng
Volker Grabsch <vog@notjusthosting.com>
parents: 1189
diff changeset
13 $(PKG)_URL_2 := ftp://ftp.simplesystems.org/pub/$(PKG)/png/src/$($(PKG)_FILE)
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
14 $(PKG)_DEPS := gcc zlib
148
3a3fd9c5b5c1 translated package: libpng
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15
3a3fd9c5b5c1 translated package: libpng
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 define $(PKG)_UPDATE
418
d135c12b6411 updated version recognition of package libpng
Volker Grabsch <vog@notjusthosting.com>
parents: 417
diff changeset
17 wget -q -O- 'http://libpng.git.sourceforge.net/git/gitweb.cgi?p=libpng/libpng;a=tags' | \
408
413750a629be improved version recognition for sourceforge packages
Volker Grabsch <vog@notjusthosting.com>
parents: 377
diff changeset
18 grep '<a class="list name"' | \
840
77ecd36317c2 corrected version recognition regexes of many packages
Volker Grabsch <vog@notjusthosting.com>
parents: 820
diff changeset
19 $(SED) -n 's,.*<a[^>]*>v\([0-9][^<]*\)<.*,\1,p' | \
563
f32c021ce94a avoid alpha versions of package libpng
Volker Grabsch <vog@notjusthosting.com>
parents: 538
diff changeset
20 grep -v alpha | \
408
413750a629be improved version recognition for sourceforge packages
Volker Grabsch <vog@notjusthosting.com>
parents: 377
diff changeset
21 grep -v beta | \
538
437dd08f4fa4 avoid rc (release candidate) versions of package libpng
Volker Grabsch <vog@notjusthosting.com>
parents: 449
diff changeset
22 grep -v rc | \
842
6ed03d75a7ec corrected regexes in exceptions rules of version recognition
Volker Grabsch <vog@notjusthosting.com>
parents: 840
diff changeset
23 grep -v '^1\.2\.' | \
148
3a3fd9c5b5c1 translated package: libpng
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 head -1
3a3fd9c5b5c1 translated package: libpng
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
25 endef
3a3fd9c5b5c1 translated package: libpng
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
26
3a3fd9c5b5c1 translated package: libpng
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 define $(PKG)_BUILD
3a3fd9c5b5c1 translated package: libpng
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
28 cd '$(1)' && ./configure \
3a3fd9c5b5c1 translated package: libpng
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
29 --host='$(TARGET)' \
3a3fd9c5b5c1 translated package: libpng
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
30 --disable-shared \
3a3fd9c5b5c1 translated package: libpng
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
31 --prefix='$(PREFIX)/$(TARGET)'
3a3fd9c5b5c1 translated package: libpng
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
32 $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
3a3fd9c5b5c1 translated package: libpng
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
33 endef