annotate src/pango.mk @ 4710:038985c3bde2

update GNOME broken update rules * src/gtksourceviewmm2.mk, src/libcroco.mk, src/libgee.mk, src/libgsf.mk, src/libxml2.mk, src/libxslt.mk, src/pango.mk, src/pangomm.mk : update update rule to use github
author John Donoghue
date Thu, 24 May 2018 15:56:35 -0400
parents abef069ac1d3
children e2349691d6ae
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.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 377
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 302
diff changeset
4 PKG := pango
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 :=
4296
68c7e187e20d pango: update to 1.40.3
John D
parents: 3480
diff changeset
6 $(PKG)_VERSION := 1.40.3
68c7e187e20d pango: update to 1.40.3
John D
parents: 3480
diff changeset
7 $(PKG)_CHECKSUM := 18db616204416936ef969e1c387b7a2f4e8b039b
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 302
diff changeset
8 $(PKG)_SUBDIR := pango-$($(PKG)_VERSION)
2482
d3034915cd6b packages atk* glib* libsigc++ pango: use xz archives
Tony Theodore <tonyt@logyst.com>
parents: 2365
diff changeset
9 $(PKG)_FILE := pango-$($(PKG)_VERSION).tar.xz
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 302
diff changeset
10 $(PKG)_URL := http://ftp.gnome.org/pub/gnome/sources/pango/$(call SHORT_PKG_VERSION,$(PKG))/$($(PKG)_FILE)
4296
68c7e187e20d pango: update to 1.40.3
John D
parents: 3480
diff changeset
11 $(PKG)_DEPS := fontconfig freetype cairo glib
260
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13 define $(PKG)_UPDATE
4710
038985c3bde2 update GNOME broken update rules
John Donoghue
parents: 4544
diff changeset
14 $(WGET) -q -O- https://github.com/GNOME/pango/tags | \
038985c3bde2 update GNOME broken update rules
John Donoghue
parents: 4544
diff changeset
15 $(SED) -n 's|.*releases/tag/\([^"]*\).*|\1|p' | $(SORT) -V | \
038985c3bde2 update GNOME broken update rules
John Donoghue
parents: 4544
diff changeset
16 tail -1
260
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17 endef
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19 define $(PKG)_BUILD
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.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) \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2850
diff changeset
22 $(ENABLE_SHARED_OR_STATIC) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
23 --prefix='$(HOST_PREFIX)' \
260
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
24 --disable-gtk-doc \
3172
8d294e37ce65 [MSVC] enable Pango compilation (and bump version to 1.34.1)
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
25 CXX='$(MXE_CXX)' \
8d294e37ce65 [MSVC] enable Pango compilation (and bump version to 1.34.1)
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
26 PKG_CONFIG='$(MXE_PKG_CONFIG)' \
4296
68c7e187e20d pango: update to 1.40.3
John D
parents: 3480
diff changeset
27 PKG_CONFIG_PATH='$(PKG_CONFIG_PATH)' \
3172
8d294e37ce65 [MSVC] enable Pango compilation (and bump version to 1.34.1)
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
28 && $(CONFIGURE_POST_HOOK)
8d294e37ce65 [MSVC] enable Pango compilation (and bump version to 1.34.1)
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3048
diff changeset
29 $(MAKE) -C '$(1)' -j '$(JOBS)' noinst_PROGRAMS=
4296
68c7e187e20d pango: update to 1.40.3
John D
parents: 3480
diff changeset
30 $(MAKE) -C '$(1)' -j 1 install noinst_PROGRAMS= DESTDIR='$(3)'
4301
b6819fef128f Dont install gtk-docs
John D
parents: 4296
diff changeset
31
b6819fef128f Dont install gtk-docs
John D
parents: 4296
diff changeset
32 if [ "$(ENABLE_DEP_DOCS)" == "no" ]; then \
b6819fef128f Dont install gtk-docs
John D
parents: 4296
diff changeset
33 rm -rf "$(3)$(HOST_PREFIX)/share/gtk-doc"; \
b6819fef128f Dont install gtk-docs
John D
parents: 4296
diff changeset
34 fi
260
51a5ca86e401 new packages: jasper, pixman, cairo, pango, atk and gtk
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
35 endef