extra/qt5 fixes (#443)

This commit is contained in:
Kevin Mihelich 2013-04-16 21:25:57 +00:00
parent 24fca07359
commit 10ef57f347

View file

@ -4,7 +4,7 @@
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org> # ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - removed libfbclient, ibase # - removed libfbclient, ibase
# - no x86/neon optimizations # - no x86/neon optimizations
# - disabled distcc, restricted makeflags to -j2 # - disabled distcc, restricted makeflags to -j3
# - enabled opengl es2, mesa makedepend for headers # - enabled opengl es2, mesa makedepend for headers
highmem=1 highmem=1
@ -24,7 +24,7 @@ pkgname=('qt5-base'
'qt5-webkit' 'qt5-webkit'
'qt5-xmlpatterns') 'qt5-xmlpatterns')
pkgver=5.0.2 pkgver=5.0.2
pkgrel=1 pkgrel=1.1
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
url='http://qt-project.org/' url='http://qt-project.org/'
license=('GPL3' 'LGPL') license=('GPL3' 'LGPL')
@ -196,12 +196,6 @@ package_qt5-jsbackend() {
# Fix wrong path in prl files # Fix wrong path in prl files
find "${pkgdir}/usr/lib" -type f -name '*.prl' \ find "${pkgdir}/usr/lib" -type f -name '*.prl' \
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \; -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \;
# Useful symlinks
install -d "${pkgdir}"/usr/bin
for b in "${pkgdir}"/usr/lib/qt/bin/*; do
ln -s /usr/lib/qt/bin/$(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
done
} }
package_qt5-xmlpatterns() { package_qt5-xmlpatterns() {
@ -215,6 +209,12 @@ package_qt5-xmlpatterns() {
# Fix wrong path in prl files # Fix wrong path in prl files
find "${pkgdir}/usr/lib" -type f -name '*.prl' \ find "${pkgdir}/usr/lib" -type f -name '*.prl' \
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \; -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \;
# Useful symlinks
install -d "${pkgdir}"/usr/bin
for b in "${pkgdir}"/usr/lib/qt/bin/*; do
ln -s /usr/lib/qt/bin/$(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
done
} }
package_qt5-translations() { package_qt5-translations() {
@ -224,12 +224,6 @@ package_qt5-translations() {
cd ${_pkgfqn}/qttranslations cd ${_pkgfqn}/qttranslations
make INSTALL_ROOT="${pkgdir}" install make INSTALL_ROOT="${pkgdir}" install
# Useful symlinks
install -d "${pkgdir}"/usr/bin
for b in "${pkgdir}"/usr/lib/qt/bin/*; do
ln -s /usr/lib/qt/bin/$(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
done
} }
package_qt5-multimedia() { package_qt5-multimedia() {
@ -331,6 +325,12 @@ package_qt5-tools() {
# Fix wrong path in prl files # Fix wrong path in prl files
find "${pkgdir}/usr/lib" -type f -name '*.prl' \ find "${pkgdir}/usr/lib" -type f -name '*.prl' \
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \; -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \;
# Useful symlinks
install -d "${pkgdir}"/usr/bin
for b in "${pkgdir}"/usr/lib/qt/bin/*; do
ln -s /usr/lib/qt/bin/$(basename $b) "${pkgdir}"/usr/bin/$(basename $b)-qt5
done
} }
package_qt5-webkit() { package_qt5-webkit() {