summaryrefslogtreecommitdiff
path: root/community/znc
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-06-04 13:43:14 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-06-04 13:43:14 -0300
commitcbba2111ae585b17594535ec01f13bac66937331 (patch)
treef097dd36996ae3c7c96c9f91c1dd428670572b80 /community/znc
parentabcaa80b2d3bb539503c485bfea891adc7ffc193 (diff)
parent1e6588d64f084decf287a58b7ff93ff0ce4d0446 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/multipath-tools/PKGBUILD community/perl-gnome2-wnck/PKGBUILD community/znc/PKGBUILD core/openldap/PKGBUILD extra/mod_perl/PKGBUILD extra/perl-digest-nilsimsa/PKGBUILD extra/php/PKGBUILD extra/pidgin/PKGBUILD extra/postgresql/PKGBUILD extra/vim/PKGBUILD extra/xcb-util-keysyms/PKGBUILD extra/xcb-util-wm/PKGBUILD extra/xournal/PKGBUILD kde-unstable/kdepim/PKGBUILD multilib/lib32-libx11/PKGBUILD multilib/lib32-libxft/PKGBUILD multilib/lib32-xcb-util/PKGBUILD
Diffstat (limited to 'community/znc')
-rw-r--r--community/znc/PKGBUILD26
1 files changed, 19 insertions, 7 deletions
diff --git a/community/znc/PKGBUILD b/community/znc/PKGBUILD
index 9470c97b2..c9ac12199 100644
--- a/community/znc/PKGBUILD
+++ b/community/znc/PKGBUILD
@@ -1,31 +1,43 @@
-# $Id: PKGBUILD 68939 2012-04-06 10:11:29Z seblu $
+# $Id: PKGBUILD 71849 2012-06-02 10:32:56Z bluewind $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
# Contributor: Kaiting Chen <kaitocracy@gmail.com>
# Contributor: mickael9 <mickael9 at gmail dot com>
pkgname=znc
pkgver=0.206
-pkgrel=1
+pkgrel=2
pkgdesc='An IRC bouncer with modules & scripts support'
url='http://en.znc.in/wiki/index.php/ZNC'
license=('GPL2')
arch=('i686' 'x86_64' 'mips64el')
-depends=('c-ares' 'gcc-libs' 'openssl')
-makedepends=('swig' 'tcl' 'python' 'perl' 'cyrus-sasl')
+depends=('c-ares' 'libsasl')
+#makedepends=('swig' 'tcl' 'python' 'perl')
+makedepends=('tcl' 'python' 'perl')
optdepends=('tcl: modtcl module'
'python: modpython module'
'perl: modperl module'
'cyrus-sasl: saslauth module')
-source=("http://znc.in/releases/$pkgname-$pkgver.tar.gz")
-md5sums=('b7d3f21da81abaeb553066b0e10beb53')
+source=("http://znc.in/releases/$pkgname-$pkgver.tar.gz"
+ "http://people.znc.in/~darthgandalf/znc/modperl/modperl-znc-0.204.tar.bz2"
+ "http://people.znc.in/~darthgandalf/znc/modpython/modpython-znc-0.204.tar.bz2")
+md5sums=('b7d3f21da81abaeb553066b0e10beb53'
+ 'a9c72d556d9a4ef100520433f17d71ae'
+ '19bf033c5cb9243171c215043c594f07')
build() {
+ # swig 2.0.6 is bugged, see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672035
+ # use an alternate ways of building znc explain here:
+ # - http://wiki.znc.in/Modperl
+ # - http://wiki.znc.in/Modpython
+ mv -v modperl/* $pkgname-$pkgver/modules/modperl
+ mv -v modpython/* $pkgname-$pkgver/modules/modpython
cd $pkgname-$pkgver
./configure --prefix=/usr \
--enable-sasl \
- --enable-tcl \
--enable-python \
--enable-perl \
+ --enable-tcl \
+ --disable-swig \
--enable-extra
make
}