annotate src/pixman.mk @ 5893:53a6c7df43f8

Mesa 3D: Update to version 21.1.8. * src/mesa.mk: Update version and checksum. * src/mesa-2-uninitialized.patch: Remove file. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Thu, 16 Sep 2021 22:37:45 +0200
parents cd41c2d17ef3
children 8891d4a21682
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: 2272
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: 409
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
4 PKG := pixman
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 432
diff changeset
5 $(PKG)_IGNORE :=
5429
a0c6433aca80 * src/pixman.mk: update to v0.40.0
John Donoghue <john.donoghue@ieee.org>
parents: 5212
diff changeset
6 $(PKG)_VERSION := 0.40.0
a0c6433aca80 * src/pixman.mk: update to v0.40.0
John Donoghue <john.donoghue@ieee.org>
parents: 5212
diff changeset
7 $(PKG)_CHECKSUM := d7baa6377b6f48e29db011c669788bb1268d08ad
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 265
diff changeset
8 $(PKG)_SUBDIR := pixman-$($(PKG)_VERSION)
5212
3401c6261852 * src/pixman.mk: fix primary url, use .tar.gz file
John Donoghue
parents: 4519
diff changeset
9 $(PKG)_FILE := pixman-$($(PKG)_VERSION).tar.gz
3401c6261852 * src/pixman.mk: fix primary url, use .tar.gz file
John Donoghue
parents: 4519
diff changeset
10 $(PKG)_URL := http://cairographics.org/releases/$($(PKG)_FILE)
4519
58de4f56c797 update most X11 packages to latest version and to use tar.bz2 files
John W. Eaton <jwe@octave.org>
parents: 4292
diff changeset
11 $(PKG)_URL_2 := http://www.x.org/archive/individual/lib/$($(PKG)_FILE)
5454
cd41c2d17ef3 Update dependancies on packages
John Donoghue <john.donoghue@ieee.org>
parents: 5429
diff changeset
12 $(PKG)_DEPS := libpng
260
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 define $(PKG)_UPDATE
5429
a0c6433aca80 * src/pixman.mk: update to v0.40.0
John Donoghue <john.donoghue@ieee.org>
parents: 5212
diff changeset
15 $(WGET) -q -O- 'http://cairographics.org/releases/?C=M;O=D' | \
1444
560b3cb89bab improved upgrade script of packages: cairo cairomm pixman
Volker Grabsch <vog@notjusthosting.com>
parents: 1351
diff changeset
16 $(SED) -n 's,.*"pixman-\([0-9][^"]*\)\.tar.*,\1,p' | \
260
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 head -1
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 endef
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 define $(PKG)_BUILD
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
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: 2831
diff changeset
23 $(ENABLE_SHARED_OR_STATIC) \
3166
b52db21b9dcd [MSVC] enable pixman compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
24 --prefix='$(HOST_PREFIX)' \
b52db21b9dcd [MSVC] enable pixman compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
25 && $(CONFIGURE_POST_HOOK)
4292
1095281af973 * src/pixman.mk: update to 0.34.0
John D
parents: 3480
diff changeset
26 $(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
1095281af973 * src/pixman.mk: update to 0.34.0
John D
parents: 3480
diff changeset
27 $(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
260
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
28 endef