mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
extra/qt to 4.7.2-5
This commit is contained in:
parent
80fb5739cb
commit
364dedf8c0
1 changed files with 132 additions and 28 deletions
|
@ -1,31 +1,23 @@
|
|||
# $Id: PKGBUILD 111827 2011-03-01 11:00:03Z andrea $
|
||||
# $Id: PKGBUILD 116416 2011-03-23 17:59:09Z 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.
|
||||
# - Just say NO to x86 optimizations ;)
|
||||
|
||||
plugrel=1
|
||||
noautobuild=1
|
||||
|
||||
pkgname=qt
|
||||
pkgbase=qt
|
||||
pkgname=('qt' 'qt-private-headers')
|
||||
pkgver=4.7.2
|
||||
pkgrel=1
|
||||
pkgdesc='A cross-platform application and UI framework'
|
||||
pkgrel=5
|
||||
arch=('i686' 'x86_64')
|
||||
url='http://qt.nokia.com/'
|
||||
license=('GPL3' 'LGPL')
|
||||
depends=('libtiff' 'libpng' 'libmng' 'sqlite3' 'ca-certificates' 'glib2' 'dbus'
|
||||
makedepends=('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"
|
||||
'xdg-utils' 'hicolor-icon-theme' 'desktop-file-utils' 'mesa' 'postgresql-libs'
|
||||
'mysql' 'unixodbc' 'cups' 'gtk2')
|
||||
options=('!libtool')
|
||||
_pkgfqn="qt-everywhere-opensource-src-${pkgver}"
|
||||
source=("ftp://ftp.qt.nokia.com/qt/source/${_pkgfqn}.tar.gz"
|
||||
|
@ -88,20 +80,32 @@ build() {
|
|||
-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
|
||||
-no-mmx \
|
||||
-no-3dnow \
|
||||
-no-sse \
|
||||
-no-sse2 \
|
||||
-no-sse3 \
|
||||
-no-ssse3 \
|
||||
-no-sse4.1 \
|
||||
-no-sse4.2 \
|
||||
-no-avx
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgfqn
|
||||
package_qt() {
|
||||
pkgdesc='A cross-platform application and UI framework'
|
||||
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')
|
||||
install='qt.install'
|
||||
|
||||
cd $srcdir/$_pkgfqn
|
||||
make INSTALL_ROOT=$pkgdir install
|
||||
|
||||
# install missing icons and desktop files
|
||||
|
@ -125,3 +129,103 @@ package() {
|
|||
find ${pkgdir}/usr/lib -type f -name '*.prl' \
|
||||
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \;
|
||||
}
|
||||
|
||||
package_qt-private-headers(){
|
||||
pkgdesc="Qt private headers for development"
|
||||
depends=("qt=${pkgver}")
|
||||
|
||||
install -d ${pkgdir}/usr/include/phonon/private
|
||||
cd ${srcdir}/$_pkgfqn/src/3rdparty/phonon/phonon/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/phonon/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/Qt3Support/private
|
||||
cd ${srcdir}/$_pkgfqn/src/qt3support/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/Qt3Support/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtCore/private
|
||||
cd ${srcdir}/$_pkgfqn/src/corelib/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtCore/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtDBus/private
|
||||
cd ${srcdir}/$_pkgfqn/src/dbus/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtDBus/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtDeclarative/private
|
||||
cd ${srcdir}/$_pkgfqn/src/declarative/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtDeclarative/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtDesigner/private
|
||||
cd ${srcdir}/$_pkgfqn/tools/designer/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtDesigner/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtGui/private
|
||||
cd ${srcdir}/$_pkgfqn/src/gui/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtGui/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtHelp/private
|
||||
cd ${srcdir}/$_pkgfqn/tools/assistant/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtHelp/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtMultimedia/private
|
||||
cd ${srcdir}/$_pkgfqn/src/multimedia/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtMultimedia/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtNetwork/private
|
||||
cd ${srcdir}/$_pkgfqn/src/network/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtNetwork/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtOpenGL/private
|
||||
cd ${srcdir}/$_pkgfqn/src/opengl/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtOpenGL/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtScript/private
|
||||
cd ${srcdir}/$_pkgfqn/src/script/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtScript/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtScriptTools/private
|
||||
cd ${srcdir}/$_pkgfqn/src/scripttools/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtScriptTools/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtSql/private
|
||||
cd ${srcdir}/$_pkgfqn/src/sql/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtSql/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtSvg/private
|
||||
cd ${srcdir}/$_pkgfqn/src/svg/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtSvg/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtTest/private
|
||||
cd ${srcdir}/$_pkgfqn/src/testlib/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtTest/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtUiTools/private
|
||||
cd ${srcdir}/$_pkgfqn/tools/designer/src/uitools
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtUiTools/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtWebKit/private
|
||||
cd ${srcdir}/$_pkgfqn/src/3rdparty/webkit
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtWebKit/private/ \; &> /dev/null
|
||||
|
||||
install -d ${pkgdir}/usr/include/QtXmlPatterns/private
|
||||
cd ${srcdir}/$_pkgfqn/src/xmlpatterns/
|
||||
find . -name "*_p.h" -exec install -m644 {} \
|
||||
${pkgdir}/usr/include/QtXmlPatterns/private/ \; &> /dev/null
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue