summaryrefslogtreecommitdiffstats
path: root/rules/qt.make
blob: e27c143c248b0e75db1e4a6010659d482a1ab6f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# -*-makefile-*-
# $Id$
#
# Copyright (C) 2003 by Robert Schwebel <r.schwebel@pengutronix.de>
#          
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

# FIXME: do something on targetinstall

#
# We provide this package
#
PACKAGES-$(PTXCONF_QT) += qt

#
# Paths and names
#
QT_VERSION	= 2.3.2
QT		= qt-x11-$(QT_VERSION)
QT_SUFFIX	= tar.gz
QT_URL		= ftp://ftp.trolltech.com/qt/source/$(QT).$(QT_SUFFIX)
QT_SOURCE	= $(SRCDIR)/$(QT).$(QT_SUFFIX)
QT_DIR		= $(BUILDDIR)/qt-$(QT_VERSION)


# ----------------------------------------------------------------------------
# Get
# ----------------------------------------------------------------------------

qt_get: $(STATEDIR)/qt.get

$(STATEDIR)/qt.get: $(qt_get_deps_default)
	@$(call targetinfo, $@)
	@$(call touch, $@)

$(QT_SOURCE):
	@$(call targetinfo, $@)
	@$(call get, QT)

# ----------------------------------------------------------------------------
# Extract
# ----------------------------------------------------------------------------

qt_extract: $(STATEDIR)/qt.extract

$(STATEDIR)/qt.extract: $(qt_extract_deps_default)
	@$(call targetinfo, $@)
	@$(call clean, $(QT_DIR))
	@$(call extract, QT)
	@$(call patchin, QT)
	@$(call touch, $@)

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

qt_prepare: $(STATEDIR)/qt.prepare

QT_PATH	=  PATH=$(CROSS_PATH)
QT_ENV 	=  $(CROSS_ENV)
QT_ENV	+= QTDIR=$(QT_DIR)

#
# autoconf
#
#QT_AUTOCONF	+= --build=$(GNU_HOST)
#QT_AUTOCONF	+= --host=$(PTXCONF_GNU_TARGET)

QT_AUTOCONF = -gif \
	-qt-libpng \
	-no-jpeg \
	-no-mng \
	-no-thread \
	-no-opengl \
	-release \
	-shared \
	-no-g++-exceptions \
	-I$(SYSROOT)/include \
	-R$(SYSROOT)/usr/lib \
	-L/usr/X11R6/lib \
	-depths 16 \
	-no-qvfb \
	-xplatform linux-g++

$(STATEDIR)/qt.prepare: $(qt_prepare_deps_default)
	@$(call targetinfo, $@)
	cd $(QT_DIR) && \
		echo "yes" | $(QT_PATH) $(QT_ENV) \
		./configure $(QT_AUTOCONF)
	@$(call touch, $@)

# ----------------------------------------------------------------------------
# Compile
# ----------------------------------------------------------------------------

qt_compile: $(STATEDIR)/qt.compile

$(STATEDIR)/qt.compile: $(qt_compile_deps_default)
	@$(call targetinfo, $@)
	$(QT_PATH) $(QT_ENV) make -C $(QT_DIR)
	@$(call touch, $@)

# ----------------------------------------------------------------------------
# Install
# ----------------------------------------------------------------------------

qt_install: $(STATEDIR)/qt.install

$(STATEDIR)/qt.install: $(qt_install_deps_default)
	@$(call targetinfo, $@)
	@$(call install, QT)
	@$(call touch, $@)

# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------

qt_targetinstall: $(STATEDIR)/qt.targetinstall

$(STATEDIR)/qt.targetinstall: $(qt_targetinstall_deps_default)
	@$(call targetinfo, $@)
	@$(call touch, $@)

# ----------------------------------------------------------------------------
# Clean
# ----------------------------------------------------------------------------

qt_clean:
	rm -rf $(STATEDIR)/qt.*
	rm -rf $(PKGDIR)/qt.*
	rm -rf $(QT_DIR)

# vim: syntax=make