2016-07-18 20:58:20 +02:00
|
|
|
# Description: Qt Free Edition, version 5.x
|
2016-02-24 01:27:23 +01:00
|
|
|
# URL: http://qt-project.org/
|
2016-07-18 20:58:20 +02:00
|
|
|
# Packager: alihan-ozturk28@hotmail.com
|
|
|
|
# Depends on: xorg-proto xorg-libxkbfile xorg-xtrans xorg-libx11 xorg-libxext xorg-libfs xorg-libice xorg-libsm xorg-libxscrnsaver xorg-libxt xorg-libxmu xorg-libxpm xorg-libxaw xorg-libxfixes xorg-libxcomposite xorg-libxrender xorg-libxcursor xorg-libxdamage xorg-libfontenc xorg-libxfont xorg-libxft xorg-libxi xorg-libxinerama xorg-libxrandr xorg-libxres xorg-libxtst xorg-libxv xorg-libxvmc xorg-libxxf86dga xorg-libxxf86vm xorg-libdmx xorg-libpciaccess xorg-libxkbfile xorg-libxshmfence xcb-proto xcb-util-image xcb-util-keysyms xcb-util-renderutil xcb-util-wm alsa-lib cups dbus glib gstreamer-plugins-base icu jasper libjpeg-turbo libmng libpng libtiff libwebp xorg-mesa mtdev pcre sqlite ruby gstreamer1-plugins-base geoclue gtk2 harfbuzz postgresql pulseaudio unixodbc libxkbcommon mariadb
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
|
|
name=qt5
|
2016-07-25 15:43:15 +02:00
|
|
|
version=5.7.0
|
2016-07-18 20:58:20 +02:00
|
|
|
release=1
|
|
|
|
|
|
|
|
source=(http://download.qt.io/official_releases/qt/${version%.*}/$version/single/qt-everywhere-opensource-src-$version.tar.xz
|
2016-07-25 15:43:15 +02:00
|
|
|
qtbug-53237.patch
|
|
|
|
qtbug-53071.patch
|
|
|
|
qtbug-53071b.patch)
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
|
|
build() {
|
2016-07-25 15:43:15 +02:00
|
|
|
|
2016-07-19 09:59:07 +02:00
|
|
|
QT5PREFIX=/usr
|
|
|
|
QT5BINDIR=$QT5PREFIX/lib/qt5/bin
|
|
|
|
|
|
|
|
cd qt-everywhere-opensource-src-$version
|
|
|
|
|
|
|
|
# Fix parsing of tzfile(5) POSIX rule zone names with bracket quotes
|
|
|
|
patch -p1 -d qtbase -i $SRC/qtbug-53071.patch
|
|
|
|
patch -p1 -d qtbase -i $SRC/qtbug-53071b.patch
|
|
|
|
|
2016-07-25 15:43:15 +02:00
|
|
|
# Fix UNSIGNED values in QMYSQL
|
|
|
|
patch -p1 -d qtbase -i $SRC/qtbug-53237.patch
|
2016-07-19 09:59:07 +02:00
|
|
|
|
|
|
|
# Respect system CXX
|
|
|
|
[ "$CXX" ] || CXX=g++
|
|
|
|
sed -i "/^QMAKE_CXX\s/s|=.*|= $CXX|" qtbase/mkspecs/common/g++-base.conf
|
|
|
|
|
|
|
|
# Remove obsolete xorg path
|
|
|
|
sed -i 's|X11R6/||g' qtbase/mkspecs/*/*.conf
|
|
|
|
|
|
|
|
# Respect system CXXFLAGS
|
|
|
|
sed -i "s|^\(QMAKE_CFLAGS_RELEASE.*\)|\1 ${CXXFLAGS}|" qtbase/mkspecs/common/gcc-base.conf
|
|
|
|
|
|
|
|
# Respect system LDFLAGS
|
|
|
|
sed -i "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 ${LDFLAGS}|" qtbase/mkspecs/common/g++-unix.conf
|
|
|
|
|
|
|
|
# Fix quoting bug
|
|
|
|
sed -i 's|"$COMPILER" -c|$COMPILER -c|' qtbase/config.tests/unix/fvisibility.test
|
|
|
|
|
|
|
|
./configure -opensource -confirm-license \
|
|
|
|
-prefix $QT5PREFIX \
|
|
|
|
-sysconfdir /etc/xdg \
|
|
|
|
-bindir $QT5BINDIR \
|
|
|
|
-plugindir /usr/lib/qt5/plugins \
|
|
|
|
-importdir /usr/lib/qt5/imports \
|
|
|
|
-headerdir /usr/include/qt5 \
|
|
|
|
-datadir /usr/share/qt5 \
|
|
|
|
-translationdir /usr/share/qt5/translations \
|
|
|
|
-plugin-sql-{psql,mysql,sqlite,odbc} \
|
2016-07-25 15:43:15 +02:00
|
|
|
-openssl-linked \
|
|
|
|
-dbus-linked \
|
|
|
|
-system-sqlite \
|
|
|
|
-system-zlib \
|
|
|
|
-system-harfbuzz \
|
|
|
|
-optimized-qmake \
|
2016-07-19 09:59:07 +02:00
|
|
|
-nomake examples \
|
2016-07-25 15:43:15 +02:00
|
|
|
-no-separate-debug-info \
|
|
|
|
-no-strip \
|
|
|
|
-shared \
|
|
|
|
-no-rpath \
|
2016-07-19 09:59:07 +02:00
|
|
|
-release -reduce-relocations
|
|
|
|
|
|
|
|
make
|
|
|
|
make INSTALL_ROOT=$PKG install
|
|
|
|
|
|
|
|
find $PKG/usr/ -name qt_lib_bootstrap_private.pri \
|
|
|
|
-exec sed -i -e "s:$PWD/qtbase:/$QT5PREfiX/lib/:g" {} \; &&
|
|
|
|
|
|
|
|
find $PKG/usr -name \*.prl \
|
|
|
|
-exec sed -i -e '/^QmAKE_PRL_BUiLD_DiR/d' {} \;
|
|
|
|
|
|
|
|
install -v -dm755 $PKG/usr/share/pixmaps/
|
|
|
|
|
|
|
|
install -v -Dm644 qttools/src/assistant/assistant/images/assistant-128.png \
|
|
|
|
$PKG/usr/share/pixmaps/assistant-qt5.png
|
|
|
|
|
|
|
|
install -v -Dm644 qttools/src/designer/src/designer/images/designer.png \
|
|
|
|
$PKG/usr/share/pixmaps/designer-qt5.png
|
|
|
|
|
|
|
|
install -v -Dm644 qttools/src/linguist/linguist/images/icons/linguist-128-32.png \
|
|
|
|
$PKG/usr/share/pixmaps/linguist-qt5.png
|
|
|
|
|
|
|
|
install -v -Dm644 qttools/src/qdbus/qdbusviewer/images/qdbusviewer-128.png \
|
|
|
|
$PKG/usr/share/pixmaps/qdbusviewer-qt5.png
|
|
|
|
|
|
|
|
install -dm755 $PKG/usr/share/applications
|
|
|
|
|
|
|
|
|
|
|
|
cat > $PKG/usr/share/applications/assistant-qt5.desktop << "EOf"
|
|
|
|
[Desktop Entry]
|
|
|
|
Name=Qt5 Assistant
|
2016-07-25 15:43:15 +02:00
|
|
|
Comment=Shows Qt5 documentation and examples
|
2016-07-24 20:07:53 +02:00
|
|
|
Exec=assistant-qt5
|
2016-07-25 15:43:15 +02:00
|
|
|
Icon=/usr/share/pixmaps/assistant-qt5
|
2016-07-19 09:59:07 +02:00
|
|
|
Terminal=false
|
|
|
|
Encoding=UTf-8
|
|
|
|
Type=Application
|
2016-07-25 15:43:15 +02:00
|
|
|
Categories=Qt;Development;Documentation;
|
2016-07-19 09:59:07 +02:00
|
|
|
EOf
|
|
|
|
|
|
|
|
cat > $PKG/usr/share/applications/designer-qt5.desktop << "EOf"
|
|
|
|
[Desktop Entry]
|
|
|
|
Name=Qt5 Designer
|
|
|
|
GenericName=interface Designer
|
2016-07-25 15:43:15 +02:00
|
|
|
Comment=Design GUis for Qt5 applications
|
2016-07-24 20:07:53 +02:00
|
|
|
Exec=designer-qt5
|
2016-07-25 15:43:15 +02:00
|
|
|
Icon=/usr/share/pixmaps/designer-qt5
|
|
|
|
MimeType=application/x-designer;
|
2016-07-19 09:59:07 +02:00
|
|
|
Terminal=false
|
|
|
|
Encoding=UTf-8
|
|
|
|
Type=Application
|
2016-07-25 15:43:15 +02:00
|
|
|
Categories=Qt;Development;
|
2016-07-19 09:59:07 +02:00
|
|
|
EOf
|
|
|
|
|
|
|
|
cat > $PKG/usr/share/applications/linguist-qt5.desktop << "EOf"
|
|
|
|
[Desktop Entry]
|
|
|
|
Name=Qt5 Linguist
|
2016-07-25 15:43:15 +02:00
|
|
|
Comment=Add translations to Qt5 applications
|
2016-07-24 20:07:53 +02:00
|
|
|
Exec=linguist-qt5
|
2016-07-25 15:43:15 +02:00
|
|
|
Icon=/usr/share/pixmaps/linguist-qt5
|
|
|
|
MimeType=text/vnd.trolltech.linguist;application/x-linguist;
|
2016-07-19 09:59:07 +02:00
|
|
|
Terminal=false
|
|
|
|
Encoding=UTf-8
|
|
|
|
Type=Application
|
2016-07-25 15:43:15 +02:00
|
|
|
Categories=Qt;Development;
|
2016-07-19 09:59:07 +02:00
|
|
|
EOf
|
|
|
|
|
|
|
|
cat > $PKG/usr/share/applications/qdbusviewer-qt5.desktop << "EOf"
|
|
|
|
[Desktop Entry]
|
|
|
|
Name=Qt5 QDbusviewer
|
|
|
|
GenericName=D-Bus Debugger
|
2016-07-25 15:43:15 +02:00
|
|
|
Comment=Debug D-Bus applications
|
2016-07-24 20:07:53 +02:00
|
|
|
Exec=qdbusviewer-qt5
|
2016-07-25 15:43:15 +02:00
|
|
|
Icon=/usr/share/pixmaps/qdbusviewer-qt5
|
2016-07-19 09:59:07 +02:00
|
|
|
Terminal=false
|
|
|
|
Encoding=UTf-8
|
|
|
|
Type=Application
|
2016-07-25 15:43:15 +02:00
|
|
|
Categories=Qt;Development;Debugger;
|
2016-07-19 09:59:07 +02:00
|
|
|
EOf
|
|
|
|
|
|
|
|
mkdir -p $PKG/etc/profile.d
|
|
|
|
cat > $PKG/etc/profile.d/qt5.sh << EOf
|
|
|
|
# Begin /etc/profile.d/qt5.sh
|
|
|
|
|
|
|
|
QT5PREFIX=$QT5PREFIX
|
|
|
|
QT5DIR=$QT5PREFIX
|
|
|
|
QT5BINDIR=$QT5PREFIX/lib/qt5/bin
|
|
|
|
export QT5PREFIX QT5BINDIR QT5DIR
|
|
|
|
|
|
|
|
# End /etc/profile.d/qt5.sh
|
|
|
|
EOf
|
|
|
|
|
2016-07-25 15:43:15 +02:00
|
|
|
|
2016-07-19 09:59:07 +02:00
|
|
|
mkdir -p $PKG/usr/bin
|
|
|
|
|
|
|
|
for i in $PKG/usr/lib/qt5/bin/*; do
|
|
|
|
ln -sv /usr/lib/qt5/bin/$(basename $i) $PKG/usr/bin/$(basename $i)-qt5
|
|
|
|
done
|
|
|
|
|
|
|
|
cat > $PKG/usr/bin/setqt5 << EOF
|
|
|
|
if [ "x\$QT4BINDIR" != "x/usr/bin" ] && [ "x\$QT4BINDIR" != "x" ]; then pathremove $QT4BINDIR; fi
|
|
|
|
if [ "x\$QT5BINDIR" != "x/usr/bin" ]; then pathprepend $QT5BINDIR; fi
|
|
|
|
echo \$PATH
|
|
|
|
EOF
|
2016-02-24 01:27:23 +01:00
|
|
|
}
|