diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-04-14 14:23:19 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-04-14 14:47:01 +0000 |
commit | 5b4b0cf8681f025b7f690669d88f2244e3ac0773 (patch) | |
tree | ef48215c2fa012e655ee6b731a7e696e92b7ec32 /community/qt5-qtbase/APKBUILD | |
parent | 8e6d806d685d7ac7b6543f0b1a91b3ca1e327ac1 (diff) | |
download | aports-5b4b0cf8681f025b7f690669d88f2244e3ac0773.tar.bz2 aports-5b4b0cf8681f025b7f690669d88f2244e3ac0773.tar.xz |
community/qt5-qt*: move from main
Diffstat (limited to 'community/qt5-qtbase/APKBUILD')
-rw-r--r-- | community/qt5-qtbase/APKBUILD | 215 |
1 files changed, 215 insertions, 0 deletions
diff --git a/community/qt5-qtbase/APKBUILD b/community/qt5-qtbase/APKBUILD new file mode 100644 index 0000000000..36a8f41573 --- /dev/null +++ b/community/qt5-qtbase/APKBUILD @@ -0,0 +1,215 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=qt5-qtbase +pkgver=5.8.0 +_ver=${pkgver/_p/-} +_ver=${_ver/_/-} +_ver=${_ver/beta0/beta} +_ver=${_ver/rc0/rc} +_V=${_ver/rc/RC} +pkgrel=0 +pkgdesc="Qt5 - QtBase components" +url="http://qt-project.org/" +arch="all" +license="LGPLv2 with exceptions or GPLv3 with exceptions" +_sub="$pkgname-sqlite $pkgname-odbc $pkgname-postgresql $pkgname-mysql + $pkgname-tds $pkgname-x11" +depends="" +depends_dev="mesa-dev libice-dev libsm-dev libx11-dev libxext-dev + libressl-dev fontconfig-dev freetype-dev glib-dev libpng-dev zlib-dev + sqlite-dev dbus-dev perl $_sub" +makedepends="$depends_dev + bison + cups-dev + eudev-dev + flex + freetds-dev + gawk + gperf + gtk+2.0-dev + hicolor-icon-theme + icu-dev + libinput-dev + libjpeg-turbo-dev + libxkbcommon-dev + libxi-dev + libxrandr-dev + libxrender-dev + libxslt-dev + libxv-dev + mariadb-dev + mtdev-dev + pcre-dev + postgresql-dev + unixodbc-dev + xcb-util-dev + xcb-util-image-dev + xcb-util-keysyms-dev + xcb-util-wm-dev + xcb-util-renderutil-dev + " +install="" +subpackages="$pkgname-dev $pkgname-doc $_sub" +case $pkgver in +*_beta*|*_rc*) _rel=development_releases;; +*) _rel=official_releases;; +esac +source="http://download.qt-project.org/$_rel/qt/${pkgver%.*}/$_ver/submodules/qtbase-opensource-src-$_V.tar.xz + qt-musl-iconv-no-bom.patch + libressl-compat.patch + hack-openssl_test.patch + " + +_qt5_prefix=/usr/lib/qt5 +_qt5_datadir=/usr/share/qt5 + +builddir="$srcdir"/qtbase-opensource-src-${_V%-*} +prepare() { + cd "$builddir" + for i in $source; do + case $i in + *.patch) + msg "Applying $i" + patch -p1 -i "$srcdir"/$i || return 1 + ;; + esac + done + sed -i -e "s|-O2|$CXXFLAGS|" \ + -e "/^QMAKE_RPATH/s| -Wl,-rpath,||g" \ + -e "/^QMAKE_LFLAGS\s/s|+=|+= $LDFLAGS|g" \ + mkspecs/common/*.conf || return 1 +} + +build() { + local _arch + + cd "$builddir" + + ./configure -confirm-license -opensource \ + -archdatadir "$_qt5_prefix" \ + -bindir "$_qt5_prefix"/bin \ + -datadir "$_qt5_datadir" \ + -dbus-linked \ + -docdir /usr/share/doc/qt5 \ + -examplesdir /usr/share/doc/qt5/examples \ + -glib \ + -icu \ + -importdir "$_qt5_prefix"/imports \ + -libexecdir "$_qt5_prefix"/libexec \ + -no-rpath \ + -no-separate-debug-info \ + -nomake examples \ + -opengl \ + -openssl-linked \ + -optimized-qmake \ + -plugin-sql-mysql \ + -plugin-sql-odbc \ + -plugin-sql-psql \ + -plugin-sql-sqlite \ + -plugin-sql-tds \ + -plugindir "$_qt5_prefix"/plugins \ + -prefix /usr \ + -silent \ + -sysconfdir /etc/xdg \ + -system-libjpeg \ + -system-libpng \ + -system-pcre \ + -system-sqlite \ + -system-xcb \ + -system-zlib \ + -translationdir "$_qt5_datadir"/translations \ + -no-reduce-relocations \ + || return 1 + make || return 1 +} + +package() { + cd "$builddir" + make INSTALL_ROOT="$pkgdir" install || return 1 + mkdir -p "$pkgdir"/usr/bin/ + for i in "$pkgdir"/$_qt5_prefix/bin/*; do + _name=${i##*/} + case $_name in + *.*) _dest="$pkgdir"/usr/bin/${_name%.*}-qt5.${_name##*.};; + *) _dest="$pkgdir"/usr/bin/${_name%.*}-qt5;; + esac + ln -s ../lib/qt5/bin/"${_name}" "$_dest" + done +} + +_mv_files() { + local i + for i; do + mkdir -p "$subpkgdir"/${i%/*} + mv "$pkgdir"/$i "$subpkgdir"/$i || return 1 + done +} + +dev() { + cd "$pkgdir" + _mv_files usr/lib/qt5/mkspecs \ + usr/lib/cmake \ + usr/lib/qt5/bin \ + usr/bin \ + $(find usr/ -name '*.prl') \ + || return 1 + default_dev +} + +sqlite() { + pkgdesc="SQLite driver for Qt5's SQL classes" + cd "$pkgdir" + _mv_files usr/lib/qt5/plugins/sqldrivers/libqsqlite* +} + +odbc() { + pkgdesc="ODBC driver for Qt5's SQL classes" + cd "$pkgdir" + _mv_files usr/lib/qt5/plugins/sqldrivers/libqsqlodbc* +} + +postgresql() { + pkgdesc="PostgreSQL driver for Qt5's SQL classes" + cd "$pkgdir" + _mv_files usr/lib/qt5/plugins/sqldrivers/libqsqlpsql* +} + +mysql() { + pkgdesc="MySQL driver for Qt5's SQL classes" + cd "$pkgdir" + _mv_files usr/lib/qt5/plugins/sqldrivers/libqsqlmysql* +} + +tds() { + pkgdesc="TDS driver for Qt5's SQL classes" + cd "$pkgdir" + _mv_files usr/lib/qt5/plugins/sqldrivers/libqsqltds* +} + +x11() { + pkgdesc="Qt5 GUI-related libraries" + depends="hicolor-icon-theme" + cd "$pkgdir" + _mv_files \ + usr/lib/libQt5EglFSDeviceIntegration.so.* \ + usr/lib/libQt5EglFsKmsSupport.so.* \ + usr/lib/libQt5Gui.so.* \ + usr/lib/libQt5OpenGL.so.* \ + usr/lib/libQt5PrintSupport.so.* \ + usr/lib/libQt5Widgets.so.* \ + usr/lib/libQt5XcbQpa.so.* \ + usr/lib/qt5/plugins/egldeviceintegrations \ + usr/lib/qt5/plugins/generic \ + usr/lib/qt5/plugins/image* \ + usr/lib/qt5/plugins/platform* \ + usr/lib/qt5/plugins/printsupport* \ + usr/lib/qt5/plugins/xcbglintegrations \ + || return 1 + + scanelf -Rn usr/ | egrep '(libX|libQt5Gui|libGL)' && return 1 + return 0 +} + +sha512sums="36a1ba4b0dba02ae65c3b2b0aa3fb3767cbee4dbdf204c9ded7d1700e70144ce85a3a66167f86cc716a1fdd38d832962b2a752e803b0647d03032b2685da5ced qtbase-opensource-src-5.8.0.tar.xz +7d68421a14f0259535c977d8a521c98918193c107b76ac664571b12f5b0d7588a0d0e1297af412a26753a393b21f3f44c3274fa8ab5bc87f03705a3a03acb444 qt-musl-iconv-no-bom.patch +af284ebb51e3d903275f0f43901755fee0d0071a2fa4f5d6e8a4b00d9185d9d9fffba8e5cbda8c4aa2b3acde69fd26a449b23ad104f509fd4156f6908e0b43da libressl-compat.patch +3bc1380268f077587114cfa535c58403f59c4c931902d0599633e1365f075d2e253b6f461e22ed3fe3adb12ef45ea97e1dbcbc1bbe0d151435703986f25c44c6 hack-openssl_test.patch" |