diff options
Diffstat (limited to 'extra/qt/PKGBUILD')
-rw-r--r-- | extra/qt/PKGBUILD | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/extra/qt/PKGBUILD b/extra/qt/PKGBUILD index 00c71f598..ee76a64b1 100644 --- a/extra/qt/PKGBUILD +++ b/extra/qt/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=qt pkgname=('qt' 'qt-private-headers') pkgver=4.8.0 pkgrel=6 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://qt-project.org/' license=('GPL3' 'LGPL') makedepends=('libtiff' 'libpng' 'libmng' 'sqlite3' 'ca-certificates' 'glib2' 'dbus' @@ -21,6 +21,7 @@ source=("http://get.qt.nokia.com/qt/source/${_pkgfqn}.tar.gz" 'fix-qgraphicsscene-regression.patch' 'improved-filter-event.patch' 'qurl-backward-compatibility.patch' + 'declarative-fix-sigbus.patch' 'improve-cups-support.patch') md5sums=('e8a5fdbeba2927c948d9f477a6abe904' 'fc211414130ab2764132e7370f8e5caa' @@ -30,11 +31,14 @@ md5sums=('e8a5fdbeba2927c948d9f477a6abe904' 'c2e91fc028250a590e76effe234468e2' '444ebeb716d7c7379835efb8aa88e6c8' '7bc255a36733d0fbc80c1902ade4beca' + 'aac963d05a9d5733e2bfce9e26607f51' 'c439c7731c25387352d8453ca7574971') build() { cd "${srcdir}"/${_pkgfqn} + # MIPS N32-specific fix, shouldn't affect correctness on other platforms. + patch -Np1 -i "${srcdir}/declarative-fix-sigbus.patch" # (FS#28707) patch -p1 -i "${srcdir}"/fix-qgraphicsscene-regression.patch # (FS#27757) (KDEBUG#275469) @@ -47,6 +51,8 @@ build() { export QT4DIR="${srcdir}"/${_pkgfqn} export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH} + [ "${CARCH}" = "mips64el" ] && export CXXFLAGS="${CXXFLAGS} -fpermissive" + sed -i "s|-O2|${CXXFLAGS}|" mkspecs/common/{g++,gcc}-base.conf sed -i "/^QMAKE_LFLAGS_RPATH/s| -Wl,-rpath,||g" mkspecs/common/gcc-base-unix.conf sed -i "/^QMAKE_LFLAGS\s/s|+=|+= ${LDFLAGS}|g" mkspecs/common/gcc-base.conf |