annotate src/build-pkg-config.mk @ 3725:2acaa9943159

qscintilla: update 2.8.4 * src/qscintilla.mk: update to version and checksum for 2.8.4
author John Donoghue
date Mon, 20 Oct 2014 11:01:00 -0400
parents 13be64f9f16d
children 0e56fe2d2ef5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2972
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 # This file is part of MXE.
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 # See index.html for further information.
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 PKG := build-pkg-config
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
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: 3293
diff changeset
6 $(PKG)_VERSION := 0.28
2973
b5bdf006eebc update to newer version of pkg-config so it can build without pkg-config or glib already installed
John W. Eaton <jwe@octave.org>
parents: 2972
diff changeset
7 $(PKG)_CHECKSUM := 71853779b12f958777bffcb8ca6d849b4d3bed46
2972
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 $(PKG)_SUBDIR := pkg-config-$($(PKG)_VERSION)
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 $(PKG)_FILE := pkg-config-$($(PKG)_VERSION).tar.gz
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 $(PKG)_URL := http://pkgconfig.freedesktop.org/releases/$($(PKG)_FILE)
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 $(PKG)_DEPS :=
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 define $(PKG)_UPDATE
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 echo $($(PKG)_VERSION)
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 endef
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17
3019
d4c8aa885d1b Update build-pkg-config.mk for native mingw build flags
John Donoghue <john.donoghue@ieee.org>
parents: 3014
diff changeset
18 # native mingw needs to be told an architechure for the internal glib to build
d4c8aa885d1b Update build-pkg-config.mk for native mingw build flags
John Donoghue <john.donoghue@ieee.org>
parents: 3014
diff changeset
19 ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
d4c8aa885d1b Update build-pkg-config.mk for native mingw build flags
John Donoghue <john.donoghue@ieee.org>
parents: 3014
diff changeset
20 $(PKG)_CONFIG_OPTS := CPPFLAGS='-march=i486' LN=$(LN)
d4c8aa885d1b Update build-pkg-config.mk for native mingw build flags
John Donoghue <john.donoghue@ieee.org>
parents: 3014
diff changeset
21 endif
d4c8aa885d1b Update build-pkg-config.mk for native mingw build flags
John Donoghue <john.donoghue@ieee.org>
parents: 3014
diff changeset
22
2972
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 define $(PKG)_BUILD
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 mkdir '$(1).build'
3040
706c4daf3372 PKG_CONFIG_PATH fixes
John W. Eaton <jwe@octave.org>
parents: 3019
diff changeset
25 cd '$(1)' && autoreconf
706c4daf3372 PKG_CONFIG_PATH fixes
John W. Eaton <jwe@octave.org>
parents: 3019
diff changeset
26 cd '$(1).build' && '$(1)/configure' \
2973
b5bdf006eebc update to newer version of pkg-config so it can build without pkg-config or glib already installed
John W. Eaton <jwe@octave.org>
parents: 2972
diff changeset
27 --with-internal-glib \
3019
d4c8aa885d1b Update build-pkg-config.mk for native mingw build flags
John Donoghue <john.donoghue@ieee.org>
parents: 3014
diff changeset
28 $($(PKG)_CONFIG_OPTS) \
3040
706c4daf3372 PKG_CONFIG_PATH fixes
John W. Eaton <jwe@octave.org>
parents: 3019
diff changeset
29 --with-pc_path='$(HOST_LIBDIR)/pkgconfig' \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
30 --prefix='$(BUILD_TOOLS_PREFIX)'
2972
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 $(MAKE) -C '$(1).build' -j '$(JOBS)'
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2997
diff changeset
32 rm -f "$(BUILD_TOOLS_PREFIX)/bin/`config.guess`-pkg-config"
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3040
diff changeset
33 $(MAKE) -C '$(1).build' -j 1 install DESTDIR='$(3)'
2972
169114e27438 also build pkg-config instead of expecting it to be present
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34 endef