|
@@ -2,15 +2,15 @@
|
|
#
|
|
#
|
|
# qtopia4 (Qtopia Core 4)
|
|
# qtopia4 (Qtopia Core 4)
|
|
# http://www.trolltech.com/
|
|
# http://www.trolltech.com/
|
|
-#
|
|
|
|
|
|
+#
|
|
# This makefile composed by Thomas Lundquist <thomasez@zelow.no>
|
|
# This makefile composed by Thomas Lundquist <thomasez@zelow.no>
|
|
#
|
|
#
|
|
# There is two versions built, one for the target and one for
|
|
# There is two versions built, one for the target and one for
|
|
# staging. The target version is built in the staging_dir and the
|
|
# staging. The target version is built in the staging_dir and the
|
|
# staging version in the toolchain_dir.
|
|
# staging version in the toolchain_dir.
|
|
#
|
|
#
|
|
-# BTW, this uses alot of FPU calls and it's pretty slow if you use
|
|
|
|
-# the kernels FPU emulation so it's better to choose soft float in the
|
|
|
|
|
|
+# BTW, this uses alot of FPU calls and it's pretty slow if you use
|
|
|
|
+# the kernels FPU emulation so it's better to choose soft float in the
|
|
# buildroot config (and uClibc.config of course, if you have your own.)
|
|
# buildroot config (and uClibc.config of course, if you have your own.)
|
|
#
|
|
#
|
|
######################################################################
|
|
######################################################################
|
|
@@ -40,15 +40,19 @@ QTOPIA4_SOURCE:=qtopia-core-opensource-src-$(QTOPIA4_VERSION).tar.gz
|
|
QTOPIA4_TARGET_DIR:=$(BUILD_DIR)/qtopia-core-opensource-src-$(QTOPIA4_VERSION)
|
|
QTOPIA4_TARGET_DIR:=$(BUILD_DIR)/qtopia-core-opensource-src-$(QTOPIA4_VERSION)
|
|
QTOPIA4_HOST_DIR:=$(TOOL_BUILD_DIR)/qtopia-core-opensource-src-$(QTOPIA4_VERSION)
|
|
QTOPIA4_HOST_DIR:=$(TOOL_BUILD_DIR)/qtopia-core-opensource-src-$(QTOPIA4_VERSION)
|
|
|
|
|
|
|
|
+ifeq ($(BR2_PACKAGE_QTOPIA4_GPL_LICENSE_APPROVED),y)
|
|
|
|
+QTOPIA4_APPROVE_GPL_LICENSE:=-confirm-license
|
|
|
|
+endif
|
|
|
|
+
|
|
endif
|
|
endif
|
|
|
|
|
|
-# If you want extra tweaking you can copy
|
|
|
|
|
|
+# If you want extra tweaking you can copy
|
|
# $(QTOPIA4_TARGET_DIR)/src/corelib/global/qconfig-myfile.h
|
|
# $(QTOPIA4_TARGET_DIR)/src/corelib/global/qconfig-myfile.h
|
|
-# to the qtopia4 packages directory (where this .mk file is) and
|
|
|
|
|
|
+# to the qtopia4 packages directory (where this .mk file is) and
|
|
# remove the comment.
|
|
# remove the comment.
|
|
# QTOPIA4_QCONFIG_COMMAND:=-qconfig myfile
|
|
# QTOPIA4_QCONFIG_COMMAND:=-qconfig myfile
|
|
#
|
|
#
|
|
-# For the options you can set in this file, look at
|
|
|
|
|
|
+# For the options you can set in this file, look at
|
|
# $(QTOPIA4_TARGET_DIR)/src/corelib/global/qfeatures.txt
|
|
# $(QTOPIA4_TARGET_DIR)/src/corelib/global/qfeatures.txt
|
|
#
|
|
#
|
|
QTOPIA4_QCONFIG_FILE:=package/qtopia4/qconfig-myfile.h
|
|
QTOPIA4_QCONFIG_FILE:=package/qtopia4/qconfig-myfile.h
|
|
@@ -81,6 +85,12 @@ QTOPIA4_ENDIAN=-little-endian
|
|
else
|
|
else
|
|
QTOPIA4_ENDIAN=-big-endian
|
|
QTOPIA4_ENDIAN=-big-endian
|
|
endif
|
|
endif
|
|
|
|
+ifeq ($(BR2_PACKAGE_QTOPIA4_DEPTHS),"")
|
|
|
|
+QTOPIA4_DEPTHS=-depths 8
|
|
|
|
+else
|
|
|
|
+QTOPIA4_DEPTHS:=$(strip $(subst ",, $(BR2_PACKAGE_QTOPIA4_DEPTHS)))
|
|
|
|
+#"))
|
|
|
|
+endif
|
|
|
|
|
|
QTOPIA4_DEBUG:=$(strip $(subst ",, $(QTOPIA4_DEBUG)))
|
|
QTOPIA4_DEBUG:=$(strip $(subst ",, $(QTOPIA4_DEBUG)))
|
|
#"))
|
|
#"))
|
|
@@ -105,12 +115,14 @@ qtopia4-source: $(DL_DIR)/$(QTOPIA4_SOURCE)
|
|
|
|
|
|
$(QTOPIA4_TARGET_DIR)/.unpacked: $(DL_DIR)/$(QTOPIA4_SOURCE)
|
|
$(QTOPIA4_TARGET_DIR)/.unpacked: $(DL_DIR)/$(QTOPIA4_SOURCE)
|
|
$(QTOPIA4_CAT) $(DL_DIR)/$(QTOPIA4_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
$(QTOPIA4_CAT) $(DL_DIR)/$(QTOPIA4_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
|
|
+ toolchain/patch-kernel.sh $(QTOPIA4_TARGET_DIR) package/qtopia4/ \
|
|
|
|
+ qtopia-$(QTOPIA4_VERSION)-\*.patch\*
|
|
touch $(QTOPIA4_TARGET_DIR)/.unpacked
|
|
touch $(QTOPIA4_TARGET_DIR)/.unpacked
|
|
|
|
|
|
# This configure is very tailored towards my needs.
|
|
# This configure is very tailored towards my needs.
|
|
$(QTOPIA4_TARGET_DIR)/.configured: $(QTOPIA4_TARGET_DIR)/.unpacked
|
|
$(QTOPIA4_TARGET_DIR)/.configured: $(QTOPIA4_TARGET_DIR)/.unpacked
|
|
# Patching configure to get rid of some feature I dont want.
|
|
# Patching configure to get rid of some feature I dont want.
|
|
- # (I don't want SQL either but there is no option for that at all.
|
|
|
|
|
|
+ # (I don't want SQL either but there is no option for that at all.
|
|
# the SQL library will be built even without the plugins/drivers.
|
|
# the SQL library will be built even without the plugins/drivers.
|
|
ifneq ($(BR2_INET_IPV6),y)
|
|
ifneq ($(BR2_INET_IPV6),y)
|
|
$(SED) 's/^CFG_IPV6=auto/CFG_IPV6=no/' $(QTOPIA4_TARGET_DIR)/configure
|
|
$(SED) 's/^CFG_IPV6=auto/CFG_IPV6=no/' $(QTOPIA4_TARGET_DIR)/configure
|
|
@@ -119,7 +131,7 @@ endif
|
|
$(SED) 's/^CFG_XINERAMA=auto/CFG_XINERAMA=no/' $(QTOPIA4_TARGET_DIR)/configure
|
|
$(SED) 's/^CFG_XINERAMA=auto/CFG_XINERAMA=no/' $(QTOPIA4_TARGET_DIR)/configure
|
|
$(SED) 's/-O2/$(TARGET_CFLAGS)/' $(QTOPIA4_TARGET_DIR)/mkspecs/qws/linux-$(BR2_PACKAGE_QTOPIA4_EMB_PLATFORM)-g++/qmake.conf
|
|
$(SED) 's/-O2/$(TARGET_CFLAGS)/' $(QTOPIA4_TARGET_DIR)/mkspecs/qws/linux-$(BR2_PACKAGE_QTOPIA4_EMB_PLATFORM)-g++/qmake.conf
|
|
-[ -f $(QTOPIA4_QCONFIG_FILE) ] && cp $(QTOPIA4_QCONFIG_FILE) \
|
|
-[ -f $(QTOPIA4_QCONFIG_FILE) ] && cp $(QTOPIA4_QCONFIG_FILE) \
|
|
- $(QTOPIA4_TARGET_DIR)/$(QTOPIA4_QCONFIG_FILE_LOCATION)
|
|
|
|
|
|
+ $(QTOPIA4_TARGET_DIR)/$(QTOPIA4_QCONFIG_FILE_LOCATION)
|
|
(cd $(QTOPIA4_TARGET_DIR); rm -rf config.cache; \
|
|
(cd $(QTOPIA4_TARGET_DIR); rm -rf config.cache; \
|
|
PATH=$(TARGET_PATH) \
|
|
PATH=$(TARGET_PATH) \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
@@ -133,7 +145,7 @@ endif
|
|
-xplatform qws/linux-$(BR2_PACKAGE_QTOPIA4_EMB_PLATFORM)-g++ \
|
|
-xplatform qws/linux-$(BR2_PACKAGE_QTOPIA4_EMB_PLATFORM)-g++ \
|
|
$(QTOPIA4_QCONFIG_COMMAND) \
|
|
$(QTOPIA4_QCONFIG_COMMAND) \
|
|
$(QTOPIA4_DEBUG) \
|
|
$(QTOPIA4_DEBUG) \
|
|
- -depths 8 \
|
|
|
|
|
|
+ $(QTOPIA4_DEPTHS) \
|
|
-no-cups \
|
|
-no-cups \
|
|
-no-nis \
|
|
-no-nis \
|
|
-no-freetype \
|
|
-no-freetype \
|
|
@@ -151,12 +163,11 @@ endif
|
|
-no-sql-tds \
|
|
-no-sql-tds \
|
|
-prefix /usr \
|
|
-prefix /usr \
|
|
-prefix-install \
|
|
-prefix-install \
|
|
- -L $(STAGING_DIR)/usr/lib \
|
|
|
|
- -I $(STAGING_DIR)/usr/include \
|
|
|
|
$(QTOPIA4_QT3SUPPORT) \
|
|
$(QTOPIA4_QT3SUPPORT) \
|
|
$(QTOPIA4_TSLIB) \
|
|
$(QTOPIA4_TSLIB) \
|
|
$(QTOPIA4_LARGEFILE) \
|
|
$(QTOPIA4_LARGEFILE) \
|
|
$(QTOPIA4_ENDIAN) \
|
|
$(QTOPIA4_ENDIAN) \
|
|
|
|
+ $(QTOPIA4_APPROVE_GPL_LICENSE) \
|
|
);
|
|
);
|
|
touch $(QTOPIA4_TARGET_DIR)/.configured
|
|
touch $(QTOPIA4_TARGET_DIR)/.configured
|
|
|
|
|
|
@@ -192,12 +203,14 @@ $(TARGET_DIR)/usr/lib/libQtCore.so.$(QTOPIA4_VERSION): $(STAGING_DIR)/usr/lib/li
|
|
|
|
|
|
$(QTOPIA4_HOST_DIR)/.unpacked: $(DL_DIR)/$(QTOPIA4_SOURCE)
|
|
$(QTOPIA4_HOST_DIR)/.unpacked: $(DL_DIR)/$(QTOPIA4_SOURCE)
|
|
$(QTOPIA4_CAT) $(DL_DIR)/$(QTOPIA4_SOURCE) | tar -C $(TOOL_BUILD_DIR) $(TAR_OPTIONS) -
|
|
$(QTOPIA4_CAT) $(DL_DIR)/$(QTOPIA4_SOURCE) | tar -C $(TOOL_BUILD_DIR) $(TAR_OPTIONS) -
|
|
|
|
+ toolchain/patch-kernel.sh $(QTOPIA4_HOST_DIR) package/qtopia4/ \
|
|
|
|
+ qtopia-$(QTOPIA4_VERSION)-\*.patch\*
|
|
touch $(QTOPIA4_HOST_DIR)/.unpacked
|
|
touch $(QTOPIA4_HOST_DIR)/.unpacked
|
|
|
|
|
|
# This configure is very tailored towards my needs.
|
|
# This configure is very tailored towards my needs.
|
|
$(QTOPIA4_HOST_DIR)/.configured: $(QTOPIA4_HOST_DIR)/.unpacked
|
|
$(QTOPIA4_HOST_DIR)/.configured: $(QTOPIA4_HOST_DIR)/.unpacked
|
|
# Patching configure to get rid of some feature I dont want.
|
|
# Patching configure to get rid of some feature I dont want.
|
|
- # (I don't want SQL either but there is no option for that at all.
|
|
|
|
|
|
+ # (I don't want SQL either but there is no option for that at all.
|
|
# the SQL library will be built even without the plugins/drivers.
|
|
# the SQL library will be built even without the plugins/drivers.
|
|
ifneq ($(BR2_INET_IPV6),y)
|
|
ifneq ($(BR2_INET_IPV6),y)
|
|
$(SED) 's/^CFG_IPV6=auto/CFG_IPV6=no/' $(QTOPIA4_HOST_DIR)/configure
|
|
$(SED) 's/^CFG_IPV6=auto/CFG_IPV6=no/' $(QTOPIA4_HOST_DIR)/configure
|
|
@@ -206,7 +219,7 @@ endif
|
|
$(SED) 's/^CFG_XINERAMA=auto/CFG_XINERAMA=no/' $(QTOPIA4_HOST_DIR)/configure
|
|
$(SED) 's/^CFG_XINERAMA=auto/CFG_XINERAMA=no/' $(QTOPIA4_HOST_DIR)/configure
|
|
$(SED) 's/-O2/$(TARGET_CFLAGS)/' $(QTOPIA4_HOST_DIR)/mkspecs/qws/linux-$(BR2_PACKAGE_QTOPIA4_EMB_PLATFORM)-g++/qmake.conf
|
|
$(SED) 's/-O2/$(TARGET_CFLAGS)/' $(QTOPIA4_HOST_DIR)/mkspecs/qws/linux-$(BR2_PACKAGE_QTOPIA4_EMB_PLATFORM)-g++/qmake.conf
|
|
-[ -f $(QTOPIA4_QCONFIG_FILE) ] && cp $(QTOPIA4_QCONFIG_FILE) \
|
|
-[ -f $(QTOPIA4_QCONFIG_FILE) ] && cp $(QTOPIA4_QCONFIG_FILE) \
|
|
- $(QTOPIA4_HOST_DIR)/$(QTOPIA4_QCONFIG_FILE_LOCATION)
|
|
|
|
|
|
+ $(QTOPIA4_HOST_DIR)/$(QTOPIA4_QCONFIG_FILE_LOCATION)
|
|
(cd $(QTOPIA4_HOST_DIR); rm -rf config.cache; \
|
|
(cd $(QTOPIA4_HOST_DIR); rm -rf config.cache; \
|
|
PATH=$(TARGET_PATH) \
|
|
PATH=$(TARGET_PATH) \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
@@ -220,7 +233,7 @@ endif
|
|
-xplatform qws/linux-$(BR2_PACKAGE_QTOPIA4_EMB_PLATFORM)-g++ \
|
|
-xplatform qws/linux-$(BR2_PACKAGE_QTOPIA4_EMB_PLATFORM)-g++ \
|
|
$(QTOPIA4_QCONFIG_COMMAND) \
|
|
$(QTOPIA4_QCONFIG_COMMAND) \
|
|
$(QTOPIA4_DEBUG) \
|
|
$(QTOPIA4_DEBUG) \
|
|
- -depths 8 \
|
|
|
|
|
|
+ $(QTOPIA4_DEPTHS) \
|
|
-no-cups \
|
|
-no-cups \
|
|
-no-nis \
|
|
-no-nis \
|
|
-no-freetype \
|
|
-no-freetype \
|
|
@@ -236,12 +249,11 @@ endif
|
|
-no-sql-tds \
|
|
-no-sql-tds \
|
|
-prefix $(QTOPIA4_STAGING_DIR) \
|
|
-prefix $(QTOPIA4_STAGING_DIR) \
|
|
-prefix-install \
|
|
-prefix-install \
|
|
- -L $(STAGING_DIR)/usr/lib \
|
|
|
|
- -I $(STAGING_DIR)/usr/include \
|
|
|
|
$(QTOPIA4_QT3SUPPORT) \
|
|
$(QTOPIA4_QT3SUPPORT) \
|
|
$(QTOPIA4_TSLIB) \
|
|
$(QTOPIA4_TSLIB) \
|
|
$(QTOPIA4_LARGEFILE) \
|
|
$(QTOPIA4_LARGEFILE) \
|
|
$(QTOPIA4_ENDIAN) \
|
|
$(QTOPIA4_ENDIAN) \
|
|
|
|
+ $(QTOPIA4_APPROVE_GPL_LICENSE) \
|
|
);
|
|
);
|
|
touch $(QTOPIA4_HOST_DIR)/.configured
|
|
touch $(QTOPIA4_HOST_DIR)/.configured
|
|
|
|
|