mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
127 lines
3.9 KiB
Bash
127 lines
3.9 KiB
Bash
# $Id: PKGBUILD 111827 2011-03-01 11:00:03Z andrea $
|
|
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
|
# Contributor: Pierre Schmitz <pierre@archlinux.de>
|
|
|
|
# PlugApps: Kevin Mihelich <kevin@plugapps.com>
|
|
# - configure flags to disable mmx, etc.
|
|
|
|
plugrel=1
|
|
noautobuild=1
|
|
|
|
pkgname=qt
|
|
pkgver=4.7.2
|
|
pkgrel=1
|
|
pkgdesc='A cross-platform application and UI framework'
|
|
arch=('i686' 'x86_64')
|
|
url='http://qt.nokia.com/'
|
|
license=('GPL3' 'LGPL')
|
|
depends=('libtiff' 'libpng' 'libmng' 'sqlite3' 'ca-certificates' 'glib2' 'dbus'
|
|
'fontconfig' 'libgl' 'libsm' 'libxrandr' 'libxv' 'libxi' 'alsa-lib'
|
|
'xdg-utils' 'hicolor-icon-theme' 'desktop-file-utils')
|
|
optdepends=('postgresql-libs: PostgreSQL driver'
|
|
'libmysqlclient: MySQL driver'
|
|
'unixodbc: ODBC driver'
|
|
'libxinerama: Xinerama support'
|
|
'libxcursor: Xcursor support'
|
|
'libxfixes: Xfixes support')
|
|
makedepends=('mesa' 'postgresql-libs' 'mysql' 'unixodbc' 'cups' 'gtk2')
|
|
install="${pkgname}.install"
|
|
options=('!libtool')
|
|
_pkgfqn="qt-everywhere-opensource-src-${pkgver}"
|
|
source=("ftp://ftp.qt.nokia.com/qt/source/${_pkgfqn}.tar.gz"
|
|
'assistant.desktop' 'designer.desktop' 'linguist.desktop'
|
|
'qtconfig.desktop')
|
|
md5sums=('66b992f5c21145df08c99d21847f4fdb'
|
|
'fc211414130ab2764132e7370f8e5caa'
|
|
'85179f5e0437514f8639957e1d8baf62'
|
|
'f11852b97583610f3dbb669ebc3e21bc'
|
|
'6b771c8a81dd90b45e8a79afa0e5bbfd')
|
|
|
|
build() {
|
|
unset QMAKESPEC
|
|
export QT4DIR=$srcdir/$_pkgfqn
|
|
export PATH=${QT4DIR}/bin:${PATH}
|
|
export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
|
|
|
|
cd $srcdir/$_pkgfqn
|
|
|
|
sed -i "s|-O2|$CXXFLAGS|" mkspecs/common/g++.conf
|
|
sed -i "/^QMAKE_RPATH/s| -Wl,-rpath,||g" mkspecs/common/g++.conf
|
|
sed -i "/^QMAKE_LFLAGS\s/s|+=|+= $LDFLAGS|g" mkspecs/common/g++.conf
|
|
|
|
./configure -confirm-license -opensource \
|
|
-prefix /usr \
|
|
-docdir /usr/share/doc/qt \
|
|
-plugindir /usr/lib/qt/plugins \
|
|
-importdir /usr/lib/qt/imports \
|
|
-datadir /usr/share/qt \
|
|
-translationdir /usr/share/qt/translations \
|
|
-sysconfdir /etc \
|
|
-examplesdir /usr/share/doc/qt/examples \
|
|
-demosdir /usr/share/doc/qt/demos \
|
|
-largefile \
|
|
-plugin-sql-{psql,mysql,sqlite,odbc} \
|
|
-system-sqlite \
|
|
-xmlpatterns \
|
|
-no-phonon \
|
|
-no-phonon-backend \
|
|
-svg \
|
|
-webkit \
|
|
-script \
|
|
-scripttools \
|
|
-system-zlib \
|
|
-system-libtiff \
|
|
-system-libpng \
|
|
-system-libmng \
|
|
-system-libjpeg \
|
|
-nomake demos \
|
|
-nomake examples \
|
|
-nomake docs \
|
|
-no-rpath \
|
|
-openssl-linked \
|
|
-silent \
|
|
-optimized-qmake \
|
|
-dbus \
|
|
-reduce-relocations \
|
|
-no-separate-debug-info \
|
|
-gtkstyle \
|
|
-opengl \
|
|
-no-openvg \
|
|
-glib \
|
|
-no-mmx \
|
|
-no-3dnow \
|
|
-no-sse \
|
|
-no-sse2 \
|
|
-no-sse3 \
|
|
-no-ssse3 \
|
|
-no-sse4.1 \
|
|
-no-sse4.2 \
|
|
-no-avx
|
|
make -j1
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$_pkgfqn
|
|
make INSTALL_ROOT=$pkgdir install
|
|
|
|
# install missing icons and desktop files
|
|
for icon in tools/linguist/linguist/images/icons/linguist-*-32.png ; do
|
|
size=$(echo $(basename ${icon}) | cut -d- -f2)
|
|
install -p -D -m644 ${icon} ${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/linguist.png
|
|
done
|
|
install -p -D -m644 src/gui/dialogs/images/qtlogo-64.png ${pkgdir}/usr/share/icons/hicolor/64x64/apps/qtlogo.png
|
|
install -p -D -m644 tools/assistant/tools/assistant/images/assistant.png ${pkgdir}/usr/share/icons/hicolor/32x32/apps/assistant.png
|
|
install -p -D -m644 tools/designer/src/designer/images/designer.png ${pkgdir}/usr/share/icons/hicolor/128x128/apps/designer.png
|
|
install -d ${pkgdir}/usr/share/applications
|
|
install -m644 ${srcdir}/{linguist,designer,assistant,qtconfig}.desktop ${pkgdir}/usr/share/applications/
|
|
|
|
# install license addition
|
|
install -D -m644 LGPL_EXCEPTION.txt ${pkgdir}/usr/share/licenses/qt/LGPL_EXCEPTION.txt
|
|
|
|
# Fix wrong path in pkgconfig files
|
|
find ${pkgdir}/usr/lib/pkgconfig -type f -name '*.pc' \
|
|
-exec perl -pi -e "s, -L${srcdir}/?\S+,,g" {} \;
|
|
# Fix wrong path in prl files
|
|
find ${pkgdir}/usr/lib -type f -name '*.prl' \
|
|
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \;
|
|
}
|