Qt4/opt
Download Source: | http://download.qt-project.org/official_releases/qt/4.8/4.8.5/qt-everywhere-opensource-src-4.8.5.tar.gz |
---|
Contents
Introduction to Qt4/opt
Qt is a comprehensive development framework that includes an extensive array of features, capabilities and tools that enable development of high-performance, cross-platform rich-client and server-side applications. Qt is the GUI framework on which KDE4 is built and Qt4 is the version of Qt that the KDE4 uses. You can of course use Qt for non-KDE applications as well, but if you wish to use KDE4 or any KDE4-based applications, you must have Qt4 installed on your system.
Project Homepage: http://qt-project.org/
Dependencies
Required
Optional
- CUPS
- D-BUS
- Firebird
- FontConfig
- FreeType
- Glib2
- GStreamer
- libjpeg
- libmng
- libpng
- LibTIFF
- MySQL
- NAS
- OpenSSL
- PostgreSQL
- SQLite
- SQLite3
- unixODBC
- Xinerama provided by and X Window System
- Xfixes provided by and X Window System
Configuration Information
If you would like to compile with MySQL support add the following to the configure command:
-plugin-sql-mysql -I/usr/include/mysql
If you would like to compile with PostgreSQL support add the following to the configure command:
-plugin-sql-psql -I/usr/include/postgresql/server
If you would like to compile with SQLite support add the following to the configure command:
-plugin-sql-sqlite2 -system-sqlite
If you would like to compile with SQLite3 support add the following to the configure command:
-plugin-sql-sqlite -system-sqlite
If you would like to compile with unixODBC support add the following to the configure command:
-plugin-sql-odbc
If you would like to compile with NAS support add the following to the configure command:
-system-nas-sound
If you would like to disable Qt 3 support functionality add the following to the configure command:
-no-qt3support
If you would like to disable QtWebKit module add the following to the configure command:
-no-webkit
If you would like to disable linking Qt libraries and executables using the library install path as a runtime library path add the following to the configure command:
-no-rpath
If you don't need qtxmlpatterns add the following to the configure command (since only qtxmlpatterns requires this):
-no-exceptions
If your X Window System is NOT Xorg, then add to configure:
-no-xfixes
If you want optimized qmake tool add the following to the configure command:
-optimized-qmake
If you would like to disable GLib event loop (which is known to be buggy) add the following to the configure command:
-no-glib
If you don't want to compile demos (save compile time) add the following to the configure command:
-nomake demos
If you don't want to compile examples (save compile time) add the following to the configure command:
-nomake examples
If your GCC is NOT gcc4 you probably need to disable visibility explicitly. Just add the following to the configure command:
-no-reduce-exports
Non-Multilib
If your X Window System prefix is something other than /usr/X11R6 then run the following command to change the hard coded paths in the sources:
for file in $(grep -lr "X11R6" *) do sed -i "s@/usr/X11R6@${XORG_PREFIX}@g" $file done
Make changes for pure64 systems:
for file in $(grep -lr "/lib64" *) do sed -i "s@/lib64@/lib@g" $file done
Compile the package:
mkdir -v /opt/qt-4.8.5 && ln -v -sfn qt-4.8.5 /opt/qt4 && ./configure -prefix /opt/qt4 \ -libdir /opt/qt4/lib \ -plugindir /opt/qt4/lib/plugins \ -headerdir /opt/qt4/include \ -datadir /opt/qt4/share \ -translationdir /opt/qt4/share/translations \ -docdir /opt/qt4/share/doc/qt \ -demosdir /opt/qt4/share/demos \ -examplesdir /opt/qt4/share/examples \ -sysconfdir /etc/qt4 \ -L /usr/lib \ -system-zlib \ -system-libtiff \ -system-libpng \ -system-libmng \ -system-libjpeg \ -openssl \ -opengl \ -glib \ -stl \ -reduce-relocations \ -no-separate-debug-info \ -release && make
Install the package
make install
Multilib
32Bit
If your X Window System prefix is something other than /usr/X11R6 then run the following command to change the hard coded paths in the sources:
for file in $(grep -lr "X11R6" *) do sed -i "s@/usr/X11R6@${XORG_PREFIX}@g" $file done
Compile the package
mkdir -v /opt/qt-4.8.5 && ln -v -sfn qt-4.8.5 /opt/qt4 && export QMAKESPEC=linux-g++-32 && PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ ./configure -prefix /opt/qt4 \ -libdir /opt/qt4/lib \ -plugindir /opt/qt4/lib/plugins \ -headerdir /opt/qt4/include \ -datadir /opt/qt4/lib \ -translationdir /opt/qt4/share/translations \ -docdir /opt/qt4/share/doc/qt \ -demosdir /opt/qt4/share/demos \ -examplesdir /opt/qt4/share/examples \ -sysconfdir /etc/qt4 \ -L /usr/lib \ -system-zlib \ -system-libtiff \ -system-libpng \ -system-libmng \ -system-libjpeg \ -openssl \ -opengl \ -glib \ -stl \ -reduce-relocations \ -no-separate-debug-info \ -release \ -nomake demos \ -nomake examples && make
Install the package
make install && mv -v /opt/qt4/bin/qmake{,-32} && mv -v /opt/qt4/bin/uic{,-32} && mv -v /opt/qt4/bin/uic3{,-32} && mv -v /opt/qt4/bin/moc{,-32} && mv -v /opt/qt4/include/Qt/qconfig{,-32}.h && mv -v /opt/qt4/include/QtCore/qconfig{,-32}.h unset QMAKESPEC
N32
TO BE DONE
64Bit
If your X Window System prefix is something other than /usr/X11R6 then run the following command to change the hard coded paths in the sources:
for file in $(grep -lr "X11R6" *) do sed -i "s@/usr/X11R6@${XORG_PREFIX}@g" $file done
Compile the package
mkdir -v /opt/qt-4.8.5 && ln -v -sfn qt-4.8.5 /opt/qt4 && export QMAKESPEC=linux-g++-64 && PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ ./configure -prefix /opt/qt4 \ -libdir /opt/qt4/lib64 \ -plugindir /opt/qt4/lib64/plugins \ -headerdir /opt/qt4/include \ -datadir /opt/qt4/lib64 \ -translationdir /opt/qt4/share/translations \ -docdir /opt/qt4/share/doc/qt \ -demosdir /opt/qt4/share/demos \ -examplesdir /opt/qt4/share/examples \ -sysconfdir /etc/qt4 \ -L /usr/lib64 \ -system-zlib \ -system-libtiff \ -system-libpng \ -system-libmng \ -system-libjpeg \ -openssl \ -opengl \ -glib \ -stl \ -reduce-relocations \ -no-separate-debug-info \ -release && make
Install the package
make install && mv -v /opt/qt4/bin/qmake{,-64} && mv -v /opt/qt4/bin/uic{,-64} && mv -v /opt/qt4/bin/uic3{,-64} && mv -v /opt/qt4/bin/moc{,-64} && mv -v /opt/qt4/include/Qt/qconfig{,-64}.h && mv -v /opt/qt4/include/QtCore/qconfig{,-64}.h ln -sfv /usr/bin/multiarch_wrapper /opt/qt4/bin/qmake && ln -sfv /usr/bin/multiarch_wrapper /opt/qt4/bin/uic && ln -sfv /usr/bin/multiarch_wrapper /opt/qt4/bin/uic3 && ln -sfv /usr/bin/multiarch_wrapper /opt/qt4/bin/moc unset QMAKESPEC
Create two qconfig.h header files which select the actual architecture-dependent qconfig-{32,64}.h header files:
Creating a Stub Header (Multilib Only)
Creating a Generic Stub Header
cat > /opt/qt4/include/Qt/qconfig.h << "EOF" /* qconfig.h - Stub Header */ #ifndef __STUB__QCONFIG_H__ #define __STUB__QCONFIG_H__ #if defined(__x86_64__) || \ defined(__sparc64__) || \ defined(__arch64__) || \ defined(__powerpc64__) || \ defined (__s390x__) # include "qconfig-64.h" #else # include "qconfig-32.h" #endif #endif /* __STUB__QCONFIG_H__ */ EOF
Creating a Stub Header For Mips
cat > /opt/qt4/include/Qt/qconfig.h << "EOF" /* qconfig.h - Stub Header */ #ifndef __STUB__QCONFIG_H__ #define __STUB__QCONFIG_H__ #include <sgidefs.h> #if (_MIPS_SIM == _ABIO32) # include "qconfig-32.h" #elif (_MIPS_SIM == _ABIN32) # include "qconfig-n32.h" #elif (_MIPS_SIM == _ABI64) # include "qconfig-64.h" #endif #endif /* __STUB__QCONFIG_H__ */ EOF
Creating a Stub Header (Multilib Only)
Creating a Generic Stub Header
cat > /opt/qt4/include/QtCore/qconfig.h << "EOF" /* qconfig.h - Stub Header */ #ifndef __STUB__QCONFIG_H__ #define __STUB__QCONFIG_H__ #if defined(__x86_64__) || \ defined(__sparc64__) || \ defined(__arch64__) || \ defined(__powerpc64__) || \ defined (__s390x__) # include "qconfig-64.h" #else # include "qconfig-32.h" #endif #endif /* __STUB__QCONFIG_H__ */ EOF
Creating a Stub Header For Mips
cat > /opt/qt4/include/QtCore/qconfig.h << "EOF" /* qconfig.h - Stub Header */ #ifndef __STUB__QCONFIG_H__ #define __STUB__QCONFIG_H__ #include <sgidefs.h> #if (_MIPS_SIM == _ABIO32) # include "qconfig-32.h" #elif (_MIPS_SIM == _ABIN32) # include "qconfig-n32.h" #elif (_MIPS_SIM == _ABI64) # include "qconfig-64.h" #endif #endif /* __STUB__QCONFIG_H__ */ EOF
Configuring
Non-Multilib
/etc/profile.d/20-qt4.sh
Create an addition to the Bash Startup Files:
cat > /etc/profile.d/20-qt4.sh << "EOF" # Begin /etc/profile.d/20-qt4.sh export QT4DIR="/opt/qt4" export PATH="${PATH}:${QT4DIR}/bin" export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}${PKG_CONFIG_PATH+:}${QT4DIR}/lib/pkgconfig" # End /etc/profile.d/20-qt4.sh EOF
ld.so.conf
cat >> /etc/ld.so.conf << "EOF" # Begin qt4 addition to /etc/ld.so.conf /opt/qt4/lib # End qt4 addition EOF ldconfig
Multilib
/etc/profile.d/20-qt4.sh
Create an addition to the Bash Startup Files:
cat > /etc/profile.d/20-qt4.sh << "EOF" # Begin /etc/profile.d/20-qt4.sh export QT4DIR="/opt/qt4" export PATH="${PATH}:${QT4DIR}/bin" export PKG_CONFIG_PATH32="${PKG_CONFIG_PATH32}${PKG_CONFIG_PATH32+:}${QT4DIR}/lib/pkgconfig" export PKG_CONFIG_PATHN32="${PKG_CONFIG_PATHN32}${PKG_CONFIG_PATHN32+:}${QT4DIR}/lib32/pkgconfig" export PKG_CONFIG_PATH64="${PKG_CONFIG_PATH64}${PKG_CONFIG_PATH64+:}${QT4DIR}/lib64/pkgconfig" # End /etc/profile.d/20-qt4.sh EOF
ld.so.conf
cat >> /etc/ld.so.conf << "EOF" # Begin qt4 addition to /etc/ld.so.conf /opt/qt4/lib /opt/qt4/lib32 /opt/qt4/lib64 # End qt4 addition EOF ldconfig