annotate src/qt.mk @ 3746:0ef36efbd9cd

qt: for cross compile, move the native binaries to the builkd directory * src/qt.mk: instead of installing (TARGET-)qmake, moc,uic,lrease, move the binary to that name. * src/qscintilla.mk: use MXE_QMAKE, MXE_UIC, MXE_MOC. * Makefile.in: define vars MXE_UIC, MXE_MOC
author John Donoghue
date Wed, 26 Nov 2014 15:14:43 -0500
parents a515e5de5f8a
children cae03f269f78
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 :=
3594
30f4b78227af dbus update to 1.8.2, qt update to 4.8.6.
John Donoghue
parents: 3561
diff changeset
6 $(PKG)_VERSION := 4.8.6
30f4b78227af dbus update to 1.8.2, qt update to 4.8.6.
John Donoghue
parents: 3561
diff changeset
7 $(PKG)_CHECKSUM := ddf9c20ca8309a116e0466c42984238009525da6
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
8 $(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
9 $(PKG)_FILE := $(PKG)-everywhere-opensource-src-$($(PKG)_VERSION).tar.gz
3233
4b7210094782 qt.mk: update download location
John W. Eaton <jwe@octave.org>
parents: 3231
diff changeset
10 $(PKG)_URL := http://download.qt-project.org/archives/qt/4.8/$($(PKG)_VERSION)/$($(PKG)_FILE)
3474
90e45130eab8 update to Qt 4.8.5
John W. Eaton <jwe@octave.org>
parents: 3463
diff changeset
11 $(PKG)_DEPS := postgresql freetds openssl zlib libpng jpeg libmng tiff sqlite dbus fontconfig
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
12
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
13 $(PKG)_CONFIGURE_CMD :=
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
14 $(PKG)_CONFIGURE_CROSS_COMPILE_OPTION :=
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
15 $(PKG)_CONFIGURE_DATABASE_OPTION :=
3145
fae248a5b181 Qt: generalize the use of pkg-config to get dbus compilation flags
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3129
diff changeset
16 $(PKG)_CONFIGURE_ENV := PKG_CONFIG_PATH='$(HOST_PREFIX)/lib/pkgconfig'
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
17 $(PKG)_CONFIGURE_EXTRA_OPTION :=
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
18 $(PKG)_CONFIGURE_INCLUDE_OPTION := -I '$(HOST_INCDIR)/freetype2'
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
19 $(PKG)_CONFIGURE_LIBPATH_OPTION :=
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
20 $(PKG)_CONFIGURE_PLATFORM_OPTION :=
3312
3e66ccaeff02 Qt: use INSTALL_ROOT instead of DESTDIR
John Donoghue <john.donoghue@ieee.org>
parents: 3309
diff changeset
21 $(PKG)_PREFIX := $(HOST_PREFIX)
3e66ccaeff02 Qt: use INSTALL_ROOT instead of DESTDIR
John Donoghue <john.donoghue@ieee.org>
parents: 3309
diff changeset
22 $(PKG)_MKSPECS := $($(PKG)_PREFIX)
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
23 $(PKG)_INSTALL_ROOT := $(3)
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
24
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
25 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
26 ifeq ($(MXE_NATIVE_BUILD),yes)
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
27 ifeq ($(MXE_SYSTEM),msvc)
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
28 # 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
29 # 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
30 # this will run NMAKE to compile QMAKE.
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
31 $(PKG)_CONFIGURE_ENV += MAKE= MAKEFLAGS=
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
32 else
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
33 # native mingw doesnt like using install root mixed with prefix
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
34 # and instead attempts to install to c:\INSTALL_ROOT\prefix
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
35 # so dont use it if compiling native mingw
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
36 $(PKG)_INSTALL_ROOT :=
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
37 endif
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
38 else
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
39 $(PKG)_CONFIGURE_ENV := \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
40 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
41 PSQL_LIBS="-lpq -lsecur32 `'$(MXE_PKG_CONFIG)' --libs-only-l openssl` -lws2_32" \
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
42 SYBASE_LIBS="-lsybdb `'$(MXE_PKG_CONFIG)' --libs-only-l gnutls` -liconv -lws2_32"
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
43 $(PKG)_CONFIGURE_DATABASE_OPTION += -system-sqlite
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
44 endif
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
45 # compile-in generic ODBC driver under Windows
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
46 $(PKG)_CONFIGURE_DATABASE_OPTION += -plugin-sql-odbc
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
47 else
3654
72a348a77be4 fix native Qt build
John W. Eaton <jwe@octave.org>
parents: 3612
diff changeset
48 ifeq ($(MXE_USE_LIB64_DIRECTORY),yes)
72a348a77be4 fix native Qt build
John W. Eaton <jwe@octave.org>
parents: 3612
diff changeset
49 $(PKG)_CONFIGURE_ENV += \
72a348a77be4 fix native Qt build
John W. Eaton <jwe@octave.org>
parents: 3612
diff changeset
50 LDFLAGS='-Wl,-rpath-link,$(HOST_LIBDIR) -L$(HOST_LIBDIR) -Wl,-rpath-link,$(HOST_LIB64DIR) -L$(HOST_LIB64DIR)'
72a348a77be4 fix native Qt build
John W. Eaton <jwe@octave.org>
parents: 3612
diff changeset
51 else
72a348a77be4 fix native Qt build
John W. Eaton <jwe@octave.org>
parents: 3612
diff changeset
52 $(PKG)_CONFIGURE_ENV += \
72a348a77be4 fix native Qt build
John W. Eaton <jwe@octave.org>
parents: 3612
diff changeset
53 LDFLAGS='-Wl,-rpath-link,$(HOST_LIBDIR) -L$(HOST_LIBDIR)'
72a348a77be4 fix native Qt build
John W. Eaton <jwe@octave.org>
parents: 3612
diff changeset
54 endif
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
55 $(PKG)_CONFIGURE_DATABASE_OPTION += -system-sqlite
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
56 endif
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
57
3066
23e3e2955cf5 Change Qt CONFIGURE_INCLUDE/LIBPATH_OPTION variable to be native only
John Donoghue <john.donoghue@ieee.org>
parents: 3059
diff changeset
58 ifeq ($(MXE_NATIVE_BUILD),yes)
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
59 $(PKG)_CONFIGURE_INCLUDE_OPTION += -I '$(HOST_INCDIR)'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
60 $(PKG)_CONFIGURE_LIBPATH_OPTION += -L '$(HOST_LIBDIR)'
3654
72a348a77be4 fix native Qt build
John W. Eaton <jwe@octave.org>
parents: 3612
diff changeset
61 ifeq ($(MXE_USE_LIB64_DIRECTORY),yes)
72a348a77be4 fix native Qt build
John W. Eaton <jwe@octave.org>
parents: 3612
diff changeset
62 $(PKG)_CONFIGURE_LIBPATH_OPTION += -L '$(HOST_LIB64DIR)'
72a348a77be4 fix native Qt build
John W. Eaton <jwe@octave.org>
parents: 3612
diff changeset
63 endif
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
64 $(PKG)_CONFIGURE_INCLUDE_OPTION += -I '$(HOST_INCDIR)/dbus-1.0'
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
65 $(PKG)_CONFIGURE_INCLUDE_OPTION += -I '$(HOST_LIBDIR)/dbus-1.0/include'
3066
23e3e2955cf5 Change Qt CONFIGURE_INCLUDE/LIBPATH_OPTION variable to be native only
John Donoghue <john.donoghue@ieee.org>
parents: 3059
diff changeset
66 endif
3057
7ed3b62fa3ae qt.mk: always set configure include and lib path options
John W. Eaton <jwe@octave.org>
parents: 3055
diff changeset
67
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
68 ifeq ($(MXE_NATIVE_MINGW_BUILD),yes)
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
69 $(PKG)_CONFIGURE_CMD := configure.exe
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
70 ifeq ($(MXE_SYSTEM),msvc)
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
71 # FIXME: the "2010" suffix should be computed dynamically
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
72 $(PKG)_CONFIGURE_PLATFORM_OPTION := -platform win32-msvc2010
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
73 # mimic typical Linux installation
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 -docdir '$(HOST_LIBDIR)/qt4/doc' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
76 -plugindir '$(HOST_LIBDIR)/qt4/plugins' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
77 -importdir '$(HOST_LIBDIR)/qt4/imports' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
78 -datadir '$(HOST_LIBDIR)/qt4' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
79 -translationdir '$(HOST_LIBDIR)/qt4/translations' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
80 -examplesdir '$(HOST_LIBDIR)/qt4/examples' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
81 -demosdir '$(HOST_LIBDIR)/qt4/demos'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
82 $(PKG)_MKSPECS := '$(HOST_LIBDIR)/qt4'
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
83 else
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
84 $(PKG)_CONFIGURE_PLATFORM_OPTION := -platform win32-g++
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
85 endif
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
86 # 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
87 # 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
88 # support, for what it's worth...
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
89 $(PKG)_CONFIGURE_EXTRA_OPTION += \
3145
fae248a5b181 Qt: generalize the use of pkg-config to get dbus compilation flags
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3129
diff changeset
90 OPENSSL_LIBS="`PKG_CONFIG_PATH='$(HOST_PREFIX)/lib/pkgconfig' '$(MXE_PKG_CONFIG)' --libs-only-l openssl`"
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
91 else
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
92 $(PKG)_CONFIGURE_CMD := configure
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
93 $(PKG)_CONFIGURE_EXTRA_OPTION := \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
94 -prefix-install \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
95 -make libs \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
96 -no-glib \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
97 -no-gstreamer \
3660
695c90731c85 qt: dont use -no-javascript-jit if native mingw build.
John Donoghue <john.donoghue@ieee.org>
parents: 3654
diff changeset
98 -no-javascript-jit \
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
99 -no-reduce-exports \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
100 -no-rpath \
3409
5e77c5fc91ed qt: build translations in cross build and install
John Donoghue <john.donoghue@ieee.org>
parents: 3322
diff changeset
101 -make translations \
5e77c5fc91ed qt: build translations in cross build and install
John Donoghue <john.donoghue@ieee.org>
parents: 3322
diff changeset
102 -translationdir '$($(PKG)_PREFIX)/translations' \
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
103 -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
104 -force-pkg-config \
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
105 -v
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
106
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
107 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
108 $(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
109 -device-option CROSS_COMPILE=$(MXE_TOOL_PREFIX)
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
110 $(PKG)_CONFIGURE_PLATFORM_OPTION := -xplatform win32-g++-4.6
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
111 endif
3660
695c90731c85 qt: dont use -no-javascript-jit if native mingw build.
John Donoghue <john.donoghue@ieee.org>
parents: 3654
diff changeset
112
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
113 endif
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
114
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
115 define $(PKG)_UPDATE
3561
ae4193aad5fe revise and enable more $(PKG)_UPDATE rules
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
116 echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
ae4193aad5fe revise and enable more $(PKG)_UPDATE rules
John W. Eaton <jwe@octave.org>
parents: 3480
diff changeset
117 echo $($(PKG)_VERSION)
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
118 endef
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
119
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
120 define $(PKG)_BUILD
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
121 ## syncqt needs QTDIR set to find the sources
2013
378b4cabcda2 update package qt
Mark Brand <mabrand@mabrand.nl>
parents: 1988
diff changeset
122 cd '$(1)' && QTDIR='$(1)' ./bin/syncqt
3696
73dc0213c8ac qt.mk: edit configure script for systems with /usr/X11R6/lib64 directory
John W. Eaton <jwe@octave.org>
parents: 3660
diff changeset
123 ## FIXME: LDFLAGS was not correct for SuSE 10.4 systems. Is there
73dc0213c8ac qt.mk: edit configure script for systems with /usr/X11R6/lib64 directory
John W. Eaton <jwe@octave.org>
parents: 3660
diff changeset
124 ## a better way to handle this problem?
73dc0213c8ac qt.mk: edit configure script for systems with /usr/X11R6/lib64 directory
John W. Eaton <jwe@octave.org>
parents: 3660
diff changeset
125 if [ -d '/usr/X11R6/lib64' ]; then \
3698
a515e5de5f8a qt.mk: fix typo in previous change
John W. Eaton <jwe@octave.org>
parents: 3696
diff changeset
126 sed -i 's/PLATFORM=linux-g++/PLATFORM=linux-g++-64/' '$(1)/configure'; \
3696
73dc0213c8ac qt.mk: edit configure script for systems with /usr/X11R6/lib64 directory
John W. Eaton <jwe@octave.org>
parents: 3660
diff changeset
127 fi
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
128 cd '$(1)' && QTDIR='$(1)' \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
129 $($(PKG)_CONFIGURE_ENV) \
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
130 ./$($(PKG)_CONFIGURE_CMD) \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
131 $($(PKG)_CONFIGURE_INCLUDE_OPTION) \
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
132 $($(PKG)_CONFIGURE_LIBPATH_OPTION) \
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
133 -opensource \
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
134 -confirm-license \
3145
fae248a5b181 Qt: generalize the use of pkg-config to get dbus compilation flags
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3129
diff changeset
135 -dbus-linked \
1015
7997c04d4bef upgrade package qt to 4.7.0-beta1 (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 990
diff changeset
136 -fast \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
137 $($(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
138 $($(PKG)_CONFIGURE_CROSS_COMPILE_OPTION) \
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
139 $($(PKG)_CONFIGURE_EXTRA_OPTION) \
486
8eda0b6ec42a disable debug information for package qt
Volker Grabsch <vog@notjusthosting.com>
parents: 485
diff changeset
140 -release \
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
141 -exceptions \
2927
ee20182f07d4 shared libraries for qt
John W. Eaton <jwe@octave.org>
parents: 2745
diff changeset
142 -shared \
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
143 -prefix $($(PKG)_PREFIX) \
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
144 -script \
1910
ce3b84b9514f package qt: build with -no-iconv
Nikos Chantziaras <realnc@arcor.de>
parents: 1909
diff changeset
145 -no-iconv \
470
a07d9f69e2ee add OpenGL support to package qt (by Martin Lambers)
Volker Grabsch <vog@notjusthosting.com>
parents: 468
diff changeset
146 -opengl desktop \
3145
fae248a5b181 Qt: generalize the use of pkg-config to get dbus compilation flags
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3129
diff changeset
147 -openssl-linked \
3259
33ab5eb4fed6 Undo qt no-webkit changeset 3258:db4c94cfc651
John Donoghue <john.donoghue@ieee.org>
parents: 3258
diff changeset
148 -no-webkit \
509
e97947e7d45e update version of package qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 497
diff changeset
149 -no-phonon \
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
150 -no-phonon-backend \
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
151 -accessibility \
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
152 -nomake demos \
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
153 -nomake docs \
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
154 -nomake examples \
2997
4f9b72cf7ee7 allow native builds too
John W. Eaton <jwe@octave.org>
parents: 2988
diff changeset
155 $($(PKG)_CONFIGURE_DATABASE_OPTION) \
548
08b6c299a522 several improvements to package qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 520
diff changeset
156 -system-zlib \
578
41c0ac9326f2 improvements for package qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 576
diff changeset
157 -system-libpng \
41c0ac9326f2 improvements for package qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 576
diff changeset
158 -system-libjpeg \
573
57166e6490d2 use more external libraries in package qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents: 570
diff changeset
159 -system-libtiff \
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
160 -system-libmng
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
161
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
162 if test x$(MXE_SYSTEM) = xmsvc; then \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
163 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
164 sed -i -e 's/@@LIBRARY_PREFIX@@/$(LIBRARY_PREFIX)/g' \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
165 -e 's/@@LIBRARY_SUFFIX@@/$(LIBRARY_SUFFIX)/g' $$f; \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
166 done; \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
167 fi
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
168
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
169 # need to 'install' mkspecs for the native mingw to build during its build
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
170 # also need build tools qmake
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
171 if [ "$(MXE_NATIVE_MINGW_BUILD)" = yes ]; then \
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
172 mkdir -p '$($(PKG)_MKSPECS)'; \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
173 cp -r '$(1)/mkspecs' '$($(PKG)_MKSPECS)'; \
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
174 $(INSTALL) -m755 '$(1)/bin/qmake.exe' '$($(PKG)_INSTALL_ROOT)$(BUILD_TOOLS_PREFIX)/bin/'; \
3047
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
175 fi
e7b7b0f663d3 Update qt.mk for native mingw buiild
John Donoghue <john.donoghue@ieee.org>
parents: 3041
diff changeset
176
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
177 # 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
178 # 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
179 # 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
180 if test x$(MXE_SYSTEM) = xmsvc; then \
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3259
diff changeset
181 mkdir -p '$(3)' && \
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
182 cd '$(1)' && \
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
183 env -u MAKE -u MAKEFLAGS PKG_CONFIG_PATH='$(HOST_PREFIX)/lib/pkgconfig' nmake && \
3293
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3259
diff changeset
184 env -u MAKE -u MAKEFLAGS PKG_CONFIG_PATH='$(HOST_PREFIX)/lib/pkgconfig' nmake \
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3259
diff changeset
185 INSTALL_ROOT=`cd $(3) && pwd -W | sed -e 's,^[a-zA-Z]:,,' -e 's,/,\\\\,g'` install && \
cf6f40cededb Support file list generation in packages.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3259
diff changeset
186 rm -f $(3)$(CMAKE_HOST_PREFIX)/lib/$(LIBRARY_PREFIX)Qt*.dll; \
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
187 else \
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
188 make -C '$(1)' -j '$(JOBS)'; \
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
189 make -C '$(1)' -j 1 install INSTALL_ROOT=$($(PKG)_INSTALL_ROOT); \
3322
41645c0a134c Remove *.dll files placed by Qt in lib directory, put them in bin directory instead.
Rik <rik@octave.org>
parents: 3312
diff changeset
190 if [ "$(MXE_SYSTEM)" = mingw ]; then \
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
191 rm -f $($(PKG)_INSTALL_ROOT)$(HOST_LIBDIR)/$(LIBRARY_PREFIX)Qt*$(LIBRARY_SUFFIX).dll; \
3322
41645c0a134c Remove *.dll files placed by Qt in lib directory, put them in bin directory instead.
Rik <rik@octave.org>
parents: 3312
diff changeset
192 fi \
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
193 fi
3051
9cb1ce8082a4 Update qt.mk to install .pc files in native mingw
John Donoghue <john.donoghue@ieee.org>
parents: 3048
diff changeset
194
3322
41645c0a134c Remove *.dll files placed by Qt in lib directory, put them in bin directory instead.
Rik <rik@octave.org>
parents: 3312
diff changeset
195 # native build doesn't seem to succeed when installing pkgconfig files to prefix
3051
9cb1ce8082a4 Update qt.mk to install .pc files in native mingw
John Donoghue <john.donoghue@ieee.org>
parents: 3048
diff changeset
196 # 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
197 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
198 find $(1)/lib/pkgconfig/*.pc -exec $(SED) -i \
3129
d24828818d36 [MSVC] enable Qt compilation
Michael Goffioul <michael.goffioul@gmail.com>
parents: 3066
diff changeset
199 -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
200 -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
201 '{}' ';' ; \
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
202 $(INSTALL) -d '$($(PKG)_INSTALL_ROOT)$(HOST_LIBDIR)/pkgconfig'; \
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
203 cp -f '$(1)/lib/pkgconfig/'*.pc '$($(PKG)_INSTALL_ROOT)$(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
204 fi
9cb1ce8082a4 Update qt.mk to install .pc files in native mingw
John Donoghue <john.donoghue@ieee.org>
parents: 3048
diff changeset
205
3218
8ede5874e2f1 qt.mk: use make conditional
John W. Eaton <jwe@octave.org>
parents: 3216
diff changeset
206 $(if $(filter-out msvc, $(MXE_SYSTEM)),
8ede5874e2f1 qt.mk: use make conditional
John W. Eaton <jwe@octave.org>
parents: 3216
diff changeset
207 $(if $(filter-out yes, $(MXE_NATIVE_BUILD)),
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
208 $(INSTALL) -d '$($(PKG)_INSTALL_ROOT)$(BUILD_TOOLS_PREFIX)/bin'
3746
0ef36efbd9cd qt: for cross compile, move the native binaries to the builkd directory
John Donoghue
parents: 3698
diff changeset
209 mv '$($(PKG)_INSTALL_ROOT)$($(PKG)_PREFIX)/bin/moc' '$($(PKG)_INSTALL_ROOT)$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)moc'
0ef36efbd9cd qt: for cross compile, move the native binaries to the builkd directory
John Donoghue
parents: 3698
diff changeset
210 mv '$($(PKG)_INSTALL_ROOT)$($(PKG)_PREFIX)/bin/rcc' '$($(PKG)_INSTALL_ROOT)$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)rcc'
0ef36efbd9cd qt: for cross compile, move the native binaries to the builkd directory
John Donoghue
parents: 3698
diff changeset
211 mv '$($(PKG)_INSTALL_ROOT)$($(PKG)_PREFIX)/bin/uic' '$($(PKG)_INSTALL_ROOT)$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)uic'
0ef36efbd9cd qt: for cross compile, move the native binaries to the builkd directory
John Donoghue
parents: 3698
diff changeset
212 mv '$($(PKG)_INSTALL_ROOT)$($(PKG)_PREFIX)/bin/qmake' '$($(PKG)_INSTALL_ROOT)$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)qmake'
3231
ed6444cc0dcb Fix typo from commit 3218:8ede5874e2f1
John Donoghue <john.donoghue@ieee.org>
parents: 3218
diff changeset
213 )
2446
42295c6227c2 package qt: build more tools
Mark Brand <mabrand@mabrand.nl>
parents: 2445
diff changeset
214
3216
11f8ec654cd4 Avoid copying or linking files that are the same when doing native build
John W. Eaton <jwe@octave.org>
parents: 3145
diff changeset
215 # lrelease (from linguist) needed by octave for GUI build
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
216 $(MAKE) -C '$(1)/tools/linguist/lrelease' -j '$(JOBS)'
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
217 $(MAKE) -C '$(1)/tools/linguist/lrelease' -j 1 install INSTALL_ROOT='$($(PKG)_INSTALL_ROOT)'
3218
8ede5874e2f1 qt.mk: use make conditional
John W. Eaton <jwe@octave.org>
parents: 3216
diff changeset
218 $(if $(filter-out yes, $(MXE_NATIVE_BUILD)),
3746
0ef36efbd9cd qt: for cross compile, move the native binaries to the builkd directory
John Donoghue
parents: 3698
diff changeset
219 mv '$($(PKG)_INSTALL_ROOT)$($(PKG)_PREFIX)/bin/lrelease' '$($(PKG)_INSTALL_ROOT)$(BUILD_TOOLS_PREFIX)/bin/$(MXE_TOOL_PREFIX)lrelease'))
3612
77f953f0ec6d qt: fix native mingw build
John Donoghue
parents: 3594
diff changeset
220
452
ade2c475c772 new package: qt (by Mark Brand)
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
221 endef