summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
Diffstat (limited to 'extra')
-rw-r--r--extra/akonadi/PKGBUILD13
-rw-r--r--extra/claws-mail-extra-plugins/PKGBUILD4
-rw-r--r--extra/cmake/PKGBUILD13
-rw-r--r--extra/cmake/use-qmake4-for-qt4.patch11
-rw-r--r--extra/evince/PKGBUILD4
-rw-r--r--extra/graphviz/PKGBUILD11
-rw-r--r--extra/gtk3/PKGBUILD18
-rw-r--r--extra/gvfs/PKGBUILD4
-rw-r--r--extra/libgxps/PKGBUILD4
-rw-r--r--extra/libkolabxml/PKGBUILD15
-rw-r--r--extra/libxkbcommon/PKGBUILD28
-rw-r--r--extra/mariadb/PKGBUILD10
-rw-r--r--extra/mariadb/mariadb.install5
-rw-r--r--extra/mkvtoolnix/PKGBUILD8
-rw-r--r--extra/pkgfile/PKGBUILD4
-rw-r--r--extra/qt5/PKGBUILD57
-rw-r--r--extra/qwt/PKGBUILD13
-rw-r--r--extra/totem-plparser/PKGBUILD4
18 files changed, 115 insertions, 111 deletions
diff --git a/extra/akonadi/PKGBUILD b/extra/akonadi/PKGBUILD
index 0ba82ecb3..2576210ef 100644
--- a/extra/akonadi/PKGBUILD
+++ b/extra/akonadi/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 178946 2013-03-01 10:19:03Z andrea $
+# $Id: PKGBUILD 179115 2013-03-03 18:48:13Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
pkgname=akonadi
-pkgver=1.9.0
-pkgrel=3
+pkgver=1.9.1
+pkgrel=1
pkgdesc="PIM layer, which provides an asynchronous API to access all kind of PIM data"
arch=('i686' 'x86_64')
url='http://community.kde.org/KDE_PIM/Akonadi'
@@ -13,17 +13,16 @@ depends=('shared-mime-info' 'boost-libs' 'mysql' 'soprano')
makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
install="${pkgname}.install"
source=("http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2")
-md5sums=('51ef4c9455f97ce4346c5934174b9da8')
+md5sums=('f150d5e9b4776d683d0b1d64316f0276')
build() {
- . /etc/profile.d/qt4.sh
-
mkdir build
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
- -DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
+ -DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE \
+ -DQT_QMAKE_EXECUTABLE=qmake-qt4
make
}
diff --git a/extra/claws-mail-extra-plugins/PKGBUILD b/extra/claws-mail-extra-plugins/PKGBUILD
index b5f7889a6..8c9b61d23 100644
--- a/extra/claws-mail-extra-plugins/PKGBUILD
+++ b/extra/claws-mail-extra-plugins/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 171015 2012-11-14 20:36:10Z andyrtr $
+# $Id: PKGBUILD 179102 2013-03-03 17:28:30Z dreisner $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# Contributor: Mildred <mildred593 at online dot fr>
pkgname=claws-mail-extra-plugins
pkgver=3.9.0
-pkgrel=1
+pkgrel=2
pkgdesc="Extra plugins for claws-mail"
url="http://www.claws-mail.org/plugins.php?branch=EXT"
license=('GPL3')
diff --git a/extra/cmake/PKGBUILD b/extra/cmake/PKGBUILD
index 5424c6049..36f171cac 100644
--- a/extra/cmake/PKGBUILD
+++ b/extra/cmake/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 178953 2013-03-01 10:19:53Z andrea $
+# $Id: PKGBUILD 179103 2013-03-03 17:28:31Z dreisner $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
pkgname=cmake
pkgver=2.8.10.2
-pkgrel=3
+pkgrel=4
pkgdesc="A cross-platform open-source make system"
arch=('i686' 'x86_64')
url="http://www.cmake.org/"
@@ -13,10 +13,8 @@ depends=('curl' 'libarchive' 'shared-mime-info')
makedepends=('qt5-base' 'emacs')
optdepends=('qt5-base: cmake-gui')
install="${pkgname}.install"
-source=("http://www.cmake.org/files/v2.8/${pkgname}-${pkgver}.tar.gz"
- 'use-qmake4-for-qt4.patch')
-md5sums=('097278785da7182ec0aea8769d06860c'
- '3136ec7953f2e01cc099f38dbd2655e2')
+source=("http://www.cmake.org/files/v2.8/${pkgname}-${pkgver}.tar.gz")
+md5sums=('097278785da7182ec0aea8769d06860c')
build() {
cd ${pkgname}-${pkgver}
@@ -25,9 +23,6 @@ build() {
export CFLAGS="${CFLAGS} -fPIC"
export CXXFLAGS="${CXXFLAGS} -fPIC"
- # Do not look for 'qmake' as this could referer to the qt5 version
- patch -p1 -i "${srcdir}"/use-qmake4-for-qt4.patch
-
./bootstrap --prefix=/usr \
--mandir=/share/man \
--docdir=/share/doc/cmake \
diff --git a/extra/cmake/use-qmake4-for-qt4.patch b/extra/cmake/use-qmake4-for-qt4.patch
deleted file mode 100644
index 6e1e6ead1..000000000
--- a/extra/cmake/use-qmake4-for-qt4.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cmake-2.8.10.2/Modules/FindQt4.cmake~ 2013-02-24 12:13:41.172266220 +0000
-+++ cmake-2.8.10.2/Modules/FindQt4.cmake 2013-02-24 12:20:11.229349625 +0000
-@@ -497,7 +497,7 @@
- # check for qmake
- # Debian uses qmake-qt4
- # macports' Qt uses qmake-mac
--find_program(QT_QMAKE_EXECUTABLE NAMES qmake qmake4 qmake-qt4 qmake-mac
-+find_program(QT_QMAKE_EXECUTABLE NAMES qmake4 qmake-qt4 qmake-mac
- PATHS
- ENV QTDIR
- "[HKEY_CURRENT_USER\\Software\\Trolltech\\Versions\\${qt_install_version};InstallDir]"
diff --git a/extra/evince/PKGBUILD b/extra/evince/PKGBUILD
index 6954ffde0..04e7dc001 100644
--- a/extra/evince/PKGBUILD
+++ b/extra/evince/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 169867 2012-10-30 22:25:11Z heftig $
+# $Id: PKGBUILD 179104 2013-03-03 17:28:32Z dreisner $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=evince
pkgver=3.6.1
-pkgrel=1
+pkgrel=2
pkgdesc="Simply a document viewer"
url="http://projects.gnome.org/evince/"
arch=('i686' 'x86_64')
diff --git a/extra/graphviz/PKGBUILD b/extra/graphviz/PKGBUILD
index 2337a154c..f77500bc2 100644
--- a/extra/graphviz/PKGBUILD
+++ b/extra/graphviz/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 178958 2013-03-01 10:20:33Z andrea $
+# $Id: PKGBUILD 179080 2013-03-03 07:46:56Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: kevin <kevin@archlinux.org>
# Contributor: John Proctor <jproctor@prium.net>
pkgname=graphviz
-pkgver=2.30.0
-pkgrel=6
+pkgver=2.30.1
+pkgrel=1
pkgdesc='Graph visualization software'
url='http://www.graphviz.org/'
license=('custom:EPL')
@@ -25,7 +25,7 @@ optdepends=('mono: sharp bindings'
'qt4: gvedit')
source=("${url}/pub/${pkgname}/stable/SOURCES/${pkgname}-${pkgver}.tar.gz"
'LICENSE')
-sha1sums=('596c1ddf60c5428c5c4700d10f3ea86534195311'
+sha1sums=('96739220c4bbcf1bd3bd52e7111f4e60497185c6'
'e78277e502c29abb74b9587a5dc951ec392554ea')
options=('!libtool')
@@ -34,14 +34,13 @@ install=install
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
- . /etc/profile.d/qt4.sh
-
sed \
-e '/"archdir"/s:$:+" '"$(echo -I/usr/include/ruby-1.9.1/{$CARCH-linux,ruby/backward,})"'":' \
-e '/CONFIG/s:site:vendor:' \
-i config/config_ruby.rb
sed '/LIBPOSTFIX="64"/d' -i configure
+ source /etc/profile.d/qt4.sh
export PYTHON=python2
export LUA=lua5.1
diff --git a/extra/gtk3/PKGBUILD b/extra/gtk3/PKGBUILD
index ae8483202..94799147a 100644
--- a/extra/gtk3/PKGBUILD
+++ b/extra/gtk3/PKGBUILD
@@ -1,18 +1,19 @@
-# $Id: PKGBUILD 174777 2013-01-07 13:06:57Z jgc $
+# $Id: PKGBUILD 179073 2013-03-03 00:49:43Z heftig $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
pkgname=gtk3
pkgver=3.6.4
-pkgrel=1
+pkgrel=2
pkgdesc="GObject-based multi-platform GUI toolkit (v3)"
-arch=('i686' 'x86_64')
+arch=(i686 x86_64)
url="http://www.gtk.org/"
install=gtk3.install
-depends=('atk' 'cairo' 'gtk-update-icon-cache' 'libcups' 'libxcursor' 'libxinerama' 'libxrandr' 'libxi' 'libxcomposite' 'libxdamage' 'pango' 'shared-mime-info' 'colord' 'at-spi2-atk')
-makedepends=('gobject-introspection')
+depends=(atk cairo gtk-update-icon-cache libcups libxcursor libxinerama libxrandr libxi
+ libxcomposite libxdamage pango shared-mime-info colord at-spi2-atk wayland libxkbcommon)
+makedepends=(gobject-introspection mesa)
options=('!libtool')
backup=(etc/gtk-3.0/settings.ini)
-license=('LGPL')
+license=(LGPL)
source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver%.*}/gtk+-$pkgver.tar.xz
settings.ini)
sha256sums=('dbda37986f934f986c0bb20f2b0c59f2717a2e5c098370ad69677ff89295f1a1'
@@ -24,7 +25,10 @@ build() {
--sysconfdir=/etc \
--localstatedir=/var \
--enable-gtk2-dependency \
- --disable-schemas-compile
+ --disable-schemas-compile \
+ --enable-x11-backend \
+ --enable-broadway-backend \
+ --enable-wayland-backend
#https://bugzilla.gnome.org/show_bug.cgi?id=655517
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
diff --git a/extra/gvfs/PKGBUILD b/extra/gvfs/PKGBUILD
index 33d7f3172..71ae96a7d 100644
--- a/extra/gvfs/PKGBUILD
+++ b/extra/gvfs/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 175145 2013-01-15 11:34:12Z jgc $
+# $Id: PKGBUILD 179106 2013-03-03 17:28:34Z dreisner $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgbase=gvfs
pkgname=('gvfs' 'gvfs-smb' 'gvfs-afc' 'gvfs-afp' 'gvfs-gphoto2' 'gvfs-obexftp')
pkgver=1.14.2
-pkgrel=3
+pkgrel=4
arch=('i686' 'x86_64')
license=('LGPL')
makedepends=('avahi' 'bluez' 'dbus-glib' 'fuse' 'intltool' 'libarchive' 'libcdio-paranoia' 'libgphoto2' 'libimobiledevice' 'libsoup-gnome' 'smbclient' 'udisks2' 'libsecret' 'docbook-xsl' 'gtk3')
diff --git a/extra/libgxps/PKGBUILD b/extra/libgxps/PKGBUILD
index 3436c4868..776f58f61 100644
--- a/extra/libgxps/PKGBUILD
+++ b/extra/libgxps/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 156904 2012-04-23 09:08:44Z ibiru $
+# $Id: PKGBUILD 179109 2013-03-03 17:28:36Z dreisner $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
pkgname=libgxps
pkgver=0.2.2
-pkgrel=1
+pkgrel=2
pkgdesc="XPS Documents library"
arch=(i686 x86_64)
url="https://live.gnome.org/libgxps"
diff --git a/extra/libkolabxml/PKGBUILD b/extra/libkolabxml/PKGBUILD
index 80faee223..eba18f661 100644
--- a/extra/libkolabxml/PKGBUILD
+++ b/extra/libkolabxml/PKGBUILD
@@ -1,25 +1,26 @@
-# $Id: PKGBUILD 176289 2013-01-28 16:48:21Z stephane $
+# $Id: PKGBUILD 179113 2013-03-03 18:40:24Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
pkgname=libkolabxml
-pkgver=0.8.1
-pkgrel=2
+pkgver=0.8.3
+pkgrel=1
pkgdesc="Kolab XML Format Schema Definitions Library"
url='http://git.kolab.org/libkolabxml/'
arch=('i686' 'x86_64')
license=('GPL')
depends=('xerces-c' 'boost-libs')
-makedepends=('cmake' 'boost' 'xsd')
+makedepends=('cmake' 'boost' 'xsd' 'qt4')
source=("http://mirror.kolabsys.com/pub/releases/${pkgname}-${pkgver}.tar.gz"{,.gpg})
-md5sums=('a02541b35153334c69ee1845dfe464c6'
- 'f5e9bc4a21a5bf06baec084435812cc4')
+md5sums=('38ded7003255decf9cd46c6a3f442e6b'
+ '493a9fcca56a244fc7403e4131cf7d5f')
build() {
mkdir build
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DQT_QMAKE_EXECUTABLE=qmake-qt4
make
}
diff --git a/extra/libxkbcommon/PKGBUILD b/extra/libxkbcommon/PKGBUILD
new file mode 100644
index 000000000..53ca992b1
--- /dev/null
+++ b/extra/libxkbcommon/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 179075 2013-03-03 00:51:04Z heftig $
+# Maintainer: Daniel Micay <danielmicay@gmail.com>
+# Contributor: Mladen Pejakovic <pejakm@gmail.com>
+
+pkgname=libxkbcommon
+pkgver=0.2.0
+pkgrel=3
+pkgdesc="Keyboard handling library using XKB data"
+arch=(i686 x86_64)
+url="http://xkbcommon.org/"
+license=('custom')
+depends=(glibc)
+makedepends=(doxygen xorg-util-macros)
+source=("http://xkbcommon.org/download/$pkgname-$pkgver.tar.bz2")
+md5sums=('2be3d4a255d02c7d46fc6a9486f21f6a')
+options=('!libtool')
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+ install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
diff --git a/extra/mariadb/PKGBUILD b/extra/mariadb/PKGBUILD
index 9678abd12..7eaa19def 100644
--- a/extra/mariadb/PKGBUILD
+++ b/extra/mariadb/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 179064 2013-03-02 21:39:03Z bpiotrowski $
+# $Id: PKGBUILD 179120 2013-03-03 20:01:04Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
pkgbase=mariadb
pkgname=('libmariadbclient' 'mariadb-clients' 'mariadb')
pkgver=5.5.29
-pkgrel=4
+pkgrel=5
arch=('i686' 'x86_64')
license=('GPL')
url='http://mariadb.org/'
@@ -65,7 +65,7 @@ build() {
}
package_libmariadbclient() {
- pkgdesc="MariaDB client libraries"
+ pkgdesc='MariaDB client libraries'
depends=('openssl')
conflicts=('libmysqlclient')
provides=("libmysqlclient=$pkgver")
@@ -84,7 +84,7 @@ package_libmariadbclient() {
}
package_mariadb-clients() {
- pkgdesc="MariaDB client tools"
+ pkgdesc='MariaDB client tools'
depends=('libmariadbclient')
conflicts=('mysql-clients')
provides=("mysql-clients=$pkgver")
@@ -103,7 +103,7 @@ package_mariadb-clients() {
}
package_mariadb() {
- pkgdesc="A fast SQL database server, drop-in replacement for MySQL"
+ pkgdesc='Fast SQL database server, drop-in replacement for MySQL'
backup=('etc/mysql/my.cnf')
install=mariadb.install
depends=('mariadb-clients')
diff --git a/extra/mariadb/mariadb.install b/extra/mariadb/mariadb.install
index de619b668..c99114c07 100644
--- a/extra/mariadb/mariadb.install
+++ b/extra/mariadb/mariadb.install
@@ -14,6 +14,9 @@ post_install(){
fi
usr/bin/systemd-tmpfiles --create mysqld.conf
+
+ echo ">> If you are migrating from MySQL, don't forget to run 'mysql_upgrade'"
+ echo " after mysqld.service restart."
}
post_upgrade(){
@@ -28,7 +31,7 @@ post_upgrade(){
fi
if [[ "$(vercmp $2 5.5.25-5)" -lt 0 ]]; then
- echo ">>> mysql.service has been renamed to mysqld.service to keep"
+ echo ">> mysql.service has been renamed to mysqld.service to keep"
echo " consistency with MySQL package."
fi
}
diff --git a/extra/mkvtoolnix/PKGBUILD b/extra/mkvtoolnix/PKGBUILD
index 8a03d7c28..966fb6211 100644
--- a/extra/mkvtoolnix/PKGBUILD
+++ b/extra/mkvtoolnix/PKGBUILD
@@ -1,18 +1,18 @@
-# $Id: PKGBUILD 176294 2013-01-28 16:48:27Z stephane $
+# $Id: PKGBUILD 179090 2013-03-03 11:15:28Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: xduugu <xduugu@gmx.com>
pkgbase=mkvtoolnix
pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk')
-pkgver=6.0.0
-pkgrel=2
+pkgver=6.1.0
+pkgrel=1
arch=('i686' 'x86_64')
license=('GPL')
url="http://www.bunkus.org/videotools/mkvtoolnix/index.html"
makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'
'boost-libs' 'lzo2' 'xdg-utils' 'boost' 'ruby')
source=("http://www.bunkus.org/videotools/${pkgbase}/sources/${pkgbase}-${pkgver}.tar.xz")
-md5sums=('869dac2061f4ef91dd96ce6bb0fafecb')
+md5sums=('171e241756eb3b6f2e506f8539331fd9')
build() {
cd "${srcdir}/${pkgbase}-${pkgver}"
diff --git a/extra/pkgfile/PKGBUILD b/extra/pkgfile/PKGBUILD
index 7f9907165..a1b96923c 100644
--- a/extra/pkgfile/PKGBUILD
+++ b/extra/pkgfile/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 176818 2013-02-01 01:25:21Z dreisner $
+# $Id: PKGBUILD 179110 2013-03-03 17:28:37Z dreisner $
# Maintainer: Dave Reisner <dreisner@archlinux.org>
pkgname=pkgfile
pkgver=8
-pkgrel=1
+pkgrel=2
pkgdesc="a pacman .files metadata explorer"
arch=('i686' 'x86_64')
url="http://github.com/falconindy/pkgfile"
diff --git a/extra/qt5/PKGBUILD b/extra/qt5/PKGBUILD
index fc04378db..bd1016efa 100644
--- a/extra/qt5/PKGBUILD
+++ b/extra/qt5/PKGBUILD
@@ -1,10 +1,9 @@
-# $Id: PKGBUILD 179039 2013-03-01 20:22:01Z andrea $
+# $Id: PKGBUILD 179117 2013-03-03 18:53:03Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
pkgbase=qt5
pkgname=('qt5-base'
'qt5-declarative'
- 'qt5-doc'
'qt5-graphicaleffects'
'qt5-imageformats'
'qt5-jsbackend'
@@ -17,7 +16,7 @@ pkgname=('qt5-base'
'qt5-webkit'
'qt5-xmlpatterns')
pkgver=5.0.1
-pkgrel=5
+pkgrel=6
arch=('i686' 'x86_64')
url='http://qt-project.org/'
license=('GPL3' 'LGPL')
@@ -25,7 +24,8 @@ makedepends=('libxcb' 'xcb-proto' 'xcb-util' 'xcb-util-image' 'xcb-util-wm' 'xcb
'mesa-libgl' 'at-spi2-core' 'alsa-lib' 'gstreamer0.10-base-plugins'
'libjpeg-turbo' 'cups' 'libpulse' 'hicolor-icon-theme' 'desktop-file-utils'
'postgresql-libs' 'libmysqlclient' 'sqlite' 'unixodbc' 'libfbclient'
- 'python2' 'ruby' 'gperf')
+ 'python2' 'ruby' 'gperf' 'libxslt' 'libxcomposite' 'fontconfig'
+ 'libmng' 'openal' 'gtk2')
groups=('qt' 'qt5')
options=('!libtool')
_pkgfqn="qt-everywhere-opensource-src-${pkgver}"
@@ -74,14 +74,10 @@ build() {
-reduce-relocations
make
-
- # Build docs
- make qmake_all
- make docs
}
package_qt5-base() {
- pkgdesc=('A cross-platform application and UI framework')
+ pkgdesc='A cross-platform application and UI framework'
depends=('libjpeg-turbo' 'xcb-util-keysyms' 'libgl' 'dbus' 'fontconfig' 'systemd'
'xcb-util-wm' 'libxrender' 'libxi' 'sqlite' 'libpng' 'xcb-util-image'
'hicolor-icon-theme' 'xdg-utils')
@@ -109,7 +105,7 @@ package_qt5-base() {
}
package_qt5-declarative() {
- pkgdesc=('A cross-platform application and UI framework (QtQml, QtQuick)')
+ pkgdesc='A cross-platform application and UI framework (QtQml, QtQuick)'
depends=('qt5-jsbackend' 'qt5-xmlpatterns')
conflicts=('qt')
@@ -121,21 +117,8 @@ package_qt5-declarative() {
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \;
}
-package_qt5-doc() {
- pkgdesc=('A cross-platform application and UI framework (Documentation)')
- depends=('qt5-base')
- conflicts=('qt-doc')
- replaces=('qt-doc')
- provides=('qt-doc')
- options=('docs')
- groups=()
-
- cd ${_pkgfqn}
- make INSTALL_ROOT="${pkgdir}" install_docs
-}
-
package_qt5-jsbackend() {
- pkgdesc=('A cross-platform application and UI framework (QtV8)')
+ pkgdesc='A cross-platform application and UI framework (QtV8)'
depends=('qt5-base')
cd ${_pkgfqn}/qtjsbackend
@@ -147,7 +130,7 @@ package_qt5-jsbackend() {
}
package_qt5-xmlpatterns() {
- pkgdesc=('A cross-platform application and UI framework (QtXmlPatterns)')
+ pkgdesc='A cross-platform application and UI framework (QtXmlPatterns)'
depends=('qt5-base')
conflicts=('qt')
@@ -160,7 +143,7 @@ package_qt5-xmlpatterns() {
}
package_qt5-translations() {
- pkgdesc=('A cross-platform application and UI framework (Translations)')
+ pkgdesc='A cross-platform application and UI framework (Translations)'
depends=('qt5-base')
conflicts=('qt')
@@ -169,8 +152,8 @@ package_qt5-translations() {
}
package_qt5-multimedia() {
- pkgdesc=('A cross-platform application and UI framework (QtMultimedia)')
- depends=('qt5-declarative' 'libpulse' 'gstreamer0.10-base')
+ pkgdesc='A cross-platform application and UI framework (QtMultimedia)'
+ depends=('qt5-declarative' 'libpulse' 'gstreamer0.10-base' 'openal')
conflicts=('qt')
cd ${_pkgfqn}/qtmultimedia
@@ -182,7 +165,7 @@ package_qt5-multimedia() {
}
package_qt5-graphicaleffects() {
- pkgdesc=('A cross-platform application and UI framework (QtGraphicalEffects)')
+ pkgdesc='A cross-platform application and UI framework (QtGraphicalEffects)'
depends=('qt5-declarative')
cd ${_pkgfqn}/qtgraphicaleffects
@@ -190,8 +173,8 @@ package_qt5-graphicaleffects() {
}
package_qt5-imageformats() {
- pkgdesc=('A cross-platform application and UI framework (Images plugins)')
- depends=('qt5-base' 'libtiff')
+ pkgdesc='A cross-platform application and UI framework (Images plugins)'
+ depends=('qt5-base' 'libtiff' 'libmng')
conflicts=('qt')
cd ${_pkgfqn}/qtimageformats
@@ -199,7 +182,7 @@ package_qt5-imageformats() {
}
package_qt5-quick1() {
- pkgdesc=('A cross-platform application and UI framework (QtDeclarative)')
+ pkgdesc='A cross-platform application and UI framework (QtDeclarative)'
depends=('qt5-webkit' 'qt5-script')
conflicts=('qt')
@@ -212,7 +195,7 @@ package_qt5-quick1() {
}
package_qt5-script() {
- pkgdesc=('A cross-platform application and UI framework (QtScript)')
+ pkgdesc='A cross-platform application and UI framework (QtScript)'
depends=('qt5-base')
conflicts=('qt')
@@ -225,7 +208,7 @@ package_qt5-script() {
}
package_qt5-svg() {
- pkgdesc=('A cross-platform application and UI framework (QtSvg)')
+ pkgdesc='A cross-platform application and UI framework (QtSvg)'
depends=('qt5-base')
conflicts=('qt')
@@ -238,7 +221,7 @@ package_qt5-svg() {
}
package_qt5-tools() {
- pkgdesc=('A cross-platform application and UI framework (Development Tools, QtHelp)')
+ pkgdesc='A cross-platform application and UI framework (Development Tools, QtHelp)'
depends=('qt5-webkit' 'desktop-file-utils' 'qt5-translations')
optdepends=('qt5-doc: documentation')
install='qt5-tools.install'
@@ -270,8 +253,8 @@ package_qt5-tools() {
}
package_qt5-webkit() {
- pkgdesc=('A cross-platform application and UI framework (QtWebKit)')
- depends=('qt5-declarative' 'gstreamer0.10-base' 'icu')
+ pkgdesc='A cross-platform application and UI framework (QtWebKit)'
+ depends=('qt5-declarative' 'gstreamer0.10-base' 'icu' 'libxslt' 'libxcomposite')
cd ${_pkgfqn}/qtwebkit
make INSTALL_ROOT="${pkgdir}" install
diff --git a/extra/qwt/PKGBUILD b/extra/qwt/PKGBUILD
index 1fe4ae2c7..3e14cf1c7 100644
--- a/extra/qwt/PKGBUILD
+++ b/extra/qwt/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 179060 2013-03-02 20:03:20Z andrea $
+# $Id: PKGBUILD 179088 2013-03-03 09:38:46Z andrea $
# Maintainer: Ronald van Haren <ronald.archlinux.org>
pkgname=qwt
-pkgver=6.0.1
-pkgrel=5
+pkgver=6.0.2
+pkgrel=1
pkgdesc="Qt Widgets for Technical Applications"
arch=('i686' 'x86_64')
url="http://qwt.sourceforge.net/"
@@ -11,7 +11,7 @@ depends=('qt4')
license=("custom:$pkgname")
source=("http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.bz2" \
"qwtconfig-archlinux.pri")
-sha1sums=('301cca0c49c7efc14363b42e082b09056178973e'
+sha1sums=('cbdd00b29521987c9e7bc6aa51092f0474b9428d'
'aba0fc75f6d450237028b7b143bdcf05a79cabb3')
build() {
@@ -28,7 +28,7 @@ build() {
package() {
cd ${srcdir}/${pkgname}-${pkgver}
- make INSTALL_ROOT=${pkgdir} QTDIR=/usr install
+ make INSTALL_ROOT=${pkgdir} install
# install web designer plugin
install -d ${pkgdir}/usr/lib/qt4/plugins/designer/
@@ -40,6 +40,9 @@ package() {
install -m644 qwtconfig.pri qwt.prf \
"${pkgdir}"/usr/share/qt4/mkspecs/features/
+ # move man pages
+ mv "${pkgdir}"/usr/share/doc/qwt/man/ "${pkgdir}"/usr/share/
+
# install licence
install -Dm644 ${srcdir}/${pkgname}-${pkgver}/COPYING \
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
diff --git a/extra/totem-plparser/PKGBUILD b/extra/totem-plparser/PKGBUILD
index 2fc7aa293..1ef450a5e 100644
--- a/extra/totem-plparser/PKGBUILD
+++ b/extra/totem-plparser/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 169976 2012-10-30 22:59:47Z heftig $
+# $Id: PKGBUILD 179111 2013-03-03 17:28:38Z dreisner $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor: Jan de Groot <jgc@archlinux.org>
pkgname=totem-plparser
pkgver=3.4.3
-pkgrel=1
+pkgrel=2
url="http://www.gnome.org"
pkgdesc="Totem playlist parser library"
license=('LGPL')