summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/dbmail/PKGBUILD4
-rw-r--r--community/gdal/PKGBUILD34
-rw-r--r--community/libfm/PKGBUILD8
-rw-r--r--community/libfreexl/PKGBUILD26
-rw-r--r--community/libftdi/PKGBUILD21
-rw-r--r--community/libmediainfo/PKGBUILD6
-rw-r--r--community/libspatialite/PKGBUILD27
-rw-r--r--community/libzdb/PKGBUILD8
-rw-r--r--community/lksctp-tools/PKGBUILD6
-rw-r--r--community/mediainfo-gui/PKGBUILD8
-rw-r--r--community/mediainfo/PKGBUILD6
-rw-r--r--community/minitube/PKGBUILD18
-rw-r--r--community/minitube/minitube-missing-locale.patch12
-rw-r--r--community/qingy/PKGBUILD36
-rw-r--r--community/qingy/qingy.install20
-rw-r--r--community/qingy/qingy.logrotate9
-rw-r--r--community/qingy/qingy@.service21
-rw-r--r--community/roxterm/PKGBUILD8
-rw-r--r--community/yagf/PKGBUILD10
19 files changed, 128 insertions, 160 deletions
diff --git a/community/dbmail/PKGBUILD b/community/dbmail/PKGBUILD
index 5c4c4cd2e..c4879af58 100644
--- a/community/dbmail/PKGBUILD
+++ b/community/dbmail/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 105591 2014-02-10 18:05:32Z spupykin $
+# $Id: PKGBUILD 105965 2014-02-20 09:01:49Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Sebastian Faltoni <sebastian.faltoni@gmail.com>
pkgname=dbmail
pkgver=3.1.10
-pkgrel=2
+pkgrel=3
pkgdesc="Fast and scalable sql based mail services"
arch=('i686' 'x86_64')
depends=('gmime' 'libzdb' 'mhash' 'libevent')
diff --git a/community/gdal/PKGBUILD b/community/gdal/PKGBUILD
index 4dbdfe523..74f1b5992 100644
--- a/community/gdal/PKGBUILD
+++ b/community/gdal/PKGBUILD
@@ -1,17 +1,17 @@
-# $Id: PKGBUILD 103623 2014-01-08 12:17:02Z bgyorgy $
+# $Id: PKGBUILD 105990 2014-02-20 18:15:10Z bgyorgy $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=gdal
pkgver=1.10.1
-pkgrel=1
+pkgrel=2
pkgdesc="A translator library for raster geospatial data formats"
arch=('i686' 'x86_64')
url="http://www.gdal.org/"
license=('custom')
-depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg' 'libpng' 'libtiff' 'netcdf' 'poppler' 'python2' 'python2-numpy' 'cfitsio' 'sqlite' 'libmariadbclient' 'postgresql-libs')
-makedepends=('perl' 'swig' 'chrpath')
+depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg' 'libpng' 'libspatialite' 'libtiff' 'netcdf' 'poppler' 'python2' 'python2-numpy' 'cfitsio' 'sqlite' 'libmariadbclient' 'postgresql-libs')
+makedepends=('perl' 'swig' 'chrpath' 'doxygen')
optdepends=('postgresql: postgresql database support'
'mariadb: mariadb database support'
'perl: perl binding support'
@@ -22,12 +22,7 @@ source=(http://download.osgeo.org/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.
sha256sums=('9984f0314c0bd831eb59fb646c2bc5e13cf1378be4f51499045166cbe62be6ea'
'55a0a961b2d1caddf80f18b6763a96690b0b6443fbd5a0c89e29503ded3bcea6')
-build() {
- export CFLAGS="$CFLAGS -fno-strict-aliasing"
-
-# bug 23654
- export LDFLAGS="$LDFLAGS -Wl,--as-needed"
-
+prepare() {
cd "${srcdir}/$pkgname-$pkgver"
patch -Np0 -i "${srcdir}/gdal-1.5.1-python-install.patch"
@@ -37,27 +32,40 @@ build() {
sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
done
+# Fix mandir
+ sed -i "s|^mandir=.*|mandir='\${prefix}/share/man'|" configure
+}
+
+build() {
+ cd "${srcdir}/$pkgname-$pkgver"
+ export CFLAGS="$CFLAGS -fno-strict-aliasing"
+
+# bug 23654
+ export LDFLAGS="$LDFLAGS -Wl,--as-needed"
+
./configure --prefix=/usr --with-netcdf --with-libtiff --with-sqlite3 \
- --with-geotiff --with-mysql --with-python --without-libtool --with-curl \
- --with-hdf5 --with-perl --with-geos --with-png --with-poppler
+ --with-geotiff --with-mysql --with-python --with-curl \
+ --with-hdf5 --with-perl --with-geos --with-png --with-poppler --with-spatialite
# workaround for bug #13646
sed -i 's/PY_HAVE_SETUPTOOLS=1/PY_HAVE_SETUPTOOLS=/g' ./GDALmake.opt
sed -i 's/EXE_DEP_LIBS/KILL_EXE_DEP_LIBS/' apps/GNUmakefile
make
+ make man
}
package () {
cd "${srcdir}/$pkgname-$pkgver"
- install -d "${pkgdir}/usr/lib/python2.7/site-packages/"
make DESTDIR="${pkgdir}" install
+ make DESTDIR="${pkgdir}" install-man
# install license
install -D -m644 LICENSE.TXT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
#FS15477 clean up junks
rm -f "${pkgdir}"/usr/bin/*.dox
+ rm -f "${pkgdir}"/usr/share/man/man1/_build_gdal_src_gdal-${pkgver}_apps_.1
# Remove RPATH
chrpath --delete "${pkgdir}"/usr/lib/perl5/${CARCH}-linux-thread-multi/auto/Geo/OSR/OSR.so
diff --git a/community/libfm/PKGBUILD b/community/libfm/PKGBUILD
index 454759025..8e7fff94f 100644
--- a/community/libfm/PKGBUILD
+++ b/community/libfm/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 105946 2014-02-19 18:06:55Z bgyorgy $
+# $Id: PKGBUILD 105979 2014-02-20 12:14:35Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Unknown47 <unknown47r@gmail.com>
# Contributor: Angel Velasquez <angvp@archlinux.org>
@@ -6,15 +6,17 @@
pkgname=libfm
pkgver=1.2.0
-pkgrel=2
+pkgrel=3
pkgdesc='Library for file management'
url='http://pcmanfm.sourceforge.net/'
arch=('i686' 'x86_64')
license=('GPL')
groups=('lxde')
depends=('gtk2' 'menu-cache' 'udisks' 'desktop-file-utils' 'libexif')
-makedepends=('intltool')
+makedepends=('intltool' 'gtk-doc')
replaces=('lxshortcut')
+provides=('lxshortcut')
+conflicts=('lxshortcut')
install=libfm.install
source=(http://downloads.sourceforge.net/pcmanfm/libfm-$pkgver.tar.xz)
md5sums=('07d1361bc008db46b0fd4c775f5696de')
diff --git a/community/libfreexl/PKGBUILD b/community/libfreexl/PKGBUILD
new file mode 100644
index 000000000..175bbed9e
--- /dev/null
+++ b/community/libfreexl/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 105987 2014-02-20 17:40:58Z bgyorgy $
+# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# Contributor: Brian Galey <bkgaley at gmail dot com>
+# Contributor: Bruno Gola <brunogola at gmail dot com>
+
+pkgname=libfreexl
+pkgver=1.0.0g
+pkgrel=2
+pkgdesc="Library to extract valid data from within an Excel (.xls) spreadsheet"
+arch=('i686' 'x86_64')
+url="https://www.gaia-gis.it/fossil/freexl‎"
+license=('MPL' 'GPL' 'LGPL')
+depends=('glibc')
+source=("http://www.gaia-gis.it/gaia-sins//${pkgname/lib/}-$pkgver.tar.gz")
+sha256sums=('cf2b110f5fc7089fa61c7421f59caa4125b13087b4686ed82dba7abedf2ec266')
+
+build() {
+ cd "$srcdir/${pkgname/lib/}-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/${pkgname/lib/}-$pkgver"
+ make DESTDIR="$pkgdir" install
+}
diff --git a/community/libftdi/PKGBUILD b/community/libftdi/PKGBUILD
index 23ff6bc06..b96b62549 100644
--- a/community/libftdi/PKGBUILD
+++ b/community/libftdi/PKGBUILD
@@ -1,15 +1,17 @@
-# $Id: PKGBUILD 105529 2014-02-09 17:42:22Z kkeen $
+# $Id: PKGBUILD 105985 2014-02-20 16:15:43Z kkeen $
# Maintainer: Kyle Keen <keenerd@gmail.com>
pkgname=libftdi
pkgver=1.1
-pkgrel=2
-pkgdesc="A library to talk to FTDI chips"
+pkgrel=3
+pkgdesc="A library to talk to FTDI chips, optional python bindings."
arch=('i686' 'x86_64')
url="http://www.intra2net.com/en/developer/libftdi/download.php"
license=('GPL2' 'LGPL2.1')
depends=('libusbx')
-makedepends=('boost' 'cmake')
+optdepends=('python: library bindings')
+makedepends=('boost' 'cmake' 'python' 'swig')
+# doxygen for docs, confuse for eeprom
source=(http://www.intra2net.com/en/developer/libftdi/download/${pkgname}1-$pkgver.tar.bz2{,.sig})
sha1sums=('f05ade5614aa31e64f91a30ce3782f7ca3704d18'
'SKIP')
@@ -20,15 +22,22 @@ prepare() {
}
build() {
- cd "${pkgname}1-$pkgver"
- mkdir build
+ cd "$srcdir/${pkgname}1-$pkgver"
+ mkdir -p build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_SKIP_BUILD_RPATH=ON \
-DCMAKE_BUILD_TYPE=Release -DEXAMPLES=OFF -DFTDI_EEPROM=OFF
make
}
+# needs yet unknown dependencies
+#check() {
+# cd "$srcdir/${pkgname}1-$pkgver/build"
+# make check
+#}
+
package() {
cd "${pkgname}1-$pkgver/build"
make DESTDIR="$pkgdir" install
}
+
diff --git a/community/libmediainfo/PKGBUILD b/community/libmediainfo/PKGBUILD
index 9427d8834..39be1d8a8 100644
--- a/community/libmediainfo/PKGBUILD
+++ b/community/libmediainfo/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 101323 2013-11-22 17:32:16Z spupykin $
+# $Id: PKGBUILD 105967 2014-02-20 09:02:05Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: hydro <hydro@freenet.de>
pkgname=libmediainfo
-pkgver=0.7.65
+pkgver=0.7.67
pkgrel=1
pkgdesc="shared library for mediainfo"
arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@ depends=( 'curl' 'libmms' 'libzen')
makedepends=('libtool' 'automake' 'autoconf')
source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2
libmediainfo-0.7.50-libmms.patch)
-md5sums=('51f62420b58a61c27ec9406e82ab3999'
+md5sums=('c6372a176f45a9971740b46c652f65eb'
'2f4b21cc250f663d52b497dedb963e3b')
build() {
diff --git a/community/libspatialite/PKGBUILD b/community/libspatialite/PKGBUILD
new file mode 100644
index 000000000..d9d3e4dcc
--- /dev/null
+++ b/community/libspatialite/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 105988 2014-02-20 17:46:02Z bgyorgy $
+# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# Contributor: Brian Galey <bkgaley at gmail dot com>
+# Contributor: Pietro Zambelli <peter.zamb at gmail dot com>
+
+pkgname=libspatialite
+pkgver=4.1.1
+pkgrel=4
+pkgdesc="SQLite extension to support spatial data types and operations"
+arch=('i686' 'x86_64')
+url="https://www.gaia-gis.it/fossil/libspatialite"
+license=('MPL' 'GPL' 'LGPL')
+depends=('geos' 'libfreexl' 'libxml2' 'proj' 'sqlite3')
+source=("http://www.gaia-gis.it/gaia-sins/$pkgname-$pkgver.tar.gz")
+sha256sums=('0481a20af952f4a38c9dbb10f37fd38c45f16c50397f8da0079e02435b9b910f')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr \
+ --enable-libxml2
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}
diff --git a/community/libzdb/PKGBUILD b/community/libzdb/PKGBUILD
index 42d2fc23c..8467cab1b 100644
--- a/community/libzdb/PKGBUILD
+++ b/community/libzdb/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 100245 2013-11-02 08:41:34Z spupykin $
+# $Id: PKGBUILD 105969 2014-02-20 09:02:23Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=libzdb
-pkgver=2.12
-pkgrel=2
+pkgver=3.0
+pkgrel=1
pkgdesc="Zild Database Library"
arch=('i686' 'x86_64')
url="http://www.tildeslash.com/libzdb/"
license=('GPL')
depends=('postgresql-libs' 'sqlite' 'libmariadbclient')
source=(http://www.tildeslash.com/libzdb/dist/libzdb-$pkgver.tar.gz)
-md5sums=('dd95114cae471d1b5dfda1f263b222c1')
+md5sums=('3bb9efff10a1f3ebc5b76c1055c48635')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/community/lksctp-tools/PKGBUILD b/community/lksctp-tools/PKGBUILD
index 17d9f37db..78655c8ae 100644
--- a/community/lksctp-tools/PKGBUILD
+++ b/community/lksctp-tools/PKGBUILD
@@ -3,15 +3,15 @@
# Contributer: Nicolas Martyanoff <khaelin@gmail.com>
pkgname=lksctp-tools
-pkgver=1.0.15
-pkgrel=2
+pkgver=1.0.16
+pkgrel=1
pkgdesc='An implementation of the SCTP protocol'
arch=('i686' 'x86_64')
url='http://lksctp.sourceforge.net/'
license=('GPL2' 'LGPL2.1')
depends=('bash')
source=("http://downloads.sourceforge.net/sourceforge/lksctp/$pkgname-$pkgver.tar.gz")
-md5sums=('d829677541fb41061e7f4d61f8413b07')
+md5sums=('708bb0b5a6806ad6e8d13c55b067518e')
build() {
cd $pkgname-$pkgver
diff --git a/community/mediainfo-gui/PKGBUILD b/community/mediainfo-gui/PKGBUILD
index ae1e1e043..221b9be17 100644
--- a/community/mediainfo-gui/PKGBUILD
+++ b/community/mediainfo-gui/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 103859 2014-01-12 19:04:40Z eric $
+# $Id: PKGBUILD 105973 2014-02-20 09:02:55Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: hydro <hydro@freenet.de>
pkgname=mediainfo-gui
-pkgver=0.7.65
-pkgrel=6
+pkgver=0.7.67
+pkgrel=1
pkgdesc="GUI for mediainfo"
arch=('i686' 'x86_64')
url="http://mediainfo.sourceforge.net"
@@ -12,7 +12,7 @@ license=('GPL')
depends=('libmediainfo' 'wxgtk' 'libsm' 'desktop-file-utils')
install=mediainfo-gui.install
source=(http://downloads.sourceforge.net/mediainfo/mediainfo_${pkgver}.tar.bz2)
-md5sums=('19d7992a7d0cba0f5f731f993e8c537c')
+md5sums=('480ac31a4080737f21937f9d260b96de')
build() {
cd MediaInfo/Project/GNU/GUI
diff --git a/community/mediainfo/PKGBUILD b/community/mediainfo/PKGBUILD
index 9c262984d..ead0872f2 100644
--- a/community/mediainfo/PKGBUILD
+++ b/community/mediainfo/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 101325 2013-11-22 17:32:35Z spupykin $
+# $Id: PKGBUILD 105971 2014-02-20 09:02:40Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: hydro <hydro@freenet.de>
pkgname=mediainfo
-pkgver=0.7.65
+pkgver=0.7.67
pkgrel=1
pkgdesc="supplies technical and tag information about a video or audio file"
arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@ license=('GPL')
depends=('libmediainfo')
makedepends=('libtool' 'automake' 'autoconf')
source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
-md5sums=('19d7992a7d0cba0f5f731f993e8c537c')
+md5sums=('480ac31a4080737f21937f9d260b96de')
build() {
cd $srcdir/MediaInfo/Project/GNU/CLI
diff --git a/community/minitube/PKGBUILD b/community/minitube/PKGBUILD
index 890373335..eb670c93c 100644
--- a/community/minitube/PKGBUILD
+++ b/community/minitube/PKGBUILD
@@ -1,26 +1,18 @@
-# $Id: PKGBUILD 103290 2014-01-02 16:08:02Z speps $
+# $Id: PKGBUILD 105996 2014-02-20 19:25:26Z speps $
# Maintainer : speps <speps at aur dot archlinux dot org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
pkgname=minitube
-pkgver=2.1.5
+pkgver=2.1.6
pkgrel=1
pkgdesc="A native YouTube client in Qt. Watch YouTube videos without Flash Player"
arch=('i686' 'x86_64')
url='http://flavio.tordini.org/minitube'
license=('GPL3')
-depends=('phonon')
+depends=('phonon-qt4')
install="$pkgname.install"
-source=("http://flavio.tordini.org/files/$pkgname/$pkgname-$pkgver.tar.gz"
- "$pkgname-missing-locale.patch")
-md5sums=('e52933f3ae5200f83aa39ac71ac13bfb'
- '70cdaa1d3df700cf90243be5a0d55443')
-
-prepare() {
- cd $pkgname
- # remove missing translations
- patch -p1 -i ../${source[1]}
-}
+source=("http://flavio.tordini.org/files/$pkgname/$pkgname-1.2.6.tar.gz") # tagging mismatch
+md5sums=('b5a7794cad661d47e0e856b864f774af')
build() {
cd $pkgname
diff --git a/community/minitube/minitube-missing-locale.patch b/community/minitube/minitube-missing-locale.patch
deleted file mode 100644
index 5288120e4..000000000
--- a/community/minitube/minitube-missing-locale.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -aur minitube/locale/locale.pri minitube.patched/locale/locale.pri
---- minitube/locale/locale.pri 2013-12-19 00:37:27.000000000 +0100
-+++ minitube.patched/locale/locale.pri 2013-12-25 00:03:56.783943888 +0100
-@@ -4,7 +4,7 @@
- DEPENDPATH += $$PWD
-
- # ls -1 *.ts | tr '\n' ' '
--TRANSLATIONS += ar.ts ast.ts be.ts bg_BG.ts ca.ts ca_ES.ts cs_CZ.ts da.ts de_DE.ts el.ts en.ts es.ts es_AR.ts es_ES.ts es_MX.ts fi.ts fi_FI.ts fr.ts gl.ts he_IL.ts hr.ts hu.ts ia.ts it.ts ja_JP.ts ky.ts ms_MY.ts nb.ts nl.ts pl.ts pl_PL.ts pt.ts pt_BR.ts ro.ts ru.ts sk.ts sl.ts sq.ts sv_SE.ts tr.ts uk.ts uk_UA.ts vi.ts zh_CN.ts zh_TW.ts
-+TRANSLATIONS += ar.ts ast.ts bg_BG.ts ca.ts cs_CZ.ts da.ts de_DE.ts el.ts en.ts es.ts es_AR.ts es_ES.ts fi.ts fi_FI.ts fr.ts gl.ts he_IL.ts hu.ts ia.ts it.ts ja_JP.ts ky.ts ms_MY.ts nb.ts nl.ts pl.ts pl_PL.ts pt_BR.ts ro.ts ru.ts sk.ts sl.ts sq.ts sv_SE.ts tr.ts uk.ts uk_UA.ts zh_CN.ts zh_TW.ts
- isEmpty(QMAKE_LRELEASE) {
- win32:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\lrelease.exe
- else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
diff --git a/community/qingy/PKGBUILD b/community/qingy/PKGBUILD
deleted file mode 100644
index 1ed0df641..000000000
--- a/community/qingy/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 99973 2013-10-31 02:46:37Z allan $
-# Maintainer: Eric Bélanger <eric@archlinux.org>
-# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
-
-pkgname=qingy
-pkgver=1.0.0
-pkgrel=9
-pkgdesc="A DirectFB getty replacement"
-arch=('i686' 'x86_64')
-url="http://qingy.sourceforge.net/"
-license=('GPL')
-depends=('directfb' 'openssl' 'libxss')
-makedepends=('emacs')
-backup=('etc/pam.d/qingy' 'etc/logrotate.d/qingy' 'etc/qingy/settings' 'etc/qingy/welcomes')
-install=qingy.install
-source=(http://downloads.sourceforge.net/sourceforge/qingy/${pkgname}-${pkgver}.tar.bz2 \
- qingy.logrotate qingy@.service)
-sha1sums=('22ee505e935bf7ddcbd33e23f754a5a1ca082c81'
- '21676cf0b71334c666f7b3e4f3d8b4f319266c81'
- '43a6f1cee03ffa598a77cb3c333cb1e8c63b4a2c')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- sed -i 's|/lib/security/||' media/pam/default/qingy
- XFREE=/usr/bin/Xorg XINIT=/usr/bin/xinit \
- ./configure --prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc \
- --enable-emacs --disable-optimizations --disable-static
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
- install -D -m644 "${srcdir}/qingy.logrotate" "${pkgdir}/etc/logrotate.d/qingy"
- install -D -m644 "${srcdir}/qingy@.service" "${pkgdir}/usr/lib/systemd/system/qingy@.service"
-}
diff --git a/community/qingy/qingy.install b/community/qingy/qingy.install
deleted file mode 100644
index 0defe31d8..000000000
--- a/community/qingy/qingy.install
+++ /dev/null
@@ -1,20 +0,0 @@
-infodir=usr/share/info
-filelist=(qingy.info.gz)
-
-post_install() {
- [[ -x usr/bin/install-info ]] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install
-}
-
-pre_remove() {
- [[ -x usr/bin/install-info ]] || return 0
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
-}
diff --git a/community/qingy/qingy.logrotate b/community/qingy/qingy.logrotate
deleted file mode 100644
index e16fb8d2a..000000000
--- a/community/qingy/qingy.logrotate
+++ /dev/null
@@ -1,9 +0,0 @@
-/var/log/qingy.log {
- compress
- rotate 1
- size=+1024k
- notifempty
- missingok
- copytruncate
- noolddir
-}
diff --git a/community/qingy/qingy@.service b/community/qingy/qingy@.service
deleted file mode 100644
index 537eb53fd..000000000
--- a/community/qingy/qingy@.service
+++ /dev/null
@@ -1,21 +0,0 @@
-[Unit]
-Description=Qingy on %I
-Documentation=info:qingy
-After=systemd-user-sessions.service plymouth-quit-wait.service
-
-[Service]
-Environment=TERM=linux
-ExecStart=/usr/bin/qingy %I -n
-Type=idle
-Restart=always
-RestartSec=0
-UtmpIdentifier=%I
-TTYPath=/dev/%I
-TTYReset=yes
-TTYVHangup=yes
-TTYVTDisallocate=yes
-KillMode=process
-IgnoreSIGPIPE=no
-
-[Install]
-Alias=getty.target.wants/qingy@tty1.service
diff --git a/community/roxterm/PKGBUILD b/community/roxterm/PKGBUILD
index 95892cc10..a9caa0df2 100644
--- a/community/roxterm/PKGBUILD
+++ b/community/roxterm/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 105882 2014-02-17 19:03:35Z ttoepper $
+# $Id: PKGBUILD 106002 2014-02-20 21:13:47Z ttoepper $
# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de>
# Contributor: Alexander Fehr <pizzapunk gmail com>
pkgname=roxterm
pkgver=2.8.2
-pkgrel=1
+pkgrel=2
pkgdesc='Tabbed, VTE-based terminal emulator'
arch=('i686' 'x86_64')
url='http://roxterm.sourceforge.net/'
@@ -23,7 +23,9 @@ sha1sums=('fcde0b09f6ff02c5ec93a528e870e139d814b529'
build() {
cd "${srcdir}/roxterm-${pkgver}"
- python2 mscript.py configure --prefix='/usr'
+ # FS#38967: Reenable deprecated VTE3 functions
+ python2 mscript.py configure --prefix='/usr' \
+ --enable-deprecated-bg-opts
python2 mscript.py build
}
diff --git a/community/yagf/PKGBUILD b/community/yagf/PKGBUILD
index a810ad8c5..369ee25a1 100644
--- a/community/yagf/PKGBUILD
+++ b/community/yagf/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 85428 2013-03-01 10:43:02Z andrea $
+# $Id: PKGBUILD 105975 2014-02-20 09:03:10Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: das-ich <das-ich@yandex.ru>
pkgname=yagf
-pkgver=0.9.2
-pkgrel=3
-pkgdesc="QT4-based GUI for Cuneiform and Tesseract OCRs"
+pkgver=0.9.3
+pkgrel=1
+pkgdesc="Qt4-based GUI for Cuneiform and Tesseract OCRs"
arch=(i686 x86_64)
url="http://symmetrica.net/cuneiform-linux/yagf-en.html"
license=('GPL')
@@ -16,7 +16,7 @@ optdepends=('cuneiform: recognition tool'
makedepends=('cmake')
install=yagf.install
source=(http://symmetrica.net/cuneiform-linux/${pkgname}-${pkgver}.tar.gz)
-md5sums=('13592e52006d20f71c0094aafb13ed0e')
+md5sums=('54549f1daef831ca88532b450a9cf1d9')
build() {
cd "${srcdir}/${pkgname}-$pkgver"