annotate src/xcb.mk @ 7244:1448afad6165 default tip @

HDF5: Update to 1.14.3 * src/hdf5.mk: Update version and checksum. Remove configure flags that no longer exist. Add configure flags to override erroneous test results. Remove copying pre-generated files that is no longer needed. * src/mingw-hdf5-1.patch: Remove patch. Cross-compilation is working now with the upstream build system. * dist-files.mk: Remove deleted file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 07 Jun 2024 23:31:25 +0200
parents d3087afece14
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3743
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := xcb
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 $(PKG)_IGNORE :=
7147
2a1e565f5801 xcb-proto, xcb: update to version 1.15
Markus Mützel <markus.muetzel@gmx.de>
parents: 5901
diff changeset
6 $(PKG)_VERSION := 1.15
2a1e565f5801 xcb-proto, xcb: update to version 1.15
Markus Mützel <markus.muetzel@gmx.de>
parents: 5901
diff changeset
7 $(PKG)_CHECKSUM := 5b664321e61e6af4402795c86bd1d2a0e7b82fbc
3743
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := libxcb-$($(PKG)_VERSION)
7147
2a1e565f5801 xcb-proto, xcb: update to version 1.15
Markus Mützel <markus.muetzel@gmx.de>
parents: 5901
diff changeset
9 $(PKG)_FILE := libxcb-$($(PKG)_VERSION).tar.xz
4519
58de4f56c797 update most X11 packages to latest version and to use tar.bz2 files
John W. Eaton <jwe@octave.org>
parents: 4501
diff changeset
10 $(PKG)_URL := http://www.x.org/archive/individual/xcb/$($(PKG)_FILE)
5901
f062bdb4f0a3 Rename build-python3 to build-python.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5834
diff changeset
11 $(PKG)_DEPS := build-python pthread-stubs util-macros xau xcb-proto
3743
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
5017
aedd254dd2e6 * src/xcb.mk: update to v1.13.1
John Donoghue
parents: 4519
diff changeset
13 define $(PKG)_UPDATE
aedd254dd2e6 * src/xcb.mk: update to v1.13.1
John Donoghue
parents: 4519
diff changeset
14 $(WGET) -q -O- 'https://www.x.org/archive/individual/xcb/' | \
aedd254dd2e6 * src/xcb.mk: update to v1.13.1
John Donoghue
parents: 4519
diff changeset
15 $(SED) -n 's,.*<a href="libxcb-\([0-9\.]*\)\.tar.gz".*,\1,p' | \
aedd254dd2e6 * src/xcb.mk: update to v1.13.1
John Donoghue
parents: 4519
diff changeset
16 $(SORT) -V |
aedd254dd2e6 * src/xcb.mk: update to v1.13.1
John Donoghue
parents: 4519
diff changeset
17 tail -1
aedd254dd2e6 * src/xcb.mk: update to v1.13.1
John Donoghue
parents: 4519
diff changeset
18 endef
aedd254dd2e6 * src/xcb.mk: update to v1.13.1
John Donoghue
parents: 4519
diff changeset
19
3743
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 ifeq ($(MXE_WINDOWS_BUILD),yes)
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 define $(PKG)_BUILD
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 endef
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 else
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 define $(PKG)_BUILD
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 mkdir '$(1)/.build'
5901
f062bdb4f0a3 Rename build-python3 to build-python.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5834
diff changeset
26 cd '$(1)/.build' && $($(PKG)_CONFIGURE_ENV) PYTHON=$(MXE_PYTHON) '$(1)/configure' \
3743
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 $(CONFIGURE_CPPFLAGS) $(CONFIGURE_LDFLAGS) \
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
7220
d3087afece14 * src/gdal.mk, src/xcb.mk: disable doxygen docs
John Donoghue <john.donoghue@ieee.org>
parents: 7147
diff changeset
29 --prefix='$(HOST_PREFIX)' --disable-docs --disable-devel-docs \
3743
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30 && $(CONFIGURE_POST_HOOK)
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32 $(MAKE) -C '$(1)/.build' -j '$(JOBS)' install DESTDIR='$(3)'
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 endef
4f58c4b4dee0 build libX11 and dependencies
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34 endif