summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-04-22 00:02:56 +0000
committerroot <root@rshg054.dnsready.net>2012-04-22 00:02:56 +0000
commitaf1e6c210b43ea6b8e043524edccb1d0befd257f (patch)
tree39338a1d60483354554ee34df2afa262f8f201c0 /community
parent905dec08e7144fe77aad1161778a6c3b74ff305c (diff)
Sun Apr 22 00:02:56 UTC 2012
Diffstat (limited to 'community')
-rw-r--r--community/cdemu-client/PKGBUILD6
-rw-r--r--community/dmenu/PKGBUILD22
-rw-r--r--community/gammu/PKGBUILD8
-rw-r--r--community/gecko-mediaplayer/PKGBUILD6
-rw-r--r--community/gmtk/PKGBUILD8
-rw-r--r--community/gnome-mplayer/PKGBUILD6
-rw-r--r--community/go/PKGBUILD6
-rw-r--r--community/portaudio_cpp/PKGBUILD18
-rw-r--r--community/privoxy/PKGBUILD6
-rw-r--r--community/privoxy/privoxy.logrotate.d2
-rw-r--r--community/qtspim/PKGBUILD5
-rw-r--r--community/stunnel/PKGBUILD10
-rw-r--r--community/stunnel/stunnel.rc.d2
-rw-r--r--community/xmlstarlet/PKGBUILD34
14 files changed, 92 insertions, 47 deletions
diff --git a/community/cdemu-client/PKGBUILD b/community/cdemu-client/PKGBUILD
index 279ca938c..a3166b3a5 100644
--- a/community/cdemu-client/PKGBUILD
+++ b/community/cdemu-client/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=cdemu-client
pkgver=1.5.0
-pkgrel=1
+pkgrel=2
pkgdesc="Simple command-line client for controlling cdemu-daemon"
arch=('i686' 'x86_64')
url="http://cdemu.sourceforge.net/"
@@ -20,7 +20,11 @@ build() {
# python2 fix
sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' src/cdemu
+ # bash completion dir change
+ sed -e 's,bashcompdir = $(sysconfdir)/bash_completion.d,bashcompdir = $(datadir)/bash-completion/completions,' -i data/Makefile.am data/Makefile.in
+
./configure --prefix=/usr
+
make
}
diff --git a/community/dmenu/PKGBUILD b/community/dmenu/PKGBUILD
index 074b0d457..9a45dd17f 100644
--- a/community/dmenu/PKGBUILD
+++ b/community/dmenu/PKGBUILD
@@ -1,26 +1,26 @@
-# $Id: PKGBUILD 69466 2012-04-16 15:09:17Z spupykin $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de>
+# $Id: PKGBUILD 69620 2012-04-20 14:11:11Z bpiotrowski $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
+# Contributor: Thorsten Töpper <atsutane-tu@freethoughts.de>
# Contributor: Thayer Williams <thayer@archlinux.org>
# Contributor: Jeff 'codemac' Mickey <jeff@archlinux.org>
pkgname=dmenu
pkgver=4.5
-pkgrel=2
+pkgrel=3
pkgdesc="A generic menu for X"
url="http://tools.suckless.org/dmenu/"
arch=('i686' 'x86_64')
license=('MIT')
-depends=('sh' 'libxinerama' 'libxft' 'freetype2')
-source=("http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz"
- "http://tools.suckless.org/dmenu/patches/dmenu-$pkgver-xft.diff")
-md5sums=('9c46169ed703732ec52ed946c27d84b4'
- 'd448ec9120718b0aedbdb338f4fa69ba')
+depends=('sh' 'libxinerama')
+source=(http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz)
+md5sums=('9c46169ed703732ec52ed946c27d84b4')
build(){
cd $srcdir/$pkgname-$pkgver
- patch -p1 <$srcdir/dmenu-$pkgver-xft.diff
- make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11 XFTINC=-I/usr/include/freetype2
+ make \
+ X11INC=/usr/include/X11 \
+ X11LIB=/usr/lib/X11
}
package() {
diff --git a/community/gammu/PKGBUILD b/community/gammu/PKGBUILD
index 6fcfeab68..bb3f8b660 100644
--- a/community/gammu/PKGBUILD
+++ b/community/gammu/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 61481 2012-01-01 10:15:29Z schiv $
+# $Id: PKGBUILD 69642 2012-04-20 22:20:38Z tdziedzic $
# Maintainer: Ray Rashif <schiv@archlinux.org>
# Contributor: Corrado Primier <bardo@aur.archlinux.org>
# Contributor: Aurelien Foret <orelien@chez.com>
pkgname=gammu
pkgver=1.31.0
-pkgrel=1
+pkgrel=2
pkgdesc="GNU All Mobile Management Utilities"
arch=('i686' 'x86_64')
url="http://wammu.eu/"
@@ -21,7 +21,11 @@ md5sums=('9b1ff5d84730f025802b961ab9f26717')
build() {
cd "$srcdir/$pkgname-$pkgver"
+ # bash completion dir change
+ sed -e 's,DESTINATION "/etc/bash_completion.d",DESTINATION "/usr/share/bash-completion/completions",' -i contrib/CMakeLists.txt
+
cmake . -DCMAKE_INSTALL_PREFIX="/usr"
+
make
}
diff --git a/community/gecko-mediaplayer/PKGBUILD b/community/gecko-mediaplayer/PKGBUILD
index 969b1fc76..56470a0f6 100644
--- a/community/gecko-mediaplayer/PKGBUILD
+++ b/community/gecko-mediaplayer/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 61721 2012-01-06 22:32:47Z lfleischer $
+# $Id: PKGBUILD 69616 2012-04-20 13:43:38Z lfleischer $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Allan McRae <mcrae_allan@hotmail.com>
# Contributor: fancris3 <fancris3 at aol.com>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=gecko-mediaplayer
-pkgver=1.0.5
+pkgver=1.0.6
pkgrel=1
pkgdesc='Browser plugin that uses gnome-mplayer to play media in a web browser.'
arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@ depends=("gnome-mplayer>=${pkgver}" 'dbus-glib' 'gmtk')
makedepends=('xulrunner' 'pkgconfig')
replaces=('mplayer-plugin')
source=("http://gecko-mediaplayer.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
-md5sums=('1a96daf878d06452c0fd9a13fd186021')
+md5sums=('7675c8622c47ff8ccd22b685c48635f8')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/community/gmtk/PKGBUILD b/community/gmtk/PKGBUILD
index 0704b7726..8141da27f 100644
--- a/community/gmtk/PKGBUILD
+++ b/community/gmtk/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id$
+# $Id: PKGBUILD 69612 2012-04-20 13:39:41Z lfleischer $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
pkgname=gmtk
-pkgver=1.0.5
-pkgrel=2
+pkgver=1.0.6
+pkgrel=1
pkgdesc='Common functions for gnome-mplayer and gecko-mediaplay.'
arch=('i686' 'x86_64')
url='http://gmtk.googlecode.com/'
@@ -12,7 +12,7 @@ depends=('glib2' 'gtk3' 'dconf')
makedepends=('intltool' 'pkg-config')
options=(!libtool)
source=("http://gmtk.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
-md5sums=('e06e9ca8d61d74910343bb3ef4348f7f')
+md5sums=('6bf1c63788541272717f63ec370f6b6c')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/community/gnome-mplayer/PKGBUILD b/community/gnome-mplayer/PKGBUILD
index a160d8579..ebfde0805 100644
--- a/community/gnome-mplayer/PKGBUILD
+++ b/community/gnome-mplayer/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 61719 2012-01-06 22:32:00Z lfleischer $
+# $Id: PKGBUILD 69614 2012-04-20 13:41:25Z lfleischer $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Allan McRae <mcrae_allan@hotmail.com>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=gnome-mplayer
-pkgver=1.0.5
+pkgver=1.0.6
pkgrel=1
pkgdesc='A simple MPlayer GUI.'
arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@ depends=('mplayer' 'dbus-glib' 'libnotify' 'hicolor-icon-theme' 'dconf' 'gmtk')
makedepends=('gnome-power-manager' 'nautilus')
install="${pkgname}.install"
source=("http://gnome-mplayer.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
-md5sums=('1d3ab24c5501b5528e357931ca4dc6da')
+md5sums=('c1fc23faf70f3bbc23daf60f9b34832d')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/community/go/PKGBUILD b/community/go/PKGBUILD
index 23dd8c8c0..ff3cd3f8f 100644
--- a/community/go/PKGBUILD
+++ b/community/go/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 68945 2012-04-06 12:14:22Z arodseth $
+# $Id: PKGBUILD 69644 2012-04-20 22:36:38Z tdziedzic $
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Andres Perera <andres87p gmail>
@@ -9,7 +9,7 @@
pkgname=go
pkgver=1
-pkgrel=5
+pkgrel=6
epoch=2
pkgdesc='Google Go compiler and tools (release version)'
arch=('x86_64' 'i686')
@@ -62,7 +62,7 @@ package() {
install -Dm644 LICENSE \
"$pkgdir/usr/share/licenses/go/LICENSE"
install -Dm644 misc/bash/go \
- "$pkgdir/etc/bash_completion.d/go"
+ "$pkgdir/usr/share/bash-completion/completions/go"
install -Dm644 misc/emacs/go-mode-load.el \
"$pkgdir/usr/share/emacs/site-lisp/go-mode-load.el"
install -Dm644 misc/emacs/go-mode.el \
diff --git a/community/portaudio_cpp/PKGBUILD b/community/portaudio_cpp/PKGBUILD
index 58b782570..be0d476ec 100644
--- a/community/portaudio_cpp/PKGBUILD
+++ b/community/portaudio_cpp/PKGBUILD
@@ -1,26 +1,28 @@
-# $Id: PKGBUILD 55337 2011-09-10 02:09:27Z ebelanger $
+# $Id: PKGBUILD 69618 2012-04-20 13:57:47Z lfleischer $
# Maintainer: Bob Finch <w9ya@qrparci.net>
pkgname=portaudio_cpp
-pkgver=19_20110326
+pkgver=19_20111121
pkgrel=1
-pkgdesc="PortAudio c++ bindings"
+pkgdesc='PortAudio C++ bindings'
arch=('i686' 'x86_64')
-url="http://www.portaudio.com/"
+url='http://www.portaudio.com/'
license=('custom')
depends=("portaudio=${pkgver}" 'gcc-libs')
options=('!libtool')
-source=(http://www.portaudio.com/archives/pa_stable_v$pkgver.tgz)
-md5sums=('8f266ce03638419ef46e4efcb0fabde6')
+source=("http://www.portaudio.com/archives/pa_stable_v$pkgver.tgz")
+md5sums=('25c85c1cc5e9e657486cbc299c6c035a')
build() {
cd "$srcdir/portaudio"
+
./configure --prefix=/usr --enable-cxx
make
}
package() {
cd "$srcdir/portaudio/bindings/cpp"
- make DESTDIR=$pkgdir install
- install -D -m644 ../../LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+
+ make DESTDIR="$pkgdir" install
+ install -Dm0644 ../../LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
}
diff --git a/community/privoxy/PKGBUILD b/community/privoxy/PKGBUILD
index 80ce2bd02..5554745b8 100644
--- a/community/privoxy/PKGBUILD
+++ b/community/privoxy/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 64353 2012-02-11 23:23:45Z allan $
+# $Id: PKGBUILD 69634 2012-04-20 19:51:27Z lfleischer $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Juergen Hoetzel <juergen@hoetzel.info>
# Contributor: basilburn (basilburn), Paul Bredbury (brebs)
pkgname=privoxy
pkgver=3.0.19
-pkgrel=2
+pkgrel=3
pkgdesc='A web proxy with advanced filtering capabilities.'
arch=('i686' 'x86_64')
url='http://www.privoxy.org'
@@ -23,7 +23,7 @@ source=("http://downloads.sourceforge.net/ijbswa/${pkgname}-${pkgver}-stable-src
'privoxy.conf.d')
md5sums=('57acc79059565cc42eda67982842785d'
'1b4ed8c4e7e5b04b10ef41b597dc3f3b'
- '79480f311313cc43974f6cbe6b672927'
+ 'fc3046377137003726a151ee27b142a2'
'27830ef79418e277b90c1c1fa933f876')
build() {
diff --git a/community/privoxy/privoxy.logrotate.d b/community/privoxy/privoxy.logrotate.d
index 386766c3e..8c3129024 100644
--- a/community/privoxy/privoxy.logrotate.d
+++ b/community/privoxy/privoxy.logrotate.d
@@ -1,4 +1,4 @@
-/var/log/privoxy/* {
+/var/log/privoxy/logfile {
create 660 root privoxy
notifempty
compress
diff --git a/community/qtspim/PKGBUILD b/community/qtspim/PKGBUILD
index a1ac5584b..1769c6e41 100644
--- a/community/qtspim/PKGBUILD
+++ b/community/qtspim/PKGBUILD
@@ -1,8 +1,9 @@
+# $Id: PKGBUILD 69610 2012-04-20 10:56:45Z lfleischer $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com>
pkgname=qtspim
-pkgver=9.1.5
+pkgver=9.1.7
pkgrel=1
pkgdesc="New user interface for spim, a MIPS simulator."
arch=('i686' 'x86_64')
@@ -13,7 +14,7 @@ makedepends=('subversion')
__svntrunk="https://spimsimulator.svn.sourceforge.net/svnroot/spimsimulator"
__svnmod=('QtSpim' 'CPU' 'Documentation' 'Setup')
-__svnrev=592
+__svnrev=598
build() {
cd "$srcdir"
diff --git a/community/stunnel/PKGBUILD b/community/stunnel/PKGBUILD
index 609f2b556..14cfd5aef 100644
--- a/community/stunnel/PKGBUILD
+++ b/community/stunnel/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 69552 2012-04-18 09:36:36Z lfleischer $
+# $Id: PKGBUILD 69632 2012-04-20 19:47:13Z lfleischer $
# Maintainer: Kaiting Chen <kaitocracy@gmail.com>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Contributor: Kevin Piche <kevin@archlinux.org>
pkgname=stunnel
-pkgver=4.52
+pkgver=4.53
pkgrel=2
pkgdesc="A program that allows you to encrypt arbitrary TCP connections inside SSL"
arch=('i686' 'x86_64')
@@ -18,10 +18,10 @@ source=("ftp://ftp.stunnel.org/stunnel/$pkgname-$pkgver.tar.gz"{,.asc}
'stunnel.rc.d'
'stunnel.tmpfiles.conf')
-md5sums=('f5e713dda0e8efa659f372832ecd0c2c'
- '3e84d222525e724788d3c2b29b899610'
+md5sums=('ab3bfc915357d67da18c73f73610d593'
+ 'ea8d7637e072fa1bb8706c85e6ea0152'
'f15398497e10e080c2406d2fc541660c'
- 'd42a1dda7b44aab73fba670fbcfcc8a6'
+ '4c7e3634a9d4dc040102f5d4160fb123'
'2e065a39998e57727ee79887bbd1751e')
build() {
diff --git a/community/stunnel/stunnel.rc.d b/community/stunnel/stunnel.rc.d
index ee67e20ce..76f7b796a 100644
--- a/community/stunnel/stunnel.rc.d
+++ b/community/stunnel/stunnel.rc.d
@@ -3,7 +3,7 @@
. /etc/rc.conf
. /etc/rc.d/functions
-pidfile=/var/run/stunnel.pid
+pidfile=/var/run/stunnel/stunnel.pid
if [[ -r $pidfile ]]; then
read -r PID < "$pidfile"
if [[ $PID && ! -d /proc/$PID ]]; then
diff --git a/community/xmlstarlet/PKGBUILD b/community/xmlstarlet/PKGBUILD
new file mode 100644
index 000000000..b81f4a552
--- /dev/null
+++ b/community/xmlstarlet/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 69626 2012-04-20 16:57:50Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: PyroPeter <abi1789@googlemail.com>
+# Contributor: BlackEagle <ike.devolder@scarlet.be>
+# Contributor: chochem <chochem@gmail.com>
+
+pkgname=xmlstarlet
+pkgver=1.3.1
+pkgrel=1
+pkgdesc="A set of tools to transform, query, validate, and edit XML documents"
+arch=('i686' 'x86_64')
+url="http://xmlstar.sourceforge.net/"
+license=('MIT')
+depends=('libxslt>=1.1.9')
+source=("xmlstarlet-$pkgver.tar.gz::http://sourceforge.net/projects/xmlstar/files/xmlstarlet/$pkgver/xmlstarlet-$pkgver.tar.gz/download")
+md5sums=('5173ad3f01ec0ba0d54bd1fbfc057abf')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ local xsltlibs=$(pkg-config --libs libxslt libexslt)
+ local xmllibs=$(pkg-config --libs libxml-2.0)
+
+ LIBXSLT_PREFIX=/usr \
+ LIBXML_PREFIX=/usr \
+ LIBXSLT_LIBS="${xsltlibs}" \
+ LIBXML_LIBS="${xmllibs}" \
+ ./configure --prefix=/usr
+ make
+ make DESTDIR="${pkgdir}" install
+
+ install -Dm0644 Copyright $pkgdir/usr/share/licenses/$pkgname/COPYING
+ ln -s xml ${pkgdir}/usr/bin/xmlstarlet
+}