summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-02-11 03:21:28 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-02-11 03:21:28 +0000
commit121ee20158ca9869daadf9a2993b431af9661cb6 (patch)
tree3b8f82250a4d0f25ef33e3ea3300c24a74c262dd /community
parentffe0bbfd85b1341f3b15f809ea92f330d2f7cea3 (diff)
Tue Feb 11 03:19:20 UTC 2014
Diffstat (limited to 'community')
-rw-r--r--community/cgal/PKGBUILD38
-rw-r--r--community/darktable/PKGBUILD17
-rw-r--r--community/dbmail/PKGBUILD4
-rw-r--r--community/gmic/PKGBUILD6
-rw-r--r--community/gnunet/PKGBUILD13
-rw-r--r--community/gnurl/PKGBUILD45
-rw-r--r--community/libuhd/PKGBUILD19
-rw-r--r--community/libvirt/PKGBUILD18
-rw-r--r--community/mate-color-manager/PKGBUILD46
-rw-r--r--community/mate-color-manager/mate-color-manager.install13
-rw-r--r--community/opencsg/PKGBUILD32
-rw-r--r--community/openscad/CHANGELOG27
-rw-r--r--community/openscad/PKGBUILD31
-rw-r--r--community/poedit/PKGBUILD5
-rw-r--r--community/python-pybluez/PKGBUILD31
-rw-r--r--community/python2-pybluez/PKGBUILD23
-rw-r--r--community/viewnior/PKGBUILD16
-rw-r--r--community/viewnior/viewnior.install2
18 files changed, 320 insertions, 66 deletions
diff --git a/community/cgal/PKGBUILD b/community/cgal/PKGBUILD
new file mode 100644
index 000000000..eba147901
--- /dev/null
+++ b/community/cgal/PKGBUILD
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 105550 2014-02-10 04:57:25Z kkeen $
+# Maintainer: Kyle Keen <keenerd@gmail.com>
+# Contributor: Dmitriy Morozov <foxcub>
+
+pkgname=cgal
+pkgver=4.3
+pkgrel=2
+_pkgid=32995
+pkgdesc="Computational Geometry Algorithms Library"
+arch=('i686' 'x86_64')
+url="http://www.cgal.org"
+license=('GPL' 'LGPL')
+source=(http://gforge.inria.fr/frs/download.php/$_pkgid/CGAL-$pkgver.tar.xz)
+depends=('mpfr' 'boost-libs' 'gmp' 'mesa' 'glu')
+optdepends=('qt4: for CGAL_Qt4'
+ 'eigen: for some packages, see the CGAL manual')
+makedepends=('cmake' 'qt4' 'eigen' 'boost')
+md5sums=('c0af5e3a56300b0c92ebd3a1f0df9149')
+
+# consider building with swig for python stuff
+
+build() {
+ cd "$srcdir/CGAL-$pkgver"
+ mkdir build
+ cd build
+ cmake ../ -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/CGAL-$pkgver/build"
+ make install DESTDIR="$pkgdir"
+
+ # The tarball still has all theese licenses included
+ for _license in LICENSE{,.FREE_USE,.GPL,.LGPL}; do
+ install -D -m644 "$srcdir/CGAL-$pkgver/$_license" "$pkgdir/usr/share/licenses/$pkgname/$_license"
+ done
+}
diff --git a/community/darktable/PKGBUILD b/community/darktable/PKGBUILD
index e6a18b88d..89c6f85c7 100644
--- a/community/darktable/PKGBUILD
+++ b/community/darktable/PKGBUILD
@@ -1,12 +1,12 @@
-# $Id: PKGBUILD 104794 2014-01-26 12:17:32Z andyrtr $
+# $Id: PKGBUILD 105573 2014-02-10 13:31:16Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Christian Himpel <chressie at gmail dot com>
# Contributor: Johannes Hanika <hanatos at gmail dot com>
pkgname=darktable
-pkgver=1.4
+pkgver=1.4.1
_pkgver=1.4
-pkgrel=3
+pkgrel=1
pkgdesc="Utility to organize and develop raw images"
arch=('i686' 'x86_64')
url=http://darktable.sf.net/
@@ -17,15 +17,8 @@ depends=('exiv2>=0.18' 'intltool>=0.40' 'lcms2' 'lensfun>=0.2.3' 'libglade' 'dbu
makedepends=('intltool>=0.40' 'cmake' 'librsvg')
optdepends=('librsvg')
install=darktable.install
-source=(http://downloads.sourceforge.net/project/darktable/darktable/${_pkgver}/darktable-$pkgver.tar.xz
- https://github.com/darktable-org/darktable/commit/74dbfa3b24bcc216ec91e12551b6b434e4a43a22.diff)
-md5sums=('896416931ded4579f528cd11edad470c'
- 'f959e371f8648eeef8ad6dd6e1403d29')
-
-prepare() {
- cd "$srcdir/$pkgname-$pkgver"
- patch -p1 <$srcdir/74dbfa3b24bcc216ec91e12551b6b434e4a43a22.diff
-}
+source=(http://downloads.sourceforge.net/project/darktable/darktable/${_pkgver}/darktable-$pkgver.tar.xz)
+md5sums=('78252618bb7b1df30109ef5484d46f3c')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/community/dbmail/PKGBUILD b/community/dbmail/PKGBUILD
index 7999a89dd..5c4c4cd2e 100644
--- a/community/dbmail/PKGBUILD
+++ b/community/dbmail/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 104522 2014-01-22 09:14:10Z spupykin $
+# $Id: PKGBUILD 105591 2014-02-10 18:05:32Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Sebastian Faltoni <sebastian.faltoni@gmail.com>
pkgname=dbmail
pkgver=3.1.10
-pkgrel=1
+pkgrel=2
pkgdesc="Fast and scalable sql based mail services"
arch=('i686' 'x86_64')
depends=('gmime' 'libzdb' 'mhash' 'libevent')
diff --git a/community/gmic/PKGBUILD b/community/gmic/PKGBUILD
index 5824b50c9..ccc81c138 100644
--- a/community/gmic/PKGBUILD
+++ b/community/gmic/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 104321 2014-01-17 14:08:56Z spupykin $
+# $Id: PKGBUILD 105557 2014-02-10 11:18:20Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com>
# Contributor: farid <farid at archlinuc-br.org>
@@ -6,7 +6,7 @@
pkgbase=gmic
pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.5.8.2
+pkgver=1.5.8.3
pkgrel=1
arch=("i686" "x86_64")
url="http://gmic.sourceforge.net"
@@ -15,7 +15,7 @@ makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
#options=('!emptydirs')
source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz"
"opencv-buildfix.patch")
-md5sums=('3b96d8369a6b91baf13490234b3dcd7c'
+md5sums=('ee80a2dc1a2441a6c0adf92e9bea623b'
'120319b0d6c81c5af186abe2281b79ca')
prepare() {
diff --git a/community/gnunet/PKGBUILD b/community/gnunet/PKGBUILD
index 4efc27ca7..6c5501197 100644
--- a/community/gnunet/PKGBUILD
+++ b/community/gnunet/PKGBUILD
@@ -1,17 +1,22 @@
-# $Id: PKGBUILD 103911 2014-01-13 17:16:42Z andyrtr $
+# $Id: PKGBUILD 105576 2014-02-10 13:48:00Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: wahnby <wahnby@yahoo.fr>
pkgname=gnunet
pkgver=0.10.0
-pkgrel=1
+pkgrel=2
pkgdesc="A framework for secure peer-to-peer networking"
arch=('i686' 'x86_64')
url="http://gnunet.org"
license=('GPL')
-depends=('gmp' 'libgcrypt' 'libextractor' 'sqlite' 'curl'
+depends=('gmp' 'libgcrypt' 'libextractor' 'sqlite' 'gnurl'
'libmicrohttpd' 'libunistring' 'libidn')
-makedepends=('gettext' 'pkgconfig')
+makedepends=('gettext' 'pkgconfig'
+ 'bluez-libs' 'python' 'glpk' 'libpulse')
+optdepends=('bluez-libs'
+ 'python'
+ 'glpk'
+ 'libpulse')
backup=(etc/gnunetd.conf)
options=('!makeflags')
install=gnunet.install
diff --git a/community/gnurl/PKGBUILD b/community/gnurl/PKGBUILD
new file mode 100644
index 000000000..d4e36360c
--- /dev/null
+++ b/community/gnurl/PKGBUILD
@@ -0,0 +1,45 @@
+# $Id: PKGBUILD 105578 2014-02-10 13:48:16Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=gnurl
+pkgver=7.34.0
+pkgrel=1
+pkgdesc="fork of libcurl, which is mostly for GNUnet"
+arch=(i686 x86_64)
+url="https://gnunet.org/gnurl"
+license=('MIT')
+depends=()
+makedepends=()
+source=(https://gnunet.org/sites/default/files/gnurl-$pkgver.tar.bz2)
+md5sums=('c9b0faf03b9286aace01fefb62069088')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure \
+ --prefix=/usr \
+ --mandir=/usr/share/man \
+ --disable-ldap \
+ --disable-ldaps \
+ --enable-ipv6 \
+ --enable-manual \
+ --enable-versioned-symbols \
+ --enable-threaded-resolver \
+ --with-gssapi \
+ --without-libidn \
+ --with-random=/dev/urandom \
+ --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+ install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+
+ rm -rf $pkgdir/usr/share/man \
+ $pkgdir/usr/bin/curl \
+ $pkgdir/usr/share/aclocal
+ mkdir -p $pkgdir/usr/include/gnurl
+ mv $pkgdir/usr/include/curl $pkgdir/usr/include/gnurl/curl
+ sed -i 's|includedir=.*|includedir=/usr/include/gnurl|g' $pkgdir/usr/lib/pkgconfig/libgnurl.pc
+}
diff --git a/community/libuhd/PKGBUILD b/community/libuhd/PKGBUILD
index e33eaf34f..d51796f9e 100644
--- a/community/libuhd/PKGBUILD
+++ b/community/libuhd/PKGBUILD
@@ -1,25 +1,27 @@
-# $Id: PKGBUILD 102256 2013-12-07 10:36:40Z bpiotrowski $
+# $Id: PKGBUILD 105585 2014-02-10 16:15:17Z kkeen $
# Maintainer: Kyle Keen <keenerd@gmail.com>
# Contributor: Dominik Heidler <dheidler@gmail.com>
pkgname=libuhd
-pkgver=3.5.4
-_verstring=003_005_004
-pkgrel=4
+pkgver=3.6.2
+_verstring=003_006_002
+pkgrel=1
pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
arch=('x86_64' 'i686')
url="http://code.ettus.com/redmine/ettus/projects/uhd/wiki"
license=('GPL')
depends=('boost-libs' 'orc' 'libusbx')
+optdepends=('python2: usrp utils')
makedepends=('cmake' 'boost' 'python2-cheetah')
-source=("libuhd-$pkgver.tar.gz::https://codeload.github.com/EttusResearch/uhd/tar.gz/release_$_verstring")
-md5sums=('e90c95483a52b75cacc85f4fb0ef63ed')
+source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz")
+md5sums=('50a25b95dc08dd3946988c5da98814a9')
build() {
cd "$srcdir/uhd-release_$_verstring/host"
# fix for py2
- find -name "*.py" | xargs sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|"
+ find -name "*.py" -or -name '*.py.in' | xargs sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python2|"
+
mkdir -p build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/ \
@@ -29,6 +31,7 @@ build() {
-DENABLE_TESTS=OFF \
-DENABLE_E100=ON
# e100 is disabled by default for now, check that on future releases
+
make
}
@@ -40,5 +43,5 @@ check() {
package() {
cd "$srcdir/uhd-release_$_verstring/host/build"
make DESTDIR="$pkgdir" install
- install -Dm644 "$pkgdir/usr/share/uhd/utils/uhd-usrp.rules" "$pkgdir/usr/lib/udev/rules.d/10-uhd-usrp.rules"
+ install -Dm644 "../utils/uhd-usrp.rules" "$pkgdir/usr/lib/udev/rules.d/10-uhd-usrp.rules"
}
diff --git a/community/libvirt/PKGBUILD b/community/libvirt/PKGBUILD
index e8f834235..13073ce0e 100644
--- a/community/libvirt/PKGBUILD
+++ b/community/libvirt/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 104165 2014-01-16 14:47:41Z spupykin $
+# $Id: PKGBUILD 105566 2014-02-10 12:00:31Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Jonathan Wiersma <archaur at jonw dot org>
pkgname=libvirt
pkgver=1.2.1
-pkgrel=1
+pkgrel=3
pkgdesc="API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)"
arch=('i686' 'x86_64')
url="http://libvirt.org/"
@@ -20,7 +20,8 @@ optdepends=('bridge-utils: for briged networking (default)'
'qemu'
'radvd'
'dmidecode'
- 'ebtables')
+ 'ebtables'
+ 'pm-utils: host power management')
options=('emptydirs')
backup=('etc/conf.d/libvirtd'
'etc/conf.d/libvirt-guests'
@@ -32,11 +33,18 @@ install="libvirt.install"
source=("http://libvirt.org/sources/$pkgname-$pkgver.tar.gz"
libvirtd.conf.d
libvirtd-guests.conf.d
- libvirt.tmpfiles.d)
+ libvirt.tmpfiles.d
+ "FS#38546.patch::http://libvirt.org/git/?p=libvirt.git;a=commitdiff_plain;h=7f0fd427413fe04963b1bcb158cf70e980ad1842")
md5sums=('cce374220f67895afb6331bd2ddedbfd'
'3ed0e24f5b5e25bf553f5427d64915e6'
'0a96ed876ffb1fcb9dff5a9b3a609c1e'
- '020971887442ebbf1b6949e031c8dd3f')
+ '020971887442ebbf1b6949e031c8dd3f'
+ 'f579805e75956d32992c6934346ee740')
+
+prepare() {
+ cd "$srcdir/$pkgname-$pkgver"
+ patch -p1 <"$srcdir/FS#38546.patch"
+}
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/community/mate-color-manager/PKGBUILD b/community/mate-color-manager/PKGBUILD
new file mode 100644
index 000000000..048949ce1
--- /dev/null
+++ b/community/mate-color-manager/PKGBUILD
@@ -0,0 +1,46 @@
+# $Id: PKGBUILD 105579 2014-02-10 13:50:05Z flexiondotorg $
+# Maintainer : Martin Wimpress <code@flexion.org>
+
+pkgname=mate-color-manager
+pkgver=1.6.1
+pkgrel=3
+pkgdesc="Color management application for MATE."
+url="https://github.com/NiceandGently/${pkgname}"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus' 'desktop-file-utils' 'exiv2' 'gtk2' 'lcms2' 'libcanberra' 'libcups' 'libexif' 'libnotify' 'libtiff'
+ 'libunique' 'mate-desktop' 'sane' 'vte')
+makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser')
+options=('!emptydirs')
+source=("https://github.com/NiceandGently/${pkgname}/archive/v${pkgver}.tar.gz"
+ "https://github.com/NiceandGently/mate-color-manager/commit/cb80f549af83a703243eae4afad841d564743afb.diff")
+sha1sums=('6a8d18a3a7e3fb22e03cd319556575b9482c6f04'
+ '283c767591956206f5c7229ee1eff86faea253c0')
+install=${pkgname}.install
+
+prepare() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ # Get udevrulesdir from pkg-config
+ patch -Np1 -i "${srcdir}/cb80f549af83a703243eae4afad841d564743afb.diff"
+ NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --sbindir=/usr/bin \
+ --libexecdir=/usr/lib/${pkgname} \
+ --disable-static \
+ --disable-scrollkeeper
+
+ #Work around a problem where the .sgml fail to parse.
+ sed -e 's:@HAVE_DOCBOOK2MAN_TRUE@.*::' -i man/Makefile.in
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}
diff --git a/community/mate-color-manager/mate-color-manager.install b/community/mate-color-manager/mate-color-manager.install
new file mode 100644
index 000000000..4e09ba484
--- /dev/null
+++ b/community/mate-color-manager/mate-color-manager.install
@@ -0,0 +1,13 @@
+post_install() {
+ glib-compile-schemas /usr/share/glib-2.0/schemas/
+ gtk-update-icon-cache -q -t -f /usr/share/icons/mate
+ update-desktop-database -q
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
diff --git a/community/opencsg/PKGBUILD b/community/opencsg/PKGBUILD
new file mode 100644
index 000000000..134300f78
--- /dev/null
+++ b/community/opencsg/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 105548 2014-02-10 04:53:52Z kkeen $
+# Maintainer: Kyle Keen <keenerd@gmail.com>
+# Maintainer: Xyne <ca dot archlinux at xyne, backwards>
+# Contributor: nikor
+
+pkgname=opencsg
+pkgver=1.3.2
+pkgrel=2
+pkgdesc="Library for image-based CSG rendering using OpenGL."
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('glew' 'glut' 'mesa')
+url="http://www.opencsg.org"
+source=(http://www.opencsg.org/OpenCSG-${pkgver}.tar.gz)
+sha1sums=('e2b4abf169ae3e319eb5f6d9ae6136fa96710a05')
+
+build() {
+ cd -- "${srcdir}/OpenCSG-${pkgver}"
+ sed -i 's|-rpath,../lib|-rpath,/usr/lib|' src/Makefile
+ make
+}
+
+package() {
+ cd -- "${srcdir}/OpenCSG-${pkgver}"
+ install -D lib/libopencsg.so.${pkgver} "$pkgdir/usr/lib/libopencsg.so.${pkgver}"
+ install -D include/opencsg.h "$pkgdir/usr/include/opencsg.h"
+ cd "$pkgdir/usr/lib/"
+ ln -s libopencsg.so.${pkgver} libopencsg.so.1.3
+ ln -s libopencsg.so.${pkgver} libopencsg.so.1
+ ln -s libopencsg.so.${pkgver} libopencsg.so
+}
+
diff --git a/community/openscad/CHANGELOG b/community/openscad/CHANGELOG
new file mode 100644
index 000000000..86c5f542e
--- /dev/null
+++ b/community/openscad/CHANGELOG
@@ -0,0 +1,27 @@
+2014-02-10 Kyle Keen <keenerd@gmail.com>
+
+ * 2013.06-3
+ - Moved package to [community]
+ - Explicit boost depends
+ - Use official resources
+
+2014-02-07 Chirantan Ekbote <chirantan.ekbote@gmail.com>
+
+ * 2013.06-2
+ - Update makedepends since eigen3 has now become eigen in [extra]
+
+2013-06-19 Chirantan Ekbote <chirantan.ekbote@gmail.com>
+
+ * 2013.06-1 :
+ - Updated to version 2013.06
+
+2013-03-01 Chirantan Ekbote <chirantan.ekbote@gmail.com>
+
+ * 2013.01-2 :
+ Dependency qt replaced with qt4
+
+2013-01-23 Chirantan Ekbote <chirantan.ekbote@gmail.com>
+
+ * 2013.01-1 :
+ New upstream release.
+ Dependency eigen2 repaced by eigen3
diff --git a/community/openscad/PKGBUILD b/community/openscad/PKGBUILD
new file mode 100644
index 000000000..0577125f1
--- /dev/null
+++ b/community/openscad/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 105552 2014-02-10 05:19:10Z kkeen $
+# Maintainer: Kyle Keen <keenerd@gmail.com>
+# Contributor: Chirantan Ekbote <chirantan.ekbote at gmail.com>
+# Contributor: Eric Anderson <ejona86 at gmail.com>
+# Contributor: Pierre DOUCET <pierre at equinoxefr.org>
+pkgname=openscad
+pkgver=2013.06
+pkgrel=3
+pkgdesc="The programmers' solid 3D CAD modeller"
+url="http://openscad.org/"
+arch=('i686' 'x86_64')
+license=('GPL2')
+changelog=CHANGELOG
+depends=('qt4' 'cgal' 'opencsg' 'boost-libs')
+makedepends=('eigen' 'boost' 'imagemagick')
+source=("https://openscad.googlecode.com/files/$pkgname-$pkgver.src.tar.gz")
+md5sums=('b7b5faecdffc41e28cdf0c1162299de7')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ qmake-qt4 PREFIX="/usr"
+ make
+ convert "icons/$pkgname.png" -resize 128x128\> "icons/$pkgname-128.png"
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make INSTALL_ROOT="$pkgdir" install
+ install -Dm644 "icons/$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
+ install -Dm644 "icons/$pkgname-128.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
+}
diff --git a/community/poedit/PKGBUILD b/community/poedit/PKGBUILD
index c04d4263e..b0676ed4a 100644
--- a/community/poedit/PKGBUILD
+++ b/community/poedit/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 103800 2014-01-11 20:08:33Z eric $
+# $Id: PKGBUILD 105570 2014-02-10 12:39:42Z spupykin $
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Alexander Fehr <pizzapunk@gmail.com>
@@ -6,7 +6,7 @@
pkgname=poedit
pkgver=1.6.3
-pkgrel=1
+pkgrel=2
pkgdesc="Cross-platform gettext catalogs (.po files) editor"
arch=('i686' 'x86_64')
url="http://www.poedit.net/"
@@ -20,6 +20,7 @@ md5sums=('f58be3cee666d3c586a85c26abba7816')
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
sed -i 's|Wx/filename.h|wx/filename.h|' src/tm/transmem.cpp
+ sed -i 's|libexec/poedit|lib/poedit/poedit|g' src/tm/tm_migrate.cpp
}
build() {
diff --git a/community/python-pybluez/PKGBUILD b/community/python-pybluez/PKGBUILD
new file mode 100644
index 000000000..1dc7b5535
--- /dev/null
+++ b/community/python-pybluez/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 66132 2012-02-23 01:40:38Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: cs-cam - me.at.camdaniel.com
+
+pkgbase=python-pybluez
+pkgname=(python-pybluez python2-pybluez)
+pkgver=0.20
+pkgrel=1
+pkgdesc="Python wrapper for the BlueZ Bluetooth stack"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/pybluez/"
+license=('GPL')
+makedepends=('python' 'python2' 'bluez-libs')
+source=(http://pybluez.googlecode.com/files/PyBluez-$pkgver.zip)
+md5sums=('1e7fad332d50f089bbce69070c877ef6')
+
+package_python-pybluez() {
+ depends=('python' 'bluez-libs')
+
+ cd $srcdir/PyBluez-$pkgver
+ python setup.py install --root=$pkgdir
+# ln -s bluetooth/_bluetooth.so $pkgdir/usr/lib/python3.3/site-packages/_bluetooth.so
+}
+
+package_python2-pybluez() {
+ depends=('python2' 'bluez-libs')
+
+ cd $srcdir/PyBluez-$pkgver
+ python2 setup.py install --root=$pkgdir
+# ln -s bluetooth/_bluetooth.so $pkgdir/usr/lib/python2.7/site-packages/_bluetooth.so
+}
diff --git a/community/python2-pybluez/PKGBUILD b/community/python2-pybluez/PKGBUILD
deleted file mode 100644
index 672954656..000000000
--- a/community/python2-pybluez/PKGBUILD
+++ /dev/null
@@ -1,23 +0,0 @@
-# $Id: PKGBUILD 66132 2012-02-23 01:40:38Z spupykin $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Contributor: cs-cam - me.at.camdaniel.com
-
-pkgname=python2-pybluez
-pkgver=0.18
-pkgrel=6
-pkgdesc="Python wrapper for the BlueZ Bluetooth stack"
-arch=('i686' 'x86_64')
-url="http://code.google.com/p/pybluez/"
-license=('GPL')
-provides=('pybluez')
-conflicts=('pybluez')
-replaces=('pybluez')
-depends=('python2' 'bluez-libs')
-source=(http://pybluez.googlecode.com/files/PyBluez-$pkgver.tar.gz)
-md5sums=('be8c8ce615c3189fda1aaf3d568314b2')
-
-package() {
- cd $srcdir/PyBluez-$pkgver
- python2 setup.py install --root=$pkgdir
- ln -s bluetooth/_bluetooth.so $pkgdir/usr/lib/python2.7/site-packages/_bluetooth.so
-}
diff --git a/community/viewnior/PKGBUILD b/community/viewnior/PKGBUILD
index cf29740da..159d1a5c1 100644
--- a/community/viewnior/PKGBUILD
+++ b/community/viewnior/PKGBUILD
@@ -1,24 +1,28 @@
-# $Id: PKGBUILD 66682 2012-02-27 10:02:48Z spupykin $
+# $Id: PKGBUILD 105587 2014-02-10 17:25:44Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
# Maintainer: M Rawash <mrawash@gmail.com>
pkgname=viewnior
-pkgver=1.3
-pkgrel=1
+pkgver=1.4
+pkgrel=2
pkgdesc="A simple, fast and elegant image viewer program"
arch=('i686' 'x86_64')
url="http://xsisqox.github.com/Viewnior/"
license=('GPL3')
-depends=('gtk2>=2.12')
+depends=('gtk2>=2.12' 'exiv2')
makedepends=('make' 'intltool>=0.35' 'pkgconfig>=0.9' 'perl>=5.8.1')
install=viewnior.install
-source=(http://cloud.github.com/downloads/xsisqox/Viewnior/$pkgname-$pkgver.tar.gz)
-md5sums=('273c379933ae3e74ad414fde00198695')
+source=(https://www.dropbox.com/s/zytq0suabesv933/viewnior-$pkgver.tar.gz)
+md5sums=('13d7cb3381522161b32de9b70dd989b8')
build() {
cd $pkgname-$pkgver
LDFLAGS=-lm ./configure --prefix=/usr
make
+}
+
+package() {
+ cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
diff --git a/community/viewnior/viewnior.install b/community/viewnior/viewnior.install
index 5f0358791..c52bea067 100644
--- a/community/viewnior/viewnior.install
+++ b/community/viewnior/viewnior.install
@@ -1,7 +1,7 @@
post_install() {
[ -x `which update-mime-database` ] && update-mime-database usr/share/mime
[ -x `which gtk-update-icon-cache` ] && gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
- /bin/true
+ true
}
post_upgrade() {