From 1a04b89cbb8e27e4622005c896745498af51ef45 Mon Sep 17 00:00:00 2001 From: Nicolás Reynolds Date: Thu, 23 Jan 2014 03:40:09 +0000 Subject: Thu Jan 23 03:35:13 UTC 2014 --- extra/cups/PKGBUILD | 15 ++-- extra/cups/cups-systemd-socket.patch | 3 +- extra/digikam/PKGBUILD | 4 +- extra/dvdauthor/PKGBUILD | 4 +- extra/emacs/PKGBUILD | 4 +- extra/gedit/PKGBUILD | 6 +- extra/imagemagick/PKGBUILD | 17 ++--- extra/konversation/PKGBUILD | 11 +-- extra/libetonyek/PKGBUILD | 31 ++++++++ extra/libodfgen/PKGBUILD | 26 +++++++ extra/libpaper/PKGBUILD | 31 ++++++++ .../libssh/0004-reset-global-request-status.patch | 18 +++++ extra/libssh/0005-multi-reverse-fwd.patch | 85 ++++++++++++++++++++++ extra/libssh/PKGBUILD | 25 +++++-- extra/libvisio/PKGBUILD | 27 +++++++ extra/psiconv/PKGBUILD | 4 +- extra/pstoedit/PKGBUILD | 4 +- extra/transcode/PKGBUILD | 5 +- extra/webkitgtk/PKGBUILD | 6 +- extra/x2goclient/PKGBUILD | 11 +-- extra/xine-lib/PKGBUILD | 4 +- 21 files changed, 288 insertions(+), 53 deletions(-) create mode 100644 extra/libetonyek/PKGBUILD create mode 100644 extra/libodfgen/PKGBUILD create mode 100644 extra/libpaper/PKGBUILD create mode 100644 extra/libssh/0004-reset-global-request-status.patch create mode 100644 extra/libssh/0005-multi-reverse-fwd.patch create mode 100644 extra/libvisio/PKGBUILD (limited to 'extra') diff --git a/extra/cups/PKGBUILD b/extra/cups/PKGBUILD index 5bbee3ddd..854c84593 100644 --- a/extra/cups/PKGBUILD +++ b/extra/cups/PKGBUILD @@ -1,15 +1,16 @@ -# $Id: PKGBUILD 204308 2014-01-17 05:30:06Z andyrtr $ +# $Id: PKGBUILD 204552 2014-01-22 13:21:08Z andyrtr $ # Maintainer: Andreas Radke pkgbase="cups" pkgname=('libcups' 'cups') pkgver=1.7.1 -pkgrel=1 +pkgrel=3 arch=('i686' 'x86_64') license=('GPL') url="http://www.cups.org/" -makedepends=('libtiff>=4.0.0' 'libpng>=1.5.7' 'acl' 'pam' 'xdg-utils' 'krb5' 'openssl' 'cups-filters' 'bc' - 'colord' 'xinetd' 'gzip' 'autoconf' 'libusb' 'dbus' 'avahi' 'hicolor-icon-theme' 'systemd' 'inetutils') +makedepends=('libtiff>=4.0.0' 'libpng>=1.5.7' 'acl' 'pam' 'xdg-utils' 'krb5' 'openssl' + 'cups-filters' 'bc' 'colord' 'xinetd' 'gzip' 'autoconf' 'libusb' 'dbus' + 'avahi' 'hicolor-icon-theme' 'systemd' 'inetutils' 'libpaper' 'valgrind') source=(#http://mirror.easysw.com/pub/cups/${pkgver}/cups-${pkgver}-source.tar.bz2 http://www.cups.org/software/${pkgver}/cups-${pkgver}-source.tar.bz2 cups.logrotate cups.pam @@ -36,7 +37,7 @@ md5sums=('55277c40fd4b7183dc3671d39c5c42b7' '3ba9e3410df1dc3015463d615ef91b3b' 'cc4101beccb5ed6deb1c92707a575925' '90c30380d4c8cd48a908cfdadae1ea24' - '555a1c71151ce990e176315b46e3de2f' + 'be0ce5a9bcf5079af1a260fef395e146' '8fe27d4248cacbc02824e7937cab4088' 'df0c367c0022e3c7d8e01827e8a6c5e7' 'f30c2a161caaf27854581507cde8cac6' @@ -110,6 +111,7 @@ build() { --enable-ssl=yes --enable-openssl \ --enable-threads \ --enable-avahi\ + --enable-libpaper \ --with-php=/usr/bin/php-cgi \ --with-optim="$CFLAGS" make @@ -156,7 +158,8 @@ backup=(etc/cups/cupsd.conf etc/logrotate.d/cups etc/pam.d/cups etc/xinetd.d/cups-lpd) -depends=('acl' 'pam' "libcups>=${pkgver}" 'cups-filters' 'bc' 'colord' 'libusb' 'dbus' 'systemd' 'hicolor-icon-theme') +depends=('acl' 'pam' "libcups>=${pkgver}" 'cups-filters' 'bc' 'colord' + 'libusb' 'dbus' 'systemd' 'libpaper' 'hicolor-icon-theme') optdepends=('xdg-utils: xdg .desktop file support') cd ${pkgbase}-${pkgver} diff --git a/extra/cups/cups-systemd-socket.patch b/extra/cups/cups-systemd-socket.patch index cfbe93354..4c3de1188 100644 --- a/extra/cups/cups-systemd-socket.patch +++ b/extra/cups/cups-systemd-socket.patch @@ -117,12 +117,13 @@ diff -up cups-1.7rc1/data/cups.service.in.systemd-socket cups-1.7rc1/data/cups.s diff -up cups-1.7rc1/data/cups.socket.in.systemd-socket cups-1.7rc1/data/cups.socket.in --- cups-1.7rc1/data/cups.socket.in.systemd-socket 2013-07-12 11:16:53.259546235 +0200 +++ cups-1.7rc1/data/cups.socket.in 2013-07-12 11:16:53.259546235 +0200 -@@ -0,0 +1,8 @@ +@@ -0,0 +1,9 @@ +[Unit] +Description=CUPS Printing Service Sockets + +[Socket] +ListenStream=@CUPS_DEFAULT_DOMAINSOCKET@ ++ListenStream=@DEFAULT_IPP_PORT@ + +[Install] +WantedBy=sockets.target diff --git a/extra/digikam/PKGBUILD b/extra/digikam/PKGBUILD index f40cf00e4..ac9417605 100644 --- a/extra/digikam/PKGBUILD +++ b/extra/digikam/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 202656 2013-12-23 16:27:53Z ronald $ +# $Id: PKGBUILD 204523 2014-01-22 01:48:54Z eric $ # Maintainer: Ronald van Haren # Contributor: Andrea Scarpino # Contributor: Tobias Powalowski @@ -6,7 +6,7 @@ pkgbase=digikam pkgname=('digikam' 'kipi-plugins' 'libkface' 'libkgeomap' 'libkvkontakte' 'libmediawiki') pkgver=3.5.0 -pkgrel=2 +pkgrel=3 pkgdesc="Digital photo management application for KDE" arch=('i686' 'x86_64') license=('GPL') diff --git a/extra/dvdauthor/PKGBUILD b/extra/dvdauthor/PKGBUILD index 6a839fc3a..cd48b8c6a 100644 --- a/extra/dvdauthor/PKGBUILD +++ b/extra/dvdauthor/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 192473 2013-08-12 20:25:40Z eric $ +# $Id: PKGBUILD 204520 2014-01-22 01:48:50Z eric $ # Maintainer: Giovanni Scafora # Contributor: Travis Willard # Contributor: Jaroslaw Swierczynski @@ -6,7 +6,7 @@ pkgname=dvdauthor pkgver=0.7.1 -pkgrel=6 +pkgrel=7 pkgdesc="DVD authoring tools" arch=('i686' 'x86_64') url="http://dvdauthor.sourceforge.net/" diff --git a/extra/emacs/PKGBUILD b/extra/emacs/PKGBUILD index 327fc41b7..e4414475b 100644 --- a/extra/emacs/PKGBUILD +++ b/extra/emacs/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 192474 2013-08-12 20:25:41Z eric $ +# $Id: PKGBUILD 204521 2014-01-22 01:48:51Z eric $ # Maintainer: Juergen Hoetzel # Contributor: Renchi Raju pkgname=emacs pkgver=24.3 -pkgrel=4 +pkgrel=5 pkgdesc="The extensible, customizable, self-documenting real-time display editor" arch=('i686' 'x86_64') url="http://www.gnu.org/software/emacs/emacs.html" diff --git a/extra/gedit/PKGBUILD b/extra/gedit/PKGBUILD index 3046dc559..742ccf644 100644 --- a/extra/gedit/PKGBUILD +++ b/extra/gedit/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 202235 2013-12-20 16:53:55Z heftig $ +# $Id: PKGBUILD 204519 2014-01-22 00:27:30Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) # Contributor: Jan de Groot pkgname=gedit -pkgver=3.10.3 +pkgver=3.10.4 pkgrel=1 pkgdesc="A text editor for GNOME" arch=(i686 x86_64) @@ -16,7 +16,7 @@ options=('!emptydirs') url="http://www.gnome.org" install=gedit.install source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('d0efec59622061389fcc06d23b88e2621d4d66b4bafe7d4461c1c7d48a54bc82') +sha256sums=('40dc10b6e26fd8523087e7321a20a063f4c1e586dffd7ce8ee78eead11359f9e') build() { cd $pkgname-$pkgver diff --git a/extra/imagemagick/PKGBUILD b/extra/imagemagick/PKGBUILD index 4bad0dd52..d9678799e 100644 --- a/extra/imagemagick/PKGBUILD +++ b/extra/imagemagick/PKGBUILD @@ -1,20 +1,20 @@ -# $Id: PKGBUILD 203186 2014-01-05 00:41:26Z eric $ +# $Id: PKGBUILD 204522 2014-01-22 01:48:52Z eric $ # Maintainer: Eric Bélanger pkgbase=imagemagick pkgname=('imagemagick' 'imagemagick-doc') -pkgver=6.8.8.1 +pkgver=6.8.8.2 pkgrel=1 arch=('i686' 'x86_64') url="http://www.imagemagick.org/" license=('custom') -makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript' \ - 'openexr' 'libwmf' 'librsvg' 'libxml2' 'jasper' 'liblqr' \ +makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript' + 'openexr' 'libwmf' 'librsvg' 'libxml2' 'liblqr' 'opencl-headers' 'libcl' 'libwebp') -#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc} \ -source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc} \ +#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc} +source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc} perlmagick.rpath.patch) -sha1sums=('1a2c0c83b38cc39170825bc247f41c0bb7a92792' +sha1sums=('dc51b9d77f69bec96f398a557acb531c5af13fbc' 'SKIP' 'e143cf9d530fabf3b58023899b5cc544ba93daec') @@ -31,7 +31,7 @@ build() { [[ $CARCH = "x86_64" ]] && EXTRAOPTS="--with-gcc-arch=x86-64" ./configure --prefix=/usr --sysconfdir=/etc --with-modules \ - --enable-hdri --with-wmf --with-openexr --with-xml --with-lcms2 --with-jp2 \ + --enable-hdri --with-wmf --with-openexr --with-xml --with-lcms2 \ --with-webp --with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \ --with-perl --with-perl-options="INSTALLDIRS=vendor" --with-lqr --with-rsvg \ --enable-opencl --without-gvc --without-djvu --without-autotrace \ @@ -53,7 +53,6 @@ package_imagemagick() { 'libwmf: for WMF support' 'librsvg: for SVG support' 'libxml2: for XML support' - 'jasper: for JPEG-2000 support' 'libpng: for PNG support' 'libwebp: for WEBP support') backup=("etc/ImageMagick-${pkgver%%.*}/coder.xml" diff --git a/extra/konversation/PKGBUILD b/extra/konversation/PKGBUILD index 298426026..0bffe4ab7 100644 --- a/extra/konversation/PKGBUILD +++ b/extra/konversation/PKGBUILD @@ -1,12 +1,13 @@ -# $Id: PKGBUILD 196549 2013-10-15 07:10:19Z allan $ -# Maintainer: Stéphane Gaudreault +# $Id: PKGBUILD 204555 2014-01-22 15:33:40Z tomegun $ +# Maintainer: Tom Gundersen +# Contributor: Stéphane Gaudreault # Contributor: Andrea Scarpino # Contributor: James Rayner # Contributor: Sergio Jovani Guzman pkgname=konversation -pkgver=1.4 -pkgrel=7 +pkgver=1.5 +pkgrel=1 pkgdesc="A user friendly IRC client for KDE" arch=('i686' 'x86_64') url="http://konversation.kde.org" @@ -19,7 +20,7 @@ license=('GPL2' 'FDL') install=${pkgname}.install options=('!makeflags') source=("http://download.kde.org/download.php?url=stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") -sha1sums=('90741721f68a02d4345b9006a8ae53bc49ef3777') +sha1sums=('3955a43758750b63d84299a9d9a5933b73e5492b') build() { diff --git a/extra/libetonyek/PKGBUILD b/extra/libetonyek/PKGBUILD new file mode 100644 index 000000000..354d5ebda --- /dev/null +++ b/extra/libetonyek/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 204536 2014-01-22 11:40:28Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski +# Contributor: Yue + +pkgname=libetonyek +pkgver=0.0.3 +pkgrel=1 +pkgdesc='Library and a set of tools for reading and converting Apple Keynote presentations' +arch=('i686' 'x86_64') +url='http://www.freedesktop.org/wiki/Software/libetonyek/' +license=('MPL') +depends=('libxml2' 'gperf' 'zlib' 'libwpd' 'boost-libs') +makedepends=('boost' 'cppunit') +source=(http://dev-www.libreoffice.org/src/$pkgname-$pkgver.tar.xz) +md5sums=('6deb26eb088acd8938b9bec800cfb59e') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +check() { + cd $pkgname-$pkgver + make check +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} diff --git a/extra/libodfgen/PKGBUILD b/extra/libodfgen/PKGBUILD new file mode 100644 index 000000000..f826f4be8 --- /dev/null +++ b/extra/libodfgen/PKGBUILD @@ -0,0 +1,26 @@ +# $Id$ +# Maintainer: Bartłomiej Piotrowski +# Contributor: Yue + +pkgname=libodfgen +pkgver=0.0.4 +pkgrel=1 +pkgdesc='Library for generating documents in Open Document Format' +arch=('i686' 'x86_64') +url='http://sf.net/p/libwpd/libodfgen/' +license=('MPL') +depends=('libwpd' 'zlib') +makedepends=('boost' 'libwpg' 'libetonyek') +source=(http://dev-www.libreoffice.org/src/$pkgname-$pkgver.tar.bz2) +md5sums=('e5483d1f0b71e64c367c1194b54b0f53') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} diff --git a/extra/libpaper/PKGBUILD b/extra/libpaper/PKGBUILD new file mode 100644 index 000000000..67b0e0731 --- /dev/null +++ b/extra/libpaper/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 204542 2014-01-22 12:18:23Z andyrtr $ +# Maintainer: Alexander Rødseth +# Contributor: Mateusz Herych +# Contributor: royrocks + +pkgname=libpaper +pkgver=1.1.24 +pkgrel=6 +pkgdesc='Library for handling paper characteristics' +arch=('x86_64' 'i686') +url='http://packages.debian.org/unstable/source/libpaper' +license=('GPL') +depends=('sh') +source=("http://ftp.de.debian.org/debian/pool/main/libp/$pkgname/${pkgname}_$pkgver+nmu2.tar.gz") +sha256sums=('c5bdd6d9dff179699160675dbb61651d9b3158f6da27558fdaba00e7c427ba96') + +build() { + cd "$pkgname-$pkgver+nmu2" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --sbindir=/usr/bin + make +} + +package() { + make -C "$pkgname-$pkgver+nmu2" DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: diff --git a/extra/libssh/0004-reset-global-request-status.patch b/extra/libssh/0004-reset-global-request-status.patch new file mode 100644 index 000000000..760f3497a --- /dev/null +++ b/extra/libssh/0004-reset-global-request-status.patch @@ -0,0 +1,18 @@ +Description: Allow requesting more than one channel per session. +Author: Andreas Schneider +Abstract: + In the 0.5.x series of libssh only one channel request per session + is possible. This blocks using libssh client sessions which require + requesting multiple channels on a single SSH connection. +Origin: http://git.libssh.org/projects/libssh.git/commit/src/channels.c?id=e30acdb58a86937e8bece57ce47e272f1106ca55 +--- a/src/channels.c ++++ b/src/channels.c +@@ -1951,7 +1951,7 @@ + break; + + } +- ++ session->global_req_state = SSH_CHANNEL_REQ_STATE_NONE; + leave_function(); + return rc; + error: diff --git a/extra/libssh/0005-multi-reverse-fwd.patch b/extra/libssh/0005-multi-reverse-fwd.patch new file mode 100644 index 000000000..0771e8c4d --- /dev/null +++ b/extra/libssh/0005-multi-reverse-fwd.patch @@ -0,0 +1,85 @@ +Description: Allow requesting multiple reverse port forwarding tunnels per connection +Author: Oleksandr Shneyder +Abstract: + Channel: Add ssh_channel_accept_forward(). + . + This new function works the same way as ssh_forward_accept() + but can return a destination port of the channel (useful if + SSH connection is supposed to reverse forward multiple TCP/IP + ports). +Origin: http://git.libssh.org/projects/libssh.git/commit/?id=a1c4fc07d43fb7a7e1e91bfdadbd3dc62b8ce462 +--- a/include/libssh/libssh.h ++++ b/include/libssh/libssh.h +@@ -371,6 +371,7 @@ + LIBSSH_API char *ssh_dirname (const char *path); + LIBSSH_API int ssh_finalize(void); + LIBSSH_API ssh_channel ssh_forward_accept(ssh_session session, int timeout_ms); ++LIBSSH_API ssh_channel ssh_channel_accept_forward(ssh_session session, int timeout_ms, int *destination_port); + LIBSSH_API int ssh_forward_cancel(ssh_session session, const char *address, int port); + LIBSSH_API int ssh_forward_listen(ssh_session session, const char *address, int port, int *bound_port); + LIBSSH_API void ssh_free(ssh_session session); +--- a/src/channels.c ++++ b/src/channels.c +@@ -1755,7 +1755,7 @@ + } + + static ssh_channel ssh_channel_accept(ssh_session session, int channeltype, +- int timeout_ms) { ++ int timeout_ms, int *destination_port) { + #ifndef _WIN32 + static const struct timespec ts = { + .tv_sec = 0, +@@ -1779,6 +1779,10 @@ + ssh_message_subtype(msg) == channeltype) { + ssh_list_remove(session->ssh_message_list, iterator); + channel = ssh_message_channel_request_open_reply_accept(msg); ++ if(destination_port) { ++ *destination_port=msg->channel_request_open.destination_port; ++ } ++ + ssh_message_free(msg); + return channel; + } +@@ -1809,7 +1813,7 @@ + * the server. + */ + ssh_channel ssh_channel_accept_x11(ssh_channel channel, int timeout_ms) { +- return ssh_channel_accept(channel->session, SSH_CHANNEL_X11, timeout_ms); ++ return ssh_channel_accept(channel->session, SSH_CHANNEL_X11, timeout_ms, NULL); + } + + /** +@@ -1857,7 +1861,7 @@ + } else { + session->global_req_state=SSH_CHANNEL_REQ_STATE_DENIED; + } +- ++ session->global_req_state = SSH_CHANNEL_REQ_STATE_NONE; + leave_function(); + return SSH_PACKET_USED; + +@@ -2027,7 +2031,23 @@ + * the server + */ + ssh_channel ssh_forward_accept(ssh_session session, int timeout_ms) { +- return ssh_channel_accept(session, SSH_CHANNEL_FORWARDED_TCPIP, timeout_ms); ++ return ssh_channel_accept(session, SSH_CHANNEL_FORWARDED_TCPIP, timeout_ms, NULL); ++} ++ ++/** ++ * @brief Accept an incoming TCP/IP forwarding channel and get information ++ * about incomming connection ++ * @param[in] session The ssh session to use. ++ * ++ * @param[in] timeout_ms A timeout in milliseconds. ++ * ++ * @param[in] destination_port A pointer to destination port or NULL. ++ * ++ * @return Newly created channel, or NULL if no incoming channel request from ++ * the server ++ */ ++ssh_channel ssh_channel_accept_forward(ssh_session session, int timeout_ms, int* destination_port) { ++ return ssh_channel_accept(session, SSH_CHANNEL_FORWARDED_TCPIP, timeout_ms, destination_port); + } + + /** diff --git a/extra/libssh/PKGBUILD b/extra/libssh/PKGBUILD index 16405b14d..936b6403d 100644 --- a/extra/libssh/PKGBUILD +++ b/extra/libssh/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 195938 2013-10-05 20:32:06Z tomegun $ +# $Id: PKGBUILD 204549 2014-01-22 12:35:17Z andyrtr $ # Maintainer: Tom Gundersen # Contributor: Andrea Scarpino # Contributor: ice-man @@ -6,17 +6,29 @@ pkgname=libssh pkgver=0.5.5 -pkgrel=1 +pkgrel=2 pkgdesc="Library for accessing ssh client services through C libraries" url="http://www.libssh.org/" license=('LGPL') arch=('i686' 'x86_64') -depends=('openssl') +depends=('zlib' 'openssl') makedepends=('cmake' 'doxygen') -source=("https://red.libssh.org/attachments/download/51/${pkgname}-${pkgver}.tar.gz") +source=(https://red.libssh.org/attachments/download/51/${pkgname}-${pkgver}.tar.gz + 0004-reset-global-request-status.patch + 0005-multi-reverse-fwd.patch) +md5sums=('bb308196756c7255c0969583d917136b' + '0d8c28906b07e31466157b1fda441f4a' + '6fa3a1a4f448e85a7eb39360f4a72ce9') + +prepare() { + cd ${pkgname}-${pkgver} + # add multiple channels on a single SSH connection required by X2goclient + # see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=736231 + patch -Np1 -i ${srcdir}/0004-reset-global-request-status.patch + patch -Np1 -i ${srcdir}/0005-multi-reverse-fwd.patch +} build() { - cd "${srcdir}" mkdir build cd build cmake ../${pkgname}-${pkgver} \ @@ -26,7 +38,6 @@ build() { } package(){ - cd "${srcdir}"/build + cd build make DESTDIR="${pkgdir}" install } -md5sums=('bb308196756c7255c0969583d917136b') diff --git a/extra/libvisio/PKGBUILD b/extra/libvisio/PKGBUILD new file mode 100644 index 000000000..8e1678d38 --- /dev/null +++ b/extra/libvisio/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 204534 2014-01-22 11:23:30Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski +# Contributor: ponsfoot +# Contributor: philacs + +pkgname=libvisio +pkgver=0.0.31 +pkgrel=2 +pkgdesc='Library providing ability to interpret and import visio diagrams' +arch=('i686' 'x86_64') +url='http://www.freedesktop.org/wiki/Software/libvisio' +license=('LGPL') +depends=('libwpd' 'libwpg' 'libxml2' 'gperf' 'icu') +makedepends=('boost') +source=(http://dev-www.libreoffice.org/src/$pkgname-$pkgver.tar.xz) +md5sums=('12ceec054cdec55b4dc9fc931507d1cd') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} diff --git a/extra/psiconv/PKGBUILD b/extra/psiconv/PKGBUILD index 995b7b15d..c9117af09 100644 --- a/extra/psiconv/PKGBUILD +++ b/extra/psiconv/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 199959 2013-11-20 11:08:50Z allan $ +# $Id: PKGBUILD 204524 2014-01-22 01:48:55Z eric $ # Maintainer: Giovanni Scafora # Contributor: Tom Newsom pkgname=psiconv pkgver=0.9.8 -pkgrel=14 +pkgrel=15 pkgdesc="Converts Psion 5(MX) files to more commonly used file formats" arch=('i686' 'x86_64') url="http://software.frodo.looijaard.name/psiconv/" diff --git a/extra/pstoedit/PKGBUILD b/extra/pstoedit/PKGBUILD index 9b413ceab..1b1d5956c 100644 --- a/extra/pstoedit/PKGBUILD +++ b/extra/pstoedit/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 198378 2013-10-30 14:30:32Z allan $ +# $Id: PKGBUILD 204525 2014-01-22 01:48:55Z eric $ # Maintainer: Ronald van Haren # Contributor: damir # Contributor: Tobias Powalowski pkgname=pstoedit pkgver=3.62 -pkgrel=3 +pkgrel=4 pkgdesc="Translates PostScript and PDF graphics into other vector formats" arch=('i686' 'x86_64') url="http://www.pstoedit.net/" diff --git a/extra/transcode/PKGBUILD b/extra/transcode/PKGBUILD index 1b07e0912..515db2db4 100644 --- a/extra/transcode/PKGBUILD +++ b/extra/transcode/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 198465 2013-10-30 15:02:22Z allan $ +# $Id: PKGBUILD 204526 2014-01-22 01:48:57Z eric $ # Maintainer: # Contributor: Sarah Hay # Contributor: roberto @@ -6,7 +6,7 @@ pkgname=transcode _sripver=0.3-4 pkgver=1.1.7 -pkgrel=12 +pkgrel=13 pkgdesc="A video/DVD ripper and encoder for the terminal/console" arch=('i686' 'x86_64') url="http://tcforge.berlios.de/" @@ -46,6 +46,7 @@ prepare() { patch -p0 -i "${srcdir}/transcode-1.1.7-libav-9.patch" patch -p1 -i "${srcdir}/transcode-1.1.7-preset-force.patch" patch -p1 -i "${srcdir}/transcode-1.1.7-ffmpeg2.patch" + sed -i 's|freetype/ftglyph.h|freetype2/ftglyph.h|' filter/subtitler/load_font.c cd ../subtitleripper patch -p1 -i "${srcdir}/subtitleripper-0.3.4-linkingorder.patch" diff --git a/extra/webkitgtk/PKGBUILD b/extra/webkitgtk/PKGBUILD index 4f0e95dfd..f90306e98 100644 --- a/extra/webkitgtk/PKGBUILD +++ b/extra/webkitgtk/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 200757 2013-12-04 18:15:50Z heftig $ +# $Id: PKGBUILD 204518 2014-01-22 00:26:03Z heftig $ # Maintainer: Andreas Radke pkgname=webkitgtk -pkgver=2.2.3 +pkgver=2.2.4 pkgrel=1 pkgdesc="GTK+ Web content engine library" arch=(i686 x86_64) @@ -17,7 +17,7 @@ conflicts=(webkitgtk3 libwebkit3) replaces=(webkitgtk3 libwebkit3) options=(!emptydirs) source=(http://webkitgtk.org/releases/$pkgname-${pkgver}.tar.xz) -sha256sums=('94bcb3303aadce8454b572ab0e5d178eca3b7238f34bd3e7177b0daec04e4605') +sha256sums=('5e1aee1bfca3602cb02920d6984c584c775c661b30c33955e35ff9a21b4c4d74') build() { cd $pkgname-$pkgver diff --git a/extra/x2goclient/PKGBUILD b/extra/x2goclient/PKGBUILD index 896aef7cf..74b542881 100644 --- a/extra/x2goclient/PKGBUILD +++ b/extra/x2goclient/PKGBUILD @@ -1,20 +1,21 @@ -# $Id: PKGBUILD 201675 2013-12-17 22:03:50Z andyrtr $ +# $Id: PKGBUILD 204550 2014-01-22 12:35:18Z andyrtr $ # Maintainer: AndyRTR # Contributor: Gerhard Brauer # Contributor: Richard Murri pkgname=x2goclient -pkgver=4.0.1.2 +pkgver=4.0.1.3 pkgrel=1 pkgdesc="x2go qt4 client" arch=('i686' 'x86_64') -license=('GPL') +license=('GPL2') url="http://www.x2go.org" depends=('qt4' 'libldap' 'libcups' 'nxproxy' 'libssh' 'libxpm' 'hicolor-icon-theme' 'xdg-utils') makedepends=('man2html') install=x2goclient.install -source=(http://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz) -md5sums=('500c94ce4c8a63ecabde347d526f1356') +source=(http://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc}) +sha1sums=('37b946b5b6d0a072a6d1fee98ae43bef929f2abd' + 'SKIP') build() { cd ${pkgname}-${pkgver} diff --git a/extra/xine-lib/PKGBUILD b/extra/xine-lib/PKGBUILD index 569ec770c..34aab40e5 100644 --- a/extra/xine-lib/PKGBUILD +++ b/extra/xine-lib/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 204427 2014-01-19 16:29:00Z bpiotrowski $ +# $Id: PKGBUILD 204527 2014-01-22 01:48:58Z eric $ # Maintainer: Eric Bélanger pkgname=xine-lib pkgver=1.2.4 -pkgrel=2 +pkgrel=3 pkgdesc="A multimedia playback engine" arch=('i686' 'x86_64') url="http://www.xine-project.org" -- cgit v1.2.3-54-g00ecf