annotate src/glib.mk @ 2525:4d0f3a9da57e

all packages: use $(WGET) portability variable
author Tony Theodore <tonyt@logyst.com>
date Wed, 09 May 2012 01:16:05 +1000
parents d3034915cd6b
children 7e5aaa010a02
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: 2153
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: 302
diff changeset
4 PKG := glib
1277
104c7045f292 improved update scripts of packages: glib librsvg sdl_sound sdl_ttf
Volker Grabsch <vog@notjusthosting.com>
parents: 1272
diff changeset
5 $(PKG)_IGNORE :=
2482
d3034915cd6b packages atk* glib* libsigc++ pango: use xz archives
Tony Theodore <tonyt@logyst.com>
parents: 2365
diff changeset
6 $(PKG)_CHECKSUM := 9b11968fedf4da45bcd10c4a8c50012d41b3af50
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 302
diff changeset
7 $(PKG)_SUBDIR := glib-$($(PKG)_VERSION)
2482
d3034915cd6b packages atk* glib* libsigc++ pango: use xz archives
Tony Theodore <tonyt@logyst.com>
parents: 2365
diff changeset
8 $(PKG)_FILE := glib-$($(PKG)_VERSION).tar.xz
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 302
diff changeset
9 $(PKG)_URL := http://ftp.gnome.org/pub/gnome/sources/glib/$(call SHORT_PKG_VERSION,$(PKG))/$($(PKG)_FILE)
1536
be27762de562 package glib: added dbus dependency
Mark Brand <mabrand@mabrand.nl>
parents: 1447
diff changeset
10 $(PKG)_DEPS := gcc gettext pcre libiconv zlib dbus
249
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
11
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
12 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2482
diff changeset
13 $(WGET) -q -O- 'http://git.gnome.org/browse/glib/refs/tags' | \
1297
b53f783f930b use only release versions of glib
Volker Grabsch <vog@notjusthosting.com>
parents: 1277
diff changeset
14 $(SED) -n "s,.*tag/?id=\([0-9]\+\.[0-9]*[02468]\.[^']*\).*,\1,p" | \
249
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
15 head -1
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
16 endef
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
17
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 define $(PKG)_BUILD
806
64db10989f7d update version of package glib
Volker Grabsch <vog@notjusthosting.com>
parents: 759
diff changeset
19 cd '$(1)' && aclocal
64db10989f7d update version of package glib
Volker Grabsch <vog@notjusthosting.com>
parents: 759
diff changeset
20 cd '$(1)' && $(LIBTOOLIZE) --force
64db10989f7d update version of package glib
Volker Grabsch <vog@notjusthosting.com>
parents: 759
diff changeset
21 cd '$(1)' && autoconf
64db10989f7d update version of package glib
Volker Grabsch <vog@notjusthosting.com>
parents: 759
diff changeset
22 cp -Rp '$(1)' '$(1).native'
722
dc0a01dbbcd6 ensure that the native glib-genmarshal build with libiconv always succeeds
Volker Grabsch <vog@notjusthosting.com>
parents: 720
diff changeset
23
dc0a01dbbcd6 ensure that the native glib-genmarshal build with libiconv always succeeds
Volker Grabsch <vog@notjusthosting.com>
parents: 720
diff changeset
24 # native build of libiconv (used by glib-genmarshal)
dc0a01dbbcd6 ensure that the native glib-genmarshal build with libiconv always succeeds
Volker Grabsch <vog@notjusthosting.com>
parents: 720
diff changeset
25 cd '$(1).native' && $(call UNPACK_PKG_ARCHIVE,libiconv)
dc0a01dbbcd6 ensure that the native glib-genmarshal build with libiconv always succeeds
Volker Grabsch <vog@notjusthosting.com>
parents: 720
diff changeset
26 cd '$(1).native/$(libiconv_SUBDIR)' && ./configure \
dc0a01dbbcd6 ensure that the native glib-genmarshal build with libiconv always succeeds
Volker Grabsch <vog@notjusthosting.com>
parents: 720
diff changeset
27 --disable-shared \
1201
fca60b5b5afb rollback previous commit
Tony Theodore <tonyt@logyst.com>
parents: 1200
diff changeset
28 --disable-nls
722
dc0a01dbbcd6 ensure that the native glib-genmarshal build with libiconv always succeeds
Volker Grabsch <vog@notjusthosting.com>
parents: 720
diff changeset
29 $(MAKE) -C '$(1).native/$(libiconv_SUBDIR)' -j '$(JOBS)'
dc0a01dbbcd6 ensure that the native glib-genmarshal build with libiconv always succeeds
Volker Grabsch <vog@notjusthosting.com>
parents: 720
diff changeset
30
dc0a01dbbcd6 ensure that the native glib-genmarshal build with libiconv always succeeds
Volker Grabsch <vog@notjusthosting.com>
parents: 720
diff changeset
31 # native build for glib-genmarshal, without pkg-config, gettext and zlib
712
38a787e5a126 improved coding style
Volker Grabsch <vog@notjusthosting.com>
parents: 711
diff changeset
32 cd '$(1).native' && ./configure \
249
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
33 --disable-shared \
713
52e8cc2f008f put the tools of package glib into usr/TARGET/bin/ instead of usr/bin/
Volker Grabsch <vog@notjusthosting.com>
parents: 712
diff changeset
34 --prefix='$(PREFIX)/$(TARGET)' \
250
a216acad3492 bugfix in package glib: install all glib tools
Volker Grabsch <vog@notjusthosting.com>
parents: 249
diff changeset
35 --enable-regex \
909
fbb1667f8e3a revert upgrade of package glib
Volker Grabsch <vog@notjusthosting.com>
parents: 906
diff changeset
36 --disable-threads \
249
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
37 --disable-selinux \
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
38 --disable-fam \
722
dc0a01dbbcd6 ensure that the native glib-genmarshal build with libiconv always succeeds
Volker Grabsch <vog@notjusthosting.com>
parents: 720
diff changeset
39 --disable-xattr \
1195
40fff8072354 package glib: disable dtrace for native build
Tony Theodore <tonyt@logyst.com>
parents: 1191
diff changeset
40 --disable-dtrace \
722
dc0a01dbbcd6 ensure that the native glib-genmarshal build with libiconv always succeeds
Volker Grabsch <vog@notjusthosting.com>
parents: 720
diff changeset
41 --with-libiconv=gnu \
976
c9ff59f8ceaf improved build options for native build of package glib
Volker Grabsch <vog@notjusthosting.com>
parents: 960
diff changeset
42 --with-pcre=internal \
722
dc0a01dbbcd6 ensure that the native glib-genmarshal build with libiconv always succeeds
Volker Grabsch <vog@notjusthosting.com>
parents: 720
diff changeset
43 CPPFLAGS='-I$(1).native/$(libiconv_SUBDIR)/include' \
1201
fca60b5b5afb rollback previous commit
Tony Theodore <tonyt@logyst.com>
parents: 1200
diff changeset
44 LDFLAGS='-L$(1).native/$(libiconv_SUBDIR)/lib/.libs'
759
bf4bcb3370fa changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 741
diff changeset
45 $(SED) -i 's,#define G_ATOMIC.*,,' '$(1).native/config.h'
909
fbb1667f8e3a revert upgrade of package glib
Volker Grabsch <vog@notjusthosting.com>
parents: 906
diff changeset
46 $(MAKE) -C '$(1).native/glib' -j '$(JOBS)'
fbb1667f8e3a revert upgrade of package glib
Volker Grabsch <vog@notjusthosting.com>
parents: 906
diff changeset
47 $(MAKE) -C '$(1).native/gthread' -j '$(JOBS)'
fbb1667f8e3a revert upgrade of package glib
Volker Grabsch <vog@notjusthosting.com>
parents: 906
diff changeset
48 $(MAKE) -C '$(1).native/gobject' -j '$(JOBS)' lib_LTLIBRARIES= install-exec
914
ea9734b40ea5 upgrade package glib
Mark Brand <mabrand@mabrand.nl>
parents: 910
diff changeset
49 $(MAKE) -C '$(1).native/gio' -j '$(JOBS)' glib-compile-schemas
1303
9d27d3bd15a5 bugfix in package glib
Volker Grabsch <vog@notjusthosting.com>
parents: 1297
diff changeset
50 $(INSTALL) -m755 '$(1).native/gio/glib-compile-schemas' '$(PREFIX)/$(TARGET)/bin/'
271
2801bf7db05e switch glib to win32 threading
Volker Grabsch <vog@notjusthosting.com>
parents: 269
diff changeset
51
249
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
52 # cross build
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
53 cd '$(1)' && ./configure \
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
54 --host='$(TARGET)' \
2153
e4c83fa61a5b replaced $(BUILD) with a more direct and less brittle construct
Volker Grabsch <vog@notjusthosting.com>
parents: 2148
diff changeset
55 --build="`config.guess`" \
249
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
56 --disable-shared \
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
57 --prefix='$(PREFIX)/$(TARGET)' \
271
2801bf7db05e switch glib to win32 threading
Volker Grabsch <vog@notjusthosting.com>
parents: 269
diff changeset
58 --with-threads=win32 \
249
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
59 --with-pcre=system \
288
9d06f168f339 portability fix for FreeBSD in package glib: don't expect the build system to have libiconv installed
Volker Grabsch <vog@notjusthosting.com>
parents: 282
diff changeset
60 --with-libiconv=gnu \
291
25d9750b7a6a portability fix for MacOS X in package glib: set CXX explicitly
Volker Grabsch <vog@notjusthosting.com>
parents: 288
diff changeset
61 CXX='$(TARGET)-c++' \
713
52e8cc2f008f put the tools of package glib into usr/TARGET/bin/ instead of usr/bin/
Volker Grabsch <vog@notjusthosting.com>
parents: 712
diff changeset
62 PKG_CONFIG='$(PREFIX)/bin/$(TARGET)-pkg-config' \
1303
9d27d3bd15a5 bugfix in package glib
Volker Grabsch <vog@notjusthosting.com>
parents: 1297
diff changeset
63 GLIB_GENMARSHAL='$(PREFIX)/$(TARGET)/bin/glib-genmarshal' \
9d27d3bd15a5 bugfix in package glib
Volker Grabsch <vog@notjusthosting.com>
parents: 1297
diff changeset
64 GLIB_COMPILE_SCHEMAS='$(PREFIX)/$(TARGET)/bin/glib-compile-schemas'
706
0a976e6b82e3 remove other packages' dependencies on the gettext tool
Volker Grabsch <vog@notjusthosting.com>
parents: 693
diff changeset
65 $(MAKE) -C '$(1)/glib' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
0a976e6b82e3 remove other packages' dependencies on the gettext tool
Volker Grabsch <vog@notjusthosting.com>
parents: 693
diff changeset
66 $(MAKE) -C '$(1)/gmodule' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
0a976e6b82e3 remove other packages' dependencies on the gettext tool
Volker Grabsch <vog@notjusthosting.com>
parents: 693
diff changeset
67 $(MAKE) -C '$(1)/gthread' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
0a976e6b82e3 remove other packages' dependencies on the gettext tool
Volker Grabsch <vog@notjusthosting.com>
parents: 693
diff changeset
68 $(MAKE) -C '$(1)/gobject' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
919
d9ecc9999601 fix build issues of package glib
Volker Grabsch <vog@notjusthosting.com>
parents: 914
diff changeset
69 $(MAKE) -C '$(1)/gio' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= MISC_STUFF=
1190
821fabe85a36 upgrade packages: glib gtk. new package: gdk-pixbuf
Mark Brand <mabrand@mabrand.nl>
parents: 1045
diff changeset
70 $(MAKE) -C '$(1)' -j '$(JOBS)' install-pkgconfigDATA
249
f9eef93cb829 new package: glib
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
71 endef