annotate src/gtkglextmm.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 c4f2fe0d56f1
children
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: 2154
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.
1222
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
3
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
4 PKG := gtkglextmm
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
3480
13be64f9f16d move version info from index.html to src/*.mk files
John W. Eaton <jwe@octave.org>
parents: 3048
diff changeset
6 $(PKG)_VERSION := 1.2.0
1222
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
7 $(PKG)_CHECKSUM := 5cd489e07517a88262cd6050f723227664e82996
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
8 $(PKG)_SUBDIR := gtkglextmm-$($(PKG)_VERSION)
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
9 $(PKG)_FILE := gtkglextmm-$($(PKG)_VERSION).tar.gz
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
10 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/gtkglext/gtkglextmm/$($(PKG)_VERSION)/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3031
diff changeset
11 $(PKG)_DEPS := gtkglext gtkmm2
1222
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
12
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
4972
c4f2fe0d56f1 * src/gtkglextmm.mk: fix update rule
John Donoghue
parents: 4722
diff changeset
14 $(WGET) -q -O- 'https://ftp.gnome.org/pub/gnome/sources/gtkglextmm/1.2/' | \
c4f2fe0d56f1 * src/gtkglextmm.mk: fix update rule
John Donoghue
parents: 4722
diff changeset
15 $(SED) -n 's,.*gtkglextmm-\(1[^>]*\)\.tar.*,\1,ip' | $(SORT) -V | \
4722
2fce10000fa7 more gnome repo -> github updates
John Donoghue
parents: 4384
diff changeset
16 tail -1
1222
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
17 endef
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
18
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
19 define $(PKG)_BUILD
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
20 cd '$(1)' && ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
21 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
22 --prefix='$(HOST_PREFIX)' \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2525
diff changeset
23 $(ENABLE_SHARED_OR_STATIC)
1222
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
24 $(MAKE) -C '$(1)' -j '$(JOBS)' install \
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
25 bin_PROGRAMS= \
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
26 sbin_PROGRAMS= \
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
27 noinst_PROGRAMS= \
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
28 INFO_DEPS=
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
29
3031
951da75fd09c improve handling of cross tool prefix
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
30 '$(MXE_CXX)' \
1223
644dfe98f1e8 gtkglextmm improvements: dependencies, stricter flags for test, rely on pkg-config
Tony Theodore <tonyt@logyst.com>
parents: 1222
diff changeset
31 -W -Wall -Werror -pedantic -std=c++0x \
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
32 '$(2).cpp' -o '$(HOST_BINDIR)/test-gtkglextmm.exe' \
3031
951da75fd09c improve handling of cross tool prefix
John W. Eaton <jwe@octave.org>
parents: 3014
diff changeset
33 `'$(MXE_PKG_CONFIG)' gtkglextmm-1.2 --cflags --libs`
1222
6f81712a503b new package gtkglextmm
Martin Gerhardy <martin.gerhardy@gmail.com>
parents:
diff changeset
34 endef