summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-07-26 03:11:33 +0000
committerroot <root@rshg054.dnsready.net>2012-07-26 03:11:33 +0000
commitc4c5143448e3be178c254e8f9f1ab24661dc3b20 (patch)
treeb37c17c6a52a96ac527adc8958976a94de73fdc5 /community
parent3083719ddb24bbb452e7ddba34bec067ea249056 (diff)
Thu Jul 26 03:11:33 UTC 2012
Diffstat (limited to 'community')
-rw-r--r--community/assimp/PKGBUILD13
-rw-r--r--community/darktable/PKGBUILD6
-rw-r--r--community/freerdp/PKGBUILD12
-rw-r--r--community/nbd/PKGBUILD6
-rw-r--r--community/pkgfile/PKGBUILD6
-rw-r--r--community/pptpd/PKGBUILD6
-rw-r--r--community/python-pyopencl/LICENSE.txt20
-rw-r--r--community/python-pyopencl/PKGBUILD48
-rw-r--r--community/unpaper/PKGBUILD27
9 files changed, 110 insertions, 34 deletions
diff --git a/community/assimp/PKGBUILD b/community/assimp/PKGBUILD
index 8dc5bff69..215c165f5 100644
--- a/community/assimp/PKGBUILD
+++ b/community/assimp/PKGBUILD
@@ -2,21 +2,22 @@
# Contributor: jepaan <jepaan at hotmail dot com>
pkgname=assimp
-pkgver=2.0.863
+pkgver=3.0
pkgrel=1
pkgdesc="Portable Open Source library to import various well-known 3D model formats in an uniform manner"
arch=('i686' 'x86_64')
license=('BSD')
-makedepends=('cmake' 'boost')
+depends=('libxmu')
+makedepends=('cmake' 'boost' 'freeglut')
url=('http://assimp.sourceforge.net/index.html')
-source=("http://downloads.sourceforge.net/assimp/assimp--${pkgver}-sdk.zip")
-md5sums=('9f41662501bd9d9533c4cf03b7c25d5b')
+source=("http://downloads.sourceforge.net/assimp/assimp-${pkgver}-src.tar.gz")
+md5sums=('2cb57a3f9c9930dc3320a93670ec6fdf')
build() {
cd ${srcdir}
mkdir build
cd build
- cmake ../${pkgname}--${pkgver}-sdk \
+ cmake ../${pkgname}-${pkgver} \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
@@ -25,5 +26,5 @@ package() {
cd ${srcdir}/build
make DESTDIR=$pkgdir install
- install -Dm644 ${srcdir}/${pkgname}--${pkgver}-sdk/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+ install -Dm644 ${srcdir}/${pkgname}-${pkgver}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}
diff --git a/community/darktable/PKGBUILD b/community/darktable/PKGBUILD
index 7c7c5e0d8..d793544d1 100644
--- a/community/darktable/PKGBUILD
+++ b/community/darktable/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 71958 2012-06-04 07:52:39Z spupykin $
+# $Id: PKGBUILD 74306 2012-07-24 11:06:47Z 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.0.4
+pkgver=1.0.5
_pkgver=1.0
pkgrel=1
pkgdesc="Utility to organize and develop raw images"
@@ -19,7 +19,7 @@ optdepends=('librsvg')
install=darktable.install
options=(!libtool)
source=(http://downloads.sourceforge.net/project/darktable/darktable/${_pkgver}/darktable-$pkgver.tar.gz)
-md5sums=('244b7e3e2eb907f1602225b1b36a8b0c')
+md5sums=('9ad88a1a6b9761fce28c8073d8f47941')
build() {
cd $srcdir/$pkgname-$pkgver
diff --git a/community/freerdp/PKGBUILD b/community/freerdp/PKGBUILD
index 9dff3735b..055158577 100644
--- a/community/freerdp/PKGBUILD
+++ b/community/freerdp/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 73472 2012-07-08 09:30:06Z ibiru $
+# $Id: PKGBUILD 74308 2012-07-24 11:07:33Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Stijn Segers <francesco dot borromini at gmail dot com>
pkgname=freerdp
pkgver=1.0.1
-pkgrel=5
+pkgrel=6
pkgdesc="Free RDP client"
arch=('i686' 'x86_64')
url="http://freerdp.sourceforge.net"
license=('GPL')
depends=('openssl' 'libxcursor' 'libcups' 'alsa-lib' 'libxext' 'libxdamage'
- 'ffmpeg' 'libxkbfile' 'libxinerama' 'libxv')
+ 'ffmpeg' 'libxkbfile' 'libxinerama' 'libxv' 'libpulse')
makedepends=('krb5' 'cmake' 'damageproto' 'xmlto' 'docbook-xsl')
conflicts=('freerdp-git')
changelog=${pkgname}.changelog
@@ -20,7 +20,11 @@ md5sums=('c843185e0ff22ce8409954651718f338')
build() {
cd `find ${srcdir}/ -type d -name freerdp-\*`
- cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
+ cmake \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DWITH_PULSEAUDIO=ON \
+ .
make
}
diff --git a/community/nbd/PKGBUILD b/community/nbd/PKGBUILD
index e02e8902a..416123bbf 100644
--- a/community/nbd/PKGBUILD
+++ b/community/nbd/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 73924 2012-07-17 05:54:37Z svenstaro $
+# $Id: PKGBUILD 74302 2012-07-24 10:33:15Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Christian Hesse <mail@eworm.de>
# Contributor: Ionut Biru <ibiru@archlinux.org>
@@ -6,7 +6,7 @@
pkgname=nbd
pkgver=3.2
-pkgrel=2
+pkgrel=3
pkgdesc="tools for network block devices, allowing you to use remote block devices over TCP/IP"
arch=('i686' 'x86_64')
url="http://nbd.sourceforge.net"
@@ -24,7 +24,7 @@ md5sums=('9cafce4ecfb55e670d7ded4c8f4e6bc9'
build(){
cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr --sysconfdir=/etc
+ ./configure --prefix=/usr --sysconfdir=/etc --enable-syslog
make
}
diff --git a/community/pkgfile/PKGBUILD b/community/pkgfile/PKGBUILD
index 294a6143a..69d2c1bbc 100644
--- a/community/pkgfile/PKGBUILD
+++ b/community/pkgfile/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 74102 2012-07-20 22:53:30Z dreisner $
+# $Id: PKGBUILD 74339 2012-07-24 17:40:11Z dreisner $
# Maintainer: Dave Reisner <dreisner@archlinux.org>
pkgname=pkgfile
-pkgver=2
+pkgver=3
pkgrel=1
pkgdesc="a pacman .files metadata explorer"
arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@ conflicts=('pkgtools<24-2')
makedepends=('perl')
source=("https://github.com/downloads/falconindy/$pkgname/$pkgname-$pkgver.tar.xz")
install=pkgfile.install
-md5sums=('815ee5ad6ca3c1f6262389f423319fa9')
+md5sums=('9e90510580b00a12d750809f8c2f34cd')
build() {
cd "$pkgname-$pkgver"
diff --git a/community/pptpd/PKGBUILD b/community/pptpd/PKGBUILD
index 8d68250f9..e2252c0ba 100644
--- a/community/pptpd/PKGBUILD
+++ b/community/pptpd/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 72984 2012-06-26 13:10:02Z spupykin $
+# $Id: PKGBUILD 74321 2012-07-24 16:08:18Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=pptpd
pkgver=1.3.4
-pkgrel=8
+pkgrel=9
pkgdesc="Poptop server"
arch=(i686 x86_64)
url="http://poptop.sourceforge.net/"
@@ -31,7 +31,7 @@ package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
mkdir -p $pkgdir/etc/
- echo -e "# Read man pptpd.conf, see samples in /usr/share/doc/pptpd\nand write your pptpd configuration here" >$pkgdir/etc/pptpd.conf
+ echo -e "# Read man pptpd.conf, see samples in /usr/share/doc/pptpd\n# and write your pptpd configuration here" >$pkgdir/etc/pptpd.conf
install -Dm0755 ../pptpd $pkgdir/etc/rc.d/pptpd
mkdir -p $pkgdir/usr/share/doc/pptpd
cp -a samples $pkgdir/usr/share/doc/pptpd/
diff --git a/community/python-pyopencl/LICENSE.txt b/community/python-pyopencl/LICENSE.txt
new file mode 100644
index 000000000..3ce400f9d
--- /dev/null
+++ b/community/python-pyopencl/LICENSE.txt
@@ -0,0 +1,20 @@
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated documentation
+files (the "Software"), to deal in the Software without
+restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following
+conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.
diff --git a/community/python-pyopencl/PKGBUILD b/community/python-pyopencl/PKGBUILD
new file mode 100644
index 000000000..cb5cd4e25
--- /dev/null
+++ b/community/python-pyopencl/PKGBUILD
@@ -0,0 +1,48 @@
+# $Id: PKGBUILD 74334 2012-07-24 17:36:16Z stephane $
+# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
+
+pkgbase=python-pyopencl
+pkgname=('python2-pyopencl' 'python-pyopencl')
+pkgver=2012.1
+pkgrel=3
+pkgdesc="A complete, object-oriented language binding of OpenCL to Python"
+arch=('i686' 'x86_64')
+url="http://mathema.tician.de/software/pyopencl"
+license=('custom')
+makedepends=('ctags' 'python2-distribute' 'python-distribute' 'libcl' 'opencl-headers' 'mesa' 'boost' 'python2-mako' 'python-mako' 'python-numpy' 'python2-numpy')
+source=("http://pypi.python.org/packages/source/p/pyopencl/pyopencl-${pkgver}.tar.gz"
+ 'LICENSE.txt')
+sha1sums=('ef2460d5e9b883d8afe0ec47863a243b6f8ac7ff'
+ '2e6966b3d9b15603ce2c3ff79eeadd63c5d066b7')
+
+build() {
+ cd "$srcdir"
+
+ cp -a pyopencl-$pkgver{,-python2}
+
+ cd "${srcdir}/pyopencl-${pkgver}"
+ python ./configure.py --cl-enable-gl --no-use-shipped-boost
+ python setup.py build
+
+ cd "$srcdir/pyopencl-$pkgver-python2"
+ python2 ./configure.py --cl-enable-gl --no-use-shipped-boost
+ python2 setup.py build
+
+}
+
+package_python-pyopencl() {
+ depends=('libcl' 'opencl-headers' 'mesa' 'boost' 'python' 'python-numpy' 'python-mako' 'python-pytools')
+
+ cd "${srcdir}/pyopencl-${pkgver}"
+ python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
+
+ install -D -m644 ../LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
+package_python2-pyopencl() {
+ depends=('libcl' 'opencl-headers' 'mesa' 'boost' 'python2' 'python2-numpy' 'python2-mako' 'python2-pytools')
+
+ cd "${srcdir}/pyopencl-${pkgver}-python2"
+ python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
+
+ install -D -m644 ../LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}
diff --git a/community/unpaper/PKGBUILD b/community/unpaper/PKGBUILD
index e9463d7e9..b407f1db3 100644
--- a/community/unpaper/PKGBUILD
+++ b/community/unpaper/PKGBUILD
@@ -1,23 +1,26 @@
-# $Id: PKGBUILD 65349 2012-02-21 02:16:20Z spupykin $
+# $Id: PKGBUILD 74323 2012-07-24 16:20:43Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Andreas Hauser <andy-aur@splashground.de>
pkgname=unpaper
-pkgver=0.3
-pkgrel=3
+pkgver=0.4.2
+pkgrel=1
pkgdesc="post-processing tool for scanned sheets of paper"
arch=('i686' 'x86_64')
-url="http://$pkgname.berlios.de/"
+#url="http://$pkgname.berlios.de/"
+url="https://github.com/Flameeyes/unpaper"
license="GPL"
-depends=()
+depends=('libxslt')
makedepends=('gcc')
-source=("http://download.berlios.de/unpaper/$pkgname-${pkgver}.tar.gz")
-md5sums=('be41eaf8556e7df39ab53939c99c4f7b')
+source=("$pkgname-${pkgver}.tar.gz::https://github.com/Flameeyes/unpaper/tarball/unpaper-$pkgver")
+md5sums=('7dcee730cdbeffbbd840cbe6f2bb9693')
build() {
- cd $srcdir/$pkgname-$pkgver/src
- gcc $CFLAGS -lm -funroll-all-loops -fomit-frame-pointer -ftree-vectorize -o unpaper unpaper.c
- install -D -m0755 unpaper $pkgdir/usr/bin/unpaper
- install -d -m0755 $pkgdir/usr/share/doc/unpaper
- cp -a ../doc/* $pkgdir/usr/share/doc/unpaper
+ cd $srcdir/Flameeyes-unpaper-*
+ aclocal
+ automake --add-missing
+ autoconf
+ [ -f Makefile ] || ./configure --prefix=/usr
+ make
+ make install DESTDIR=$pkgdir
}