annotate src/qt.mk @ 3129:d24828818d36

[MSVC] enable Qt compilation - patch qmake to support DLL prefix/suffix - patch qmake for proper .pc files generation - enable .pc files generation for MSVC in .pro files
author Michael Goffioul <michael.goffioul@gmail.com>
date Thu, 11 Jul 2013 23:48:28 -0400
parents 23e3e2955cf5
children fae248a5b181
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: 2179
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.
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
3
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
4 PKG := qt
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
5 $(PKG)_IGNORE :=
2734
ffdcd0f515bc update package qt
Mark Brand <mabrand@mabrand.nl>
parents: 2541
diff changeset
6 $(PKG)_CHECKSUM := bc352a283610e0cd2fe0dbedbc45613844090fcb
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
7 $(PKG)_SUBDIR := $(PKG)-everywhere-opensource-src-$($(PKG)_VERSION)
2179
e1d7c2b4f285 update packages: lcms libpng qt suitesparse
Mark Brand <mabrand@mabrand.nl>
parents: 2170
diff changeset
8 $(PKG)_FILE := $(PKG)-everywhere-opensource-src-$($(PKG)_VERSION).tar.gz
2541
be6a32dfbaea update package qt
Mark Brand <mabrand@mabrand.nl>
parents: 2525
diff changeset
9 $(PKG)_URL := http://releases.qt-project.org/qt4/source/$($(PKG)_FILE)
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
10 $(PKG)_DEPS := openssl zlib libpng jpeg libmng tiff dbus
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
11
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
12 $(PKG)_CONFIGURE_CMD :=
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
13 $(PKG)_CONFIGURE_CROSS_COMPILE_OPTION :=
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
14 $(PKG)_CONFIGURE_DATABASE_OPTION :=
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
15 $(PKG)_CONFIGURE_ENV :=
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
16 $(PKG)_CONFIGURE_EXTRA_OPTION :=
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
17 $(PKG)_CONFIGURE_INCLUDE_OPTION :=
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
18 $(PKG)_CONFIGURE_LIBPATH_OPTION :=
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
19 $(PKG)_CONFIGURE_PLATFORM_OPTION :=
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
20 $(PKG)_PREFIX := '$(HOST_PREFIX)'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
21 $(PKG)_MKSPECS := '$($(PKG)_PREFIX)'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
22
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
23 ifneq ($(filter mingw msvc,$(MXE_SYSTEM)),)
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
24 ifeq ($(MXE_NATIVE_BUILD),yes)
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
25 $(PKG)_CONFIGURE_ENV := \
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
26 PKG_CONFIG_PATH='$(HOST_PREFIX)/lib/pkgconfig'
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
27
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
28 ifeq ($(MXE_SYSTEM),msvc)
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
29 # NMAKE is perturbed by the values of MAKE and MAKEFLAGS defined by GNU
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
30 # make. These need to be unset even when running configure script, as
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
31 # this will run NMAKE to compile QMAKE.
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
32 $(PKG)_CONFIGURE_ENV += MAKE= MAKEFLAGS=
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
33 endif
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
34 else
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
35 $(PKG)_CONFIGURE_ENV := \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
36 OPENSSL_LIBS="`'$(MXE_PKG_CONFIG)' --libs-only-l openssl`" \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
37 PSQL_LIBS="-lpq -lsecur32 `'$(MXE_PKG_CONFIG)' --libs-only-l openssl` -lws2_32" \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
38 SYBASE_LIBS="-lsybdb `'$(MXE_PKG_CONFIG)' --libs-only-l gnutls` -liconv -lws2_32"
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
39 endif
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
40 # compile-in generic ODBC driver under Windows
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
41 $(PKG)_CONFIGURE_DATABASE_OPTION += -plugin-sql-odbc
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
42 else
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
43 $(PKG)_CONFIGURE_ENV := \
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: 3012
diff changeset
44 CPPFLAGS='$(HOST_INCDIR)/dbus-1.0' \
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: 3012
diff changeset
45 LDFLAGS='-Wl,-rpath-link,$(HOST_LIBDIR) -L$(HOST_LIBDIR)'
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
46 endif
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
47
3066
23e3e2955cf5 Change Qt CONFIGURE_INCLUDE/LIBPATH_OPTION variable to be native only
John Donoghue <john.donoghue@ieee.org>
parents: 3059
diff changeset
48 ifeq ($(MXE_NATIVE_BUILD),yes)
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
49 $(PKG)_CONFIGURE_INCLUDE_OPTION += -I '$(HOST_INCDIR)'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
50 $(PKG)_CONFIGURE_LIBPATH_OPTION += -L '$(HOST_LIBDIR)'
3066
23e3e2955cf5 Change Qt CONFIGURE_INCLUDE/LIBPATH_OPTION variable to be native only
John Donoghue <john.donoghue@ieee.org>
parents: 3059
diff changeset
51 endif
3057
7ed3b62fa3ae qt.mk: always set configure include and lib path options
John W. Eaton <jwe@octave.org>
parents: 3055
diff changeset
52
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
53 ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
54 $(PKG)_CONFIGURE_CMD := configure.exe
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
55 ifeq ($(MXE_SYSTEM),msvc)
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
56 # FIXME: the "2010" suffix should be computed dynamically
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
57 $(PKG)_CONFIGURE_PLATFORM_OPTION := -platform win32-msvc2010
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
58 # mimic typical Linux installation
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
59 $(PKG)_CONFIGURE_EXTRA_OPTION += \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
60 -docdir '$(HOST_LIBDIR)/qt4/doc' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
61 -plugindir '$(HOST_LIBDIR)/qt4/plugins' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
62 -importdir '$(HOST_LIBDIR)/qt4/imports' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
63 -datadir '$(HOST_LIBDIR)/qt4' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
64 -translationdir '$(HOST_LIBDIR)/qt4/translations' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
65 -examplesdir '$(HOST_LIBDIR)/qt4/examples' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
66 -demosdir '$(HOST_LIBDIR)/qt4/demos'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
67 $(PKG)_MKSPECS := '$(HOST_LIBDIR)/qt4'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
68 else
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
69 $(PKG)_CONFIGURE_PLATFORM_OPTION := -platform win32-g++
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
70 endif
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
71 # OPENSSL_LIBS needs to be specified here, specifying it as environment
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
72 # variables *before* "configure.exe" doesn't work. Also compile-in D-BUS
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
73 # support, for what it's worth...
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
74 $(PKG)_CONFIGURE_EXTRA_OPTION += \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
75 -openssl-linked \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
76 OPENSSL_LIBS="`PKG_CONFIG_PATH='$(HOST_PREFIX)/lib/pkgconfig' '$(MXE_PKG_CONFIG)' --libs-only-l openssl`" \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
77 -dbus-linked
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
78 else
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
79 $(PKG)_CONFIGURE_CMD := configure
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
80 $(PKG)_CONFIGURE_EXTRA_OPTION := \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
81 -prefix-install \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
82 -make libs \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
83 -openssl-linked \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
84 -no-glib \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
85 -no-gstreamer \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
86 -no-reduce-exports \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
87 -no-ssse3 \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
88 -no-rpath \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
89 -device-option PKG_CONFIG='$(MXE_PKG_CONFIG)' \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
90 -force-pkg-config \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
91 -dbus-linked \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
92 -v
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
93
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
94 ifeq ($(MXE_SYSTEM),mingw)
3041
622b49d8b178 don't set qt CROSS_COMPILE device option for native builds
John W. Eaton <jwe@octave.org>
parents: 3031
diff changeset
95 $(PKG)_CONFIGURE_CROSS_COMPILE_OPTION := \
622b49d8b178 don't set qt CROSS_COMPILE device option for native builds
John W. Eaton <jwe@octave.org>
parents: 3031
diff changeset
96 -device-option CROSS_COMPILE=$(MXE_TOOL_PREFIX)
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
97 $(PKG)_CONFIGURE_PLATFORM_OPTION := -xplatform win32-g++-4.6
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
98 endif
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
99 endif
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
100
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
101 define $(PKG)_UPDATE
2525
4d0f3a9da57e all packages: use $(WGET) portability variable
Tony Theodore <tonyt@logyst.com>
parents: 2446
diff changeset
102 $(WGET) -q -O- 'http://qt.gitorious.org/qt/qt/commits' | \
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
103 grep '<li><a href="/qt/qt/commit/' | \
840
77ecd36317c2 corrected version recognition regexes of many packages
Volker Grabsch <vog@notjusthosting.com>
parents: 822
diff changeset
104 $(SED) -n 's,.*<a[^>]*>v\([0-9][^<-]*\)<.*,\1,p' | \
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
105 tail -1
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
106 endef
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
107
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
108 define $(PKG)_BUILD
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
109 ## syncqt needs QTDIR set to find the sources
2013
378b4cabcda2 update package qt
Mark Brand <mabrand@mabrand.nl>
parents: 1988
diff changeset
110 cd '$(1)' && QTDIR='$(1)' ./bin/syncqt
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
111 cd '$(1)' && QTDIR='$(1)' \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
112 $($(PKG)_CONFIGURE_ENV) \
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
113 ./$($(PKG)_CONFIGURE_CMD) \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
114 $($(PKG)_CONFIGURE_INCLUDE_OPTION) \
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
115 $($(PKG)_CONFIGURE_LIBPATH_OPTION) \
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
116 -opensource \
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
117 -confirm-license \
1015
7997c04d4bef upgrade package qt to 4.7.0-beta1 (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 990
diff changeset
118 -fast \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
119 $($(PKG)_CONFIGURE_PLATFORM_OPTION) \
3041
622b49d8b178 don't set qt CROSS_COMPILE device option for native builds
John W. Eaton <jwe@octave.org>
parents: 3031
diff changeset
120 $($(PKG)_CONFIGURE_CROSS_COMPILE_OPTION) \
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
121 $($(PKG)_CONFIGURE_EXTRA_OPTION) \
486
8eda0b6ec42a disable debug information for package qt
Volker Grabsch <vog@notjusthosting.com>
parents: 485
diff changeset
122 -release \
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
123 -exceptions \
2927
ee20182f07d4 shared libraries for qt
John W. Eaton <jwe@octave.org>
parents: 2745
diff changeset
124 -shared \
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
125 -prefix $($(PKG)_PREFIX) \
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
126 -script \
1910
ce3b84b9514f package qt: build with -no-iconv
Nikos Chantziaras <realnc@arcor.de>
parents: 1909
diff changeset
127 -no-iconv \
470
a07d9f69e2ee add OpenGL support to package qt (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents: 468
diff changeset
128 -opengl desktop \
2445
328cf3f5c63c package qt: stop building static qtwebkit
Mark Brand <mabrand@mabrand.nl>
parents: 2428
diff changeset
129 -no-webkit \
509
e97947e7d45e update version of package qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 497
diff changeset
130 -no-phonon \
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
131 -no-phonon-backend \
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
132 -accessibility \
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
133 -nomake demos \
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
134 -nomake docs \
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
135 -nomake examples \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
136 $($(PKG)_CONFIGURE_DATABASE_OPTION) \
548
08b6c299a522 several improvements to package qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 520
diff changeset
137 -system-zlib \
578
41c0ac9326f2 improvements for package qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 576
diff changeset
138 -system-libpng \
41c0ac9326f2 improvements for package qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 576
diff changeset
139 -system-libjpeg \
573
57166e6490d2 use more external libraries in package qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 570
diff changeset
140 -system-libtiff \
1380
a21aabc31b87 package qt: improved handling of liblcms dependency
Mark Brand <mabrand@mabrand.nl>
parents: 1363
diff changeset
141 -system-libmng \
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
142 -no-sse2
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
143
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
144 if test x$(MXE_SYSTEM) = xmsvc; then \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
145 for f in $(1)/mkspecs/win32-msvc*/qmake.conf; do \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
146 sed -i -e 's/@@LIBRARY_PREFIX@@/$(LIBRARY_PREFIX)/g' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
147 -e 's/@@LIBRARY_SUFFIX@@/$(LIBRARY_SUFFIX)/g' $$f; \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
148 done; \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
149 fi
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
150
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
151 # need to 'install' mkspecs for the native mingw to build during its build
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
152 if [ "$(MXE_NATIVE_MINGW_BUILD)" = yes ]; then \
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
153 mkdir -p '$($(PKG)_MKSPECS)'; \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
154 cp -r '$(1)/mkspecs' '$($(PKG)_MKSPECS)'; \
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
155 fi
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
156
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
157 # compilation under MSVC requires the use of NMAKE, which does not
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
158 # support the -j option flag and is perturbed by GNU make values for
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
159 # MAKE and MAKEFLAGS; also remove unnecessary DLL installed in lib/
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
160 if test x$(MXE_SYSTEM) = xmsvc; then \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
161 cd '$(1)' && \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
162 env -u MAKE -u MAKEFLAGS PKG_CONFIG_PATH='$(HOST_PREFIX)/lib/pkgconfig' nmake && \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
163 env -u MAKE -u MAKEFLAGS PKG_CONFIG_PATH='$(HOST_PREFIX)/lib/pkgconfig' nmake install && \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
164 rm -f $(HOST_PREFIX)/lib/$(LIBRARY_PREFIX)Qt*.dll; \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
165 else \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
166 make -C '$(1)' -j '$(JOBS)' && \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
167 make -C '$(1)' -j 1 install; \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
168 fi
3051
9cb1ce8082a4 Update qt.mk to install .pc files in native mingw
John Donoghue <john.donoghue@ieee.org>
parents: 3048
diff changeset
169
9cb1ce8082a4 Update qt.mk to install .pc files in native mingw
John Donoghue <john.donoghue@ieee.org>
parents: 3048
diff changeset
170 # native build doesnt seem to succeed with installing pkgconfig files to prefix
9cb1ce8082a4 Update qt.mk to install .pc files in native mingw
John Donoghue <john.donoghue@ieee.org>
parents: 3048
diff changeset
171 # in addition, .pc files have the wrong paths, mangled lib names
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
172 if [ "$(MXE_NATIVE_MINGW_BUILD)" = yes -a "$(MXE_SYSTEM)" != msvc ]; then \
3051
9cb1ce8082a4 Update qt.mk to install .pc files in native mingw
John Donoghue <john.donoghue@ieee.org>
parents: 3048
diff changeset
173 find $(1)/lib/pkgconfig/*.pc -exec $(SED) -i \
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
174 -e 's,\(.*\)_location=.*,\1_location=$${prefix}/bin/\1,g' \
3051
9cb1ce8082a4 Update qt.mk to install .pc files in native mingw
John Donoghue <john.donoghue@ieee.org>
parents: 3048
diff changeset
175 -e 's,\(Libs:.* -l\).*[\\/]\([A-Za-z0-9]*\),\1\2,g' \
9cb1ce8082a4 Update qt.mk to install .pc files in native mingw
John Donoghue <john.donoghue@ieee.org>
parents: 3048
diff changeset
176 '{}' ';' ; \
3052
0a5631d32cd9 Update copy of native mingw .pc files to cp -f
John Donoghue <john.donoghue@ieee.org>
parents: 3051
diff changeset
177 cp -f '$(1)/lib/pkgconfig/'*.pc '$(HOST_LIBDIR)/pkgconfig/'; \
3051
9cb1ce8082a4 Update qt.mk to install .pc files in native mingw
John Donoghue <john.donoghue@ieee.org>
parents: 3048
diff changeset
178 fi
9cb1ce8082a4 Update qt.mk to install .pc files in native mingw
John Donoghue <john.donoghue@ieee.org>
parents: 3048
diff changeset
179
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
180 # using if-function, this allows to keep the code structure untouched,
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
181 # including the comments, however one must make sure there is no comma
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
182 $(if $(filter-out msvc,$(MXE_SYSTEM)),
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
183 $(LN_SF) '$($(PKG)_PREFIX)/bin/moc' '$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)moc'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
184 $(LN_SF) '$($(PKG)_PREFIX)/bin/rcc' '$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)rcc'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
185 $(LN_SF) '$($(PKG)_PREFIX)/bin/uic' '$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)uic'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
186 $(LN_SF) '$($(PKG)_PREFIX)/bin/qmake' '$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)qmake'
660
f77810598227 test program for package qt
Volker Grabsch <vog@notjusthosting.com>
parents: 659
diff changeset
187
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
188 # cd '$(1)/tools/assistant' && '$(1)/bin/qmake' assistant.pro
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
189 # $(MAKE) -C '$(1)/tools/assistant' -j '$(JOBS)' install
2446
42295c6227c2 package qt: build more tools
Mark Brand <mabrand@mabrand.nl>
parents: 2445
diff changeset
190
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
191 # cd '$(1)/tools/designer' && '$(1)/bin/qmake' designer.pro
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
192 # $(MAKE) -C '$(1)/tools/designer' -j '$(JOBS)' install
2446
42295c6227c2 package qt: build more tools
Mark Brand <mabrand@mabrand.nl>
parents: 2445
diff changeset
193
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
194 # # at least some of the qdbus tools are useful on target
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
195 # cd '$(1)/tools/qdbus' && '$(1)/bin/qmake' qdbus.pro
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
196 # $(MAKE) -C '$(1)/tools/qdbus' -j '$(JOBS)' install
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
197
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
198 # lrelease (from linguist) needed by octave for GUI build
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
199 $(MAKE) -C '$(1)/tools/linguist/lrelease' -j '$(JOBS)' install
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
200 $(LN_SF) '$($(PKG)_PREFIX)/bin/lrelease' '$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)lrelease'
1538
c6b5e37cf4cb package qt: build and install qdbus tools
Mark Brand <mabrand@mabrand.nl>
parents: 1532
diff changeset
201
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
202 # mkdir '$(1)/test-qt'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
203 # cd '$(1)/test-qt' && '$(MXE_QMAKE)' '$(PWD)/$(2).pro'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
204 # $(MAKE) -C '$(1)/test-qt' -j '$(JOBS)'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
205 # $(INSTALL) -m755 '$(1)/test-qt/release/test-qt.exe' '$(HOST_BINDIR)')
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
206 endef