[arch-commits] Commit in python-numpy/repos (extra-i686)

2011-07-18 Thread Stéphane Gaudreault
Date: Monday, July 18, 2011 @ 03:04:48
  Author: stephane
Revision: 131953

db-move: python-numpy removed by stephane for move to [extra] (i686)

Deleted:
  python-numpy/repos/extra-i686/



[arch-commits] Commit in python-numpy/repos (extra-i686 testing-i686)

2011-07-18 Thread Stéphane Gaudreault
Date: Monday, July 18, 2011 @ 03:04:48
  Author: stephane
Revision: 131954

db-move: moved python-numpy from [testing] to [extra] (i686)

Added:
  python-numpy/repos/extra-i686/
Deleted:
  python-numpy/repos/testing-i686/



[arch-commits] Commit in python-numpy/repos (extra-x86_64)

2011-07-18 Thread Stéphane Gaudreault
Date: Monday, July 18, 2011 @ 03:04:50
  Author: stephane
Revision: 131955

db-move: python-numpy removed by stephane for move to [extra] (x86_64)

Deleted:
  python-numpy/repos/extra-x86_64/



[arch-commits] Commit in pygtk/repos (extra-i686 testing-i686)

2011-07-18 Thread Stéphane Gaudreault
Date: Monday, July 18, 2011 @ 03:04:55
  Author: stephane
Revision: 131958

db-move: moved pygtk from [testing] to [extra] (i686)

Added:
  pygtk/repos/extra-i686/
Deleted:
  pygtk/repos/testing-i686/



[arch-commits] Commit in pygtk/repos (extra-i686)

2011-07-18 Thread Stéphane Gaudreault
Date: Monday, July 18, 2011 @ 03:04:53
  Author: stephane
Revision: 131957

db-move: pygtk removed by stephane for move to [extra] (i686)

Deleted:
  pygtk/repos/extra-i686/



[arch-commits] Commit in python-numpy/repos (extra-x86_64 testing-x86_64)

2011-07-18 Thread Stéphane Gaudreault
Date: Monday, July 18, 2011 @ 03:04:51
  Author: stephane
Revision: 131956

db-move: moved python-numpy from [testing] to [extra] (x86_64)

Added:
  python-numpy/repos/extra-x86_64/
Deleted:
  python-numpy/repos/testing-x86_64/



[arch-commits] Commit in pygtk/repos (extra-x86_64)

2011-07-18 Thread Stéphane Gaudreault
Date: Monday, July 18, 2011 @ 03:04:56
  Author: stephane
Revision: 131959

db-move: pygtk removed by stephane for move to [extra] (x86_64)

Deleted:
  pygtk/repos/extra-x86_64/



[arch-commits] Commit in gmp/trunk (538dfce27f41.patch PKGBUILD)

2011-07-18 Thread Allan McRae
Date: Monday, July 18, 2011 @ 07:43:05
  Author: allan
Revision: 131961

upgpkg: gmp 5.0.2-2
upstream bug fix patch

Added:
  gmp/trunk/538dfce27f41.patch
Modified:
  gmp/trunk/PKGBUILD

+
 538dfce27f41.patch |   38 ++
 PKGBUILD   |   10 +++---
 2 files changed, 45 insertions(+), 3 deletions(-)

Added: 538dfce27f41.patch
===
--- 538dfce27f41.patch  (rev 0)
+++ 538dfce27f41.patch  2011-07-18 11:43:05 UTC (rev 131961)
@@ -0,0 +1,38 @@
+
+# HG changeset patch
+# User Torbjorn Granlund t...@gmplib.org
+# Date 1310730221 -7200
+# Node ID 538dfce27f410b910d5e2f09269e224d16a3
+# Parent  03ed209dd7efd4f4fff0ce297bb3a8f7e7ba2366
+(mpn_dcpi1_bdiv_q): Get mpn_sub_1 size argument right.
+
+diff -r 03ed209dd7ef -r 538dfce27f41 mpn/generic/dcpi1_bdiv_q.c
+--- a/mpn/generic/dcpi1_bdiv_q.c   Thu Jun 16 12:22:24 2011 +0200
 b/mpn/generic/dcpi1_bdiv_q.c   Fri Jul 15 13:43:41 2011 +0200
+@@ -7,7 +7,7 @@
+SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
+GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE.
+ 
+-Copyright 2006, 2007, 2009, 2010 Free Software Foundation, Inc.
++Copyright 2006, 2007, 2009, 2010, 2011 Free Software Foundation, Inc.
+ 
+ This file is part of the GNU MP Library.
+ 
+@@ -28,7 +28,6 @@
+ #include gmp-impl.h
+ 
+ 
+-
+ mp_size_t
+ mpn_dcpi1_bdiv_q_n_itch (mp_size_t n)
+ {
+@@ -130,7 +129,7 @@
+   qn = nn - qn;
+   while (qn  dn)
+   {
+-mpn_sub_1 (np + dn, np + dn, qn, cy);
++mpn_sub_1 (np + dn, np + dn, qn - dn, cy);
+ cy = mpn_dcpi1_bdiv_qr_n (qp, np, dp, dn, dinv, tp);
+ qp += dn;
+ np += dn;
+

Modified: PKGBUILD
===
--- PKGBUILD2011-07-18 07:04:57 UTC (rev 131960)
+++ PKGBUILD2011-07-18 11:43:05 UTC (rev 131961)
@@ -4,7 +4,7 @@
 
 pkgname=gmp
 pkgver=5.0.2
-pkgrel=1
+pkgrel=2
 pkgdesc=A free library for arbitrary precision arithmetic
 arch=('i686' 'x86_64')
 url=http://gmplib.org/;
@@ -12,11 +12,15 @@
 license=('LGPL3')
 options=(!libtool)
 install=gmp.install
-source=(ftp://ftp.gnu.org/gnu/gmp/gmp-${pkgver}.tar.bz2)
-md5sums=('0bbaedc82fb30315b06b1588b9077cd3')
+source=(ftp://ftp.gnu.org/gnu/gmp/gmp-${pkgver}.tar.bz2
+538dfce27f41.patch)
+md5sums=('0bbaedc82fb30315b06b1588b9077cd3'
+ 'a769be9c41618ca9c35d83375e7097d0')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i $srcdir/538dfce27f41.patch
+  
   [ ${CARCH} = i686 ]  export ABI=32
   ./configure --build=${CHOST} \
 --prefix=/usr --infodir=/usr/share/info \



[arch-commits] Commit in gmp/repos (testing-i686)

2011-07-18 Thread Allan McRae
Date: Monday, July 18, 2011 @ 07:43:51
  Author: allan
Revision: 131962

archrelease: copy trunk to testing-i686

Added:
  gmp/repos/testing-i686/



[arch-commits] Commit in gmp/repos (testing-x86_64)

2011-07-18 Thread Allan McRae
Date: Monday, July 18, 2011 @ 07:44:19
  Author: allan
Revision: 131963

archrelease: copy trunk to testing-x86_64

Added:
  gmp/repos/testing-x86_64/



[arch-commits] Commit in gcin/trunk (PKGBUILD)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 09:37:20
  Author: bisson
Revision: 131965

enable chewing support

Modified:
  gcin/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-07-18 12:30:49 UTC (rev 131964)
+++ PKGBUILD2011-07-18 13:37:20 UTC (rev 131965)
@@ -5,16 +5,17 @@
 
 pkgname=gcin
 pkgver=1.6.4
-pkgrel=1
+pkgrel=2
 pkgdesc='Input method server supporting various input methods'
 arch=('i686' 'x86_64')
 license=('LGPL')
 url='http://hyperrate.com/dir.php?eid=67'
 depends=('gtk2' 'libxtst')
-makedepends=('qt' 'gtk3' 'anthy')
+makedepends=('qt' 'gtk3' 'anthy' 'libchewing')
 optdepends=('qt: support for qt4 input method'
 'gtk3: support for gtk3 input method'
-'anthy: support for anthy input method')
+'anthy: support for anthy input method'
+'libchewing: support for chewing input method')
 
source=(http://www.csie.nctu.edu.tw/~cp76/gcin/download/${pkgname}-${pkgver}.tar.bz2;
 'qt4-lib64.patch')
 sha1sums=('36ed067b354abb1e0707a4b327e2ad624cb6f88d'



[arch-commits] Commit in gcin/repos (extra-i686)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 09:38:31
  Author: bisson
Revision: 131966

archrelease: remove extra-i686

Deleted:
  gcin/repos/extra-i686/



[arch-commits] Commit in gcin/repos (extra-i686)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 09:38:37
  Author: bisson
Revision: 131967

archrelease: copy trunk to extra-i686

Added:
  gcin/repos/extra-i686/



[arch-commits] Commit in gcin/repos (extra-x86_64)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 09:38:44
  Author: bisson
Revision: 131969

archrelease: copy trunk to extra-x86_64

Added:
  gcin/repos/extra-x86_64/



[arch-commits] Commit in audacious/trunk (PKGBUILD)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:12:11
  Author: bisson
Revision: 131970

upstream update

Modified:
  audacious/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-07-18 13:38:44 UTC (rev 131969)
+++ PKGBUILD2011-07-18 15:12:11 UTC (rev 131970)
@@ -4,7 +4,7 @@
 # Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=audacious
-pkgver=2.5.3
+pkgver=3.0
 pkgrel=1
 pkgdesc='Lightweight, GTK2-based advanced audio player focused on audio 
quality'
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 depends=('gtk2' 'libmcs' 'dbus-glib' 'libguess' 'audacious-plugins' 
'desktop-file-utils' 'hicolor-icon-theme')
 optdepends=('unzip: zipped skins support')
 source=(http://distfiles.atheme.org/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('b40f140ebeb5d767bd865945b7eb5527c265beb7')
+sha1sums=('d32de719f5b09440d0f6c802a5140a32b3827475')
 
 provides=('audacious-player')
 replaces=('audacious-player')



[arch-commits] Commit in audacious/repos (extra-i686)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:12:15
  Author: bisson
Revision: 131971

archrelease: remove extra-i686

Deleted:
  audacious/repos/extra-i686/



[arch-commits] Commit in audacious/repos (extra-i686)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:12:21
  Author: bisson
Revision: 131972

archrelease: copy trunk to extra-i686

Added:
  audacious/repos/extra-i686/



[arch-commits] Commit in audacious/repos (extra-x86_64)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:12:23
  Author: bisson
Revision: 131973

archrelease: remove extra-x86_64

Deleted:
  audacious/repos/extra-x86_64/



[arch-commits] Commit in audacious/repos (extra-x86_64)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:12:30
  Author: bisson
Revision: 131974

archrelease: copy trunk to extra-x86_64

Added:
  audacious/repos/extra-x86_64/



[arch-commits] Commit in audacious-plugins/trunk (PKGBUILD)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:12:48
  Author: bisson
Revision: 131975

upstream update

Modified:
  audacious-plugins/trunk/PKGBUILD

--+
 PKGBUILD |6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-07-18 15:12:30 UTC (rev 131974)
+++ PKGBUILD2011-07-18 15:12:48 UTC (rev 131975)
@@ -4,7 +4,7 @@
 # Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=audacious-plugins
-pkgver=2.5.3
+pkgver=3.0
 pkgrel=1
 pkgdesc='Plugins for Audacious'
 arch=('i686' 'x86_64')
@@ -41,13 +41,11 @@
 'libcue: CUE playlist format')
 
 source=(http://distfiles.atheme.org/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('bbedc8cd96d6869bc89d56a1b20ff17a26ba0eaf')
+sha1sums=('ee45757e8a856f3fff2e96ebfe28a6dae88b056c')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
 
-   sed 's/libavcore = 0.12.0//g' -i configure # FS#23549
-
[[ ${CARCH} == x86_64 ]]  extraopts='' || extraopts='--disable-sse2'
./configure \
--prefix=/usr \



[arch-commits] Commit in audacious-plugins/repos (extra-i686)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:12:51
  Author: bisson
Revision: 131976

archrelease: remove extra-i686

Deleted:
  audacious-plugins/repos/extra-i686/



[arch-commits] Commit in audacious-plugins/repos (extra-i686)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:12:57
  Author: bisson
Revision: 131977

archrelease: copy trunk to extra-i686

Added:
  audacious-plugins/repos/extra-i686/



[arch-commits] Commit in audacious-plugins/repos (extra-x86_64)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:13:02
  Author: bisson
Revision: 131978

archrelease: remove extra-x86_64

Deleted:
  audacious-plugins/repos/extra-x86_64/



[arch-commits] Commit in audacious-plugins/repos (extra-x86_64)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:13:07
  Author: bisson
Revision: 131979

archrelease: copy trunk to extra-x86_64

Added:
  audacious-plugins/repos/extra-x86_64/



[arch-commits] Commit in stardict/trunk (5 files)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:27:26
  Author: bisson
Revision: 131980

upstream update, different patches

Added:
  stardict/trunk/NetDictRequests.patch
  stardict/trunk/gcc46.patch
Modified:
  stardict/trunk/PKGBUILD
Deleted:
  stardict/trunk/as-needed.patch
  stardict/trunk/help-in-destdir.patch

---+
 NetDictRequests.patch |   12 ++
 PKGBUILD  |   54 ++--
 as-needed.patch   |   29 -
 gcc46.patch   |   11 +
 help-in-destdir.patch |   21 --
 5 files changed, 53 insertions(+), 74 deletions(-)

Added: NetDictRequests.patch
===
--- NetDictRequests.patch   (rev 0)
+++ NetDictRequests.patch   2011-07-18 15:27:26 UTC (rev 131980)
@@ -0,0 +1,12 @@
+diff -aur old/dict/src/lib/compositelookup.cpp 
new/dict/src/lib/compositelookup.cpp
+--- old/dict/src/lib/compositelookup.cpp   2011-07-02 23:58:40.0 
-0700
 new/dict/src/lib/compositelookup.cpp   2011-07-18 07:40:01.795710505 
-0700
+@@ -50,7 +50,7 @@
+ void CompositeLookup::send_net_dict_request(const std::string dict_id, const 
std::string key)
+ {
+   NetDictRequest request(dict_id, key);
+-  g_assert(NetDictRequests.end() == std::find(NetDictRequests.begin(), 
NetDictRequests.end(), request));
++  std::find(NetDictRequests.begin(), NetDictRequests.end(), request);
+   NetDictRequests.push_back(request);
+ }
+ 

Modified: PKGBUILD
===
--- PKGBUILD2011-07-18 15:13:07 UTC (rev 131979)
+++ PKGBUILD2011-07-18 15:27:26 UTC (rev 131980)
@@ -3,40 +3,46 @@
 # Contributor: Neil Lin n...@vip.url.com.tw
 
 pkgname=stardict
-pkgver=3.0.2
-pkgrel=2
-pkgdesc='A powerful international dictionary written in Gtk2.'
+pkgver=3.0.3
+pkgrel=1
+pkgdesc='International dictionary software'
 arch=('i686' 'x86_64')
-url='http://stardict.sourceforge.net/'
+url='http://www.stardict.org/'
 license=('GPL')
 depends=('enchant' 'gtk2' 'libsigc++' 'libsm')
-makedepends=('intltool' 'popt' 'gnome-doc-utils')
+makedepends=('intltool' 'popt' 'gnome-doc-utils' 'libmysqlclient')
 options=('!libtool' '!emptydirs')
-source=(http://downloads.sourceforge.net/sourceforge/stardict/$pkgname-$pkgver.tar.bz2;
-'help-in-destdir.patch'
-'as-needed.patch')
-sha1sums=('301875657cd39b5f25e5933ece22936a28db1230'
-  '0249d769e5cc85e183eb395b824342f8ca320f56'
-  '22fca061d1be23ac79da6c0ec5fc488ae0aca9c1')
+source=(http://stardict-3.googlecode.com/files/stardict-${pkgver}.tar.bz2;
+'NetDictRequests.patch'
+'gcc46.patch')
+sha1sums=('5043c0918963cd4d40e6d6289353f295766ec74f'
+  '97af8fdb73c8f04674234b629c6867254e9bd043'
+  '6605a9cdfc4abc2a0ab4462d1228233d34806f0a')
 
-build()
-{
-   cd $srcdir/$pkgname-$pkgver
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
 
-   # patches accepted upstream; will be in stardict3.0.2
-   patch -p1 -i ../help-in-destdir.patch
-   patch -p1 -i ../as-needed.patch
+   # ugly hack to avoid crashing with empty dictionaries
+   patch -p1 -i ../NetDictRequests.patch
+   patch -p1 -i ../gcc46.patch
automake
 
-   ./configure PKG_CONFIG=/usr/bin/pkg-config --prefix=/usr \
-   --sysconfdir=/etc --mandir=/usr/share/man \
-   --disable-gnome-support --disable-schemas-install \
-   --disable-espeak --disable-gucharmap \
-   --disable-festival --disable-updateinfo
+   ./configure \
+   PKG_CONFIG=/usr/bin/pkg-config \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --mandir=/usr/share/man \
+   --disable-gnome-support \
+   --disable-schemas-install \
+   --disable-espeak \
+   --disable-gucharmap \
+   --disable-festival \
+   --disable-updateinfo \
+
make
 }
 
 package() {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir install
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
 }

Deleted: as-needed.patch
===
--- as-needed.patch 2011-07-18 15:13:07 UTC (rev 131979)
+++ as-needed.patch 2011-07-18 15:27:26 UTC (rev 131980)
@@ -1,29 +0,0 @@
-Index: stardict/src/Makefile.am
-===
 stardict/src/Makefile.am   (revision 489)
-+++ stardict/src/Makefile.am   (working copy)
-@@ -26,9 +26,9 @@
-   -DSTARDICT_LIB_DIR=\$(libdir)/stardict\
- 
- 
--stardict_DEPENDENCIES = $(LOCAL_SIGCPP_LIBFILE) lib/libstardict.a
-+stardict_DEPENDENCIES = lib/libstardict.a $(LOCAL_SIGCPP_LIBFILE)
- stardict_LDFLAGS = 
--stardict_LDADD = $(STARDICT_LIBS) $(LOCAL_SIGCPP_LIBFILE) lib/libstardict.a
-+stardict_LDADD 

[arch-commits] Commit in stardict/repos (extra-i686)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:27:29
  Author: bisson
Revision: 131981

archrelease: remove extra-i686

Deleted:
  stardict/repos/extra-i686/



[arch-commits] Commit in stardict/repos (extra-i686)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:27:35
  Author: bisson
Revision: 131982

archrelease: copy trunk to extra-i686

Added:
  stardict/repos/extra-i686/



[arch-commits] Commit in stardict/repos (extra-x86_64)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:27:36
  Author: bisson
Revision: 131983

archrelease: remove extra-x86_64

Deleted:
  stardict/repos/extra-x86_64/



[arch-commits] Commit in stardict/repos (extra-x86_64)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 11:27:42
  Author: bisson
Revision: 131984

archrelease: copy trunk to extra-x86_64

Added:
  stardict/repos/extra-x86_64/



[arch-commits] Commit in mod_perl/trunk (PKGBUILD nolfs.patch)

2011-07-18 Thread Evangelos Foutras
Date: Monday, July 18, 2011 @ 14:21:39
  Author: foutrelis
Revision: 131985

upgpkg: mod_perl 2.0.5-8
Apply patch to fix segfaults on i686. (FS#25008)

Added:
  mod_perl/trunk/nolfs.patch
Modified:
  mod_perl/trunk/PKGBUILD

-+
 PKGBUILD|   15 ---
 nolfs.patch |   14 ++
 2 files changed, 26 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-07-18 15:27:42 UTC (rev 131984)
+++ PKGBUILD2011-07-18 18:21:39 UTC (rev 131985)
@@ -4,18 +4,27 @@
 
 pkgname=mod_perl
 pkgver=2.0.5
-pkgrel=7
+pkgrel=8
 pkgdesc=Apache module that embeds the Perl interpreter within the server
 url=http://search.cpan.org/dist/${pkgname}/;
 depends=('perl' 'apache' 'db' 'apr-util' 'perl-linux-pid')
 license=('APACHE')
 arch=('i686' 'x86_64')
 options=(!emptydirs)
-source=(http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/${pkgname}-${pkgver}.tar.gz)
-md5sums=('03d01d135a122bd8cebd0cd5b185d674')
+source=(http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/${pkgname}-${pkgver}.tar.gz
+   nolfs.patch)
+md5sums=('03d01d135a122bd8cebd0cd5b185d674'
+ '088e082afef57f92f234a01269e24ce5')
 
 build() {
   cd  ${srcdir}/${pkgname}-${pkgver}
+
+  # Patch from openSUSE to fix segfaults on i686 (FS#25008):
+  #   avoid a conflict between apache's LARGEFILE64_SOURCE and perl's
+  #   FILE_OFFSET_BITS=64 because the conflict isn't real and causes the perl
+  #   structures to be invalid if only the apache flags are used
+  patch -Np1 -i $srcdir/nolfs.patch
+
   # install module in vendor directories.
   perl Makefile.PL INSTALLDIRS=vendor MP_APXS=/usr/sbin/apxs
   make

Added: nolfs.patch
===
--- nolfs.patch (rev 0)
+++ nolfs.patch 2011-07-18 18:21:39 UTC (rev 131985)
@@ -0,0 +1,14 @@
+Index: mod_perl-2.0.5/lib/Apache2/Build.pm
+===
+--- mod_perl-2.0.5.orig/lib/Apache2/Build.pm   2011-02-02 21:23:47.0 
+0100
 mod_perl-2.0.5/lib/Apache2/Build.pm2011-05-26 17:12:46.276946520 
+0200
+@@ -2147,7 +2147,8 @@ sub has_large_files_conflict {
+ # with it is that we didn't have such a case yet, but may need to
+ # deal with it later
+ 
+-return $perl_lfs64 ^ $apr_lfs64;
++return 0;
++# $perl_lfs64 ^ $apr_lfs64;
+ }
+ 
+ # if perl is built with uselargefiles, but apr not, the build won't



[arch-commits] Commit in mod_perl/repos (extra-i686)

2011-07-18 Thread Evangelos Foutras
Date: Monday, July 18, 2011 @ 14:21:41
  Author: foutrelis
Revision: 131986

archrelease: remove extra-i686

Deleted:
  mod_perl/repos/extra-i686/



[arch-commits] Commit in mod_perl/repos (extra-i686)

2011-07-18 Thread Evangelos Foutras
Date: Monday, July 18, 2011 @ 14:21:54
  Author: foutrelis
Revision: 131987

archrelease: copy trunk to extra-i686

Added:
  mod_perl/repos/extra-i686/



[arch-commits] Commit in mod_perl/repos (extra-x86_64)

2011-07-18 Thread Evangelos Foutras
Date: Monday, July 18, 2011 @ 14:22:07
  Author: foutrelis
Revision: 131989

archrelease: copy trunk to extra-x86_64

Added:
  mod_perl/repos/extra-x86_64/



[arch-commits] Commit in js/trunk (PKGBUILD)

2011-07-18 Thread Ionut Biru
Date: Monday, July 18, 2011 @ 15:11:01
  Author: ibiru
Revision: 131990

enable utf8 support. mongodb needs it. FS#25066

Modified:
  js/trunk/PKGBUILD

--+
 PKGBUILD |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-07-18 18:22:07 UTC (rev 131989)
+++ PKGBUILD2011-07-18 19:11:01 UTC (rev 131990)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 pkgname=js
 pkgver=1.8.5
-pkgrel=1
+pkgrel=2
 pkgdesc=JavaScript interpreter and libraries
 arch=(i686 x86_64)
 url=https://developer.mozilla.org/En/SpiderMonkey/1.8.5;
@@ -17,7 +17,11 @@
  '364834a8391888642c53d78c3a949d94')
 build() {
   cd $srcdir/$pkgname-$pkgver/js/src
+
   patch -Np0 -i $srcdir/js185-destdir.patch
+
+  export CXXFLAGS=$CXXFLAGS -DJS_C_STRINGS_ARE_UTF8
+
   ./configure --prefix=/usr --with-system-nspr \
  --enable-threadsafe
 



[arch-commits] Commit in js/repos (extra-i686)

2011-07-18 Thread Ionut Biru
Date: Monday, July 18, 2011 @ 15:11:41
  Author: ibiru
Revision: 131991

archrelease: remove extra-i686

Deleted:
  js/repos/extra-i686/



[arch-commits] Commit in js/repos (extra-i686)

2011-07-18 Thread Ionut Biru
Date: Monday, July 18, 2011 @ 15:11:59
  Author: ibiru
Revision: 131992

archrelease: copy trunk to extra-i686

Added:
  js/repos/extra-i686/



[arch-commits] Commit in js/repos (extra-x86_64)

2011-07-18 Thread Ionut Biru
Date: Monday, July 18, 2011 @ 15:12:02
  Author: ibiru
Revision: 131993

archrelease: remove extra-x86_64

Deleted:
  js/repos/extra-x86_64/



[arch-commits] Commit in js/repos (extra-x86_64)

2011-07-18 Thread Ionut Biru
Date: Monday, July 18, 2011 @ 15:12:19
  Author: ibiru
Revision: 131994

archrelease: copy trunk to extra-x86_64

Added:
  js/repos/extra-x86_64/



[arch-commits] Commit in iptables/trunk (PKGBUILD)

2011-07-18 Thread Ronald van Haren
Date: Monday, July 18, 2011 @ 16:27:00
  Author: ronald
Revision: 131995

upgpkg: iptables 1.4.11.1-1
update to 1.4.11.1

Modified:
  iptables/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-07-18 19:12:19 UTC (rev 131994)
+++ PKGBUILD2011-07-18 20:27:00 UTC (rev 131995)
@@ -3,7 +3,7 @@
 # Contributor: Thomas Baechler tho...@archlinux.org
 
 pkgname=iptables
-pkgver=1.4.10
+pkgver=1.4.11.1
 pkgrel=1
 pkgdesc=A Linux kernel packet control tool
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 simple_firewall.rules
 iptables.conf.d)
 backup=(etc/conf.d/iptables)
-sha1sums=('8190b8c9714a3eec825317e8ac1deeb3d11c6d29'
+sha1sums=('2aa0d215485133f2817973b0914a132f628d9f3a'
   'd7540316581bb66c5594885882a14ba394e95098'
   '70d70113e3a23f0fe99404c5536507a887a4ca5c'
   '83b3363878e3660ce23b2ad325b53cbd6c796ecf'



[arch-commits] Commit in iptables/repos (testing-i686)

2011-07-18 Thread Ronald van Haren
Date: Monday, July 18, 2011 @ 16:27:16
  Author: ronald
Revision: 131996

archrelease: copy trunk to testing-i686

Added:
  iptables/repos/testing-i686/



[arch-commits] Commit in iptables/repos (testing-x86_64)

2011-07-18 Thread Ronald van Haren
Date: Monday, July 18, 2011 @ 16:27:31
  Author: ronald
Revision: 131997

archrelease: copy trunk to testing-x86_64

Added:
  iptables/repos/testing-x86_64/



[arch-commits] Commit in iproute2/repos (testing-i686)

2011-07-18 Thread Ronald van Haren
Date: Monday, July 18, 2011 @ 16:47:17
  Author: ronald
Revision: 132000

archrelease: copy trunk to testing-i686

Added:
  iproute2/repos/testing-i686/



[arch-commits] Commit in iproute2/repos (testing-x86_64)

2011-07-18 Thread Ronald van Haren
Date: Monday, July 18, 2011 @ 16:47:32
  Author: ronald
Revision: 132001

archrelease: copy trunk to testing-x86_64

Added:
  iproute2/repos/testing-x86_64/



[arch-commits] Commit in audacious/trunk (PKGBUILD)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 18:19:52
  Author: bisson
Revision: 132002

switch to gtk3

Modified:
  audacious/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-07-18 20:47:32 UTC (rev 132001)
+++ PKGBUILD2011-07-18 22:19:52 UTC (rev 132002)
@@ -5,12 +5,12 @@
 
 pkgname=audacious
 pkgver=3.0
-pkgrel=1
-pkgdesc='Lightweight, GTK2-based advanced audio player focused on audio 
quality'
+pkgrel=2
+pkgdesc='Lightweight, GTK-based advanced audio player focused on audio quality'
 arch=('i686' 'x86_64')
 url='http://audacious-media-player.org/'
 license=('GPL3')
-depends=('gtk2' 'libmcs' 'dbus-glib' 'libguess' 'audacious-plugins' 
'desktop-file-utils' 'hicolor-icon-theme')
+depends=('gtk3' 'libmcs' 'dbus-glib' 'libguess' 'audacious-plugins' 
'desktop-file-utils' 'hicolor-icon-theme')
 optdepends=('unzip: zipped skins support')
 source=(http://distfiles.atheme.org/${pkgname}-${pkgver}.tar.gz;)
 sha1sums=('d32de719f5b09440d0f6c802a5140a32b3827475')



[arch-commits] Commit in audacious/repos (extra-i686)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 18:20:04
  Author: bisson
Revision: 132003

archrelease: remove extra-i686

Deleted:
  audacious/repos/extra-i686/



[arch-commits] Commit in audacious/repos (extra-i686)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 18:20:10
  Author: bisson
Revision: 132004

archrelease: copy trunk to extra-i686

Added:
  audacious/repos/extra-i686/



[arch-commits] Commit in audacious/repos (extra-x86_64)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 18:20:22
  Author: bisson
Revision: 132005

archrelease: remove extra-x86_64

Deleted:
  audacious/repos/extra-x86_64/



[arch-commits] Commit in audacious/repos (extra-x86_64)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 18:20:28
  Author: bisson
Revision: 132006

archrelease: copy trunk to extra-x86_64

Added:
  audacious/repos/extra-x86_64/



[arch-commits] Commit in audacious-plugins/trunk (PKGBUILD)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 18:21:02
  Author: bisson
Revision: 132007

switch to gtk3, use jack2

Modified:
  audacious-plugins/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-07-18 22:20:28 UTC (rev 132006)
+++ PKGBUILD2011-07-18 22:21:02 UTC (rev 132007)
@@ -5,21 +5,21 @@
 
 pkgname=audacious-plugins
 pkgver=3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Plugins for Audacious'
 arch=('i686' 'x86_64')
 url='http://audacious-media-player.org/'
 license=('GPL')
 
 makedepends=(audacious=${pkgver}
- 'alsa-lib' 'pulseaudio' 'jack' 'lame' 'libvorbis' 'flac'
+ 'alsa-lib' 'pulseaudio' 'jack2' 'lame' 'libvorbis' 'flac'
  'faad2' 'ffmpeg' 'fluidsynth' 'libcdio' 'libsidplay' 'wavpack'
  'libnotify' 'lirc-utils' 'curl' 'libmtp'
  'neon' 'libmms' 'libcue')
 
 optdepends=('alsa-lib: Advanced Linux Sound Arch. output'
 'pulseaudio: PulseAudio output'
-'jack: Jack Audio Connection Kit output'
+'jack2: Jack Audio Connection Kit output'
 'lame: FileWriter MP3 output'
 'libvorbis: Vorbis input, FileWriter Vorbis output'
 'flac: FLAC input, FileWriter FLAC output'



[arch-commits] Commit in audacious-plugins/repos (extra-i686)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 18:21:13
  Author: bisson
Revision: 132008

archrelease: remove extra-i686

Deleted:
  audacious-plugins/repos/extra-i686/



[arch-commits] Commit in audacious-plugins/repos (extra-i686)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 18:21:18
  Author: bisson
Revision: 132009

archrelease: copy trunk to extra-i686

Added:
  audacious-plugins/repos/extra-i686/



[arch-commits] Commit in audacious-plugins/repos (extra-x86_64)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 18:25:28
  Author: bisson
Revision: 132010

archrelease: remove extra-x86_64

Deleted:
  audacious-plugins/repos/extra-x86_64/



[arch-commits] Commit in audacious-plugins/repos (extra-x86_64)

2011-07-18 Thread Gaetan Bisson
Date: Monday, July 18, 2011 @ 18:25:34
  Author: bisson
Revision: 132011

archrelease: copy trunk to extra-x86_64

Added:
  audacious-plugins/repos/extra-x86_64/



[arch-commits] Commit in libreoffice/trunk (7 files)

2011-07-18 Thread andyrtr
Date: Tuesday, July 19, 2011 @ 00:20:48
  Author: andyrtr
Revision: 132012

add more build fixes; finish en-US langpack build from source

Added:
  
libreoffice/trunk/0001-distro-install-desktop-integration-work-with-normal-.patch
  
libreoffice/trunk/0002-distro-install-desktop-integration-do-not-pack-libre.patch
  libreoffice/trunk/0003-distro-install-fix-en-US-only-installation.patch
  
libreoffice/trunk/0004-distro-install-desktop-integration-put-PREFIXDIR-bin.patch
  libreoffice/trunk/scp2-more-reasonable-file-access-rights.diff
Modified:
  libreoffice/trunk/PKGBUILD
  libreoffice/trunk/libreoffice.install

-+
 0001-distro-install-desktop-integration-work-with-normal-.patch |   36 +++
 0002-distro-install-desktop-integration-do-not-pack-libre.patch |   25 ++
 0003-distro-install-fix-en-US-only-installation.patch   |   31 ++
 0004-distro-install-desktop-integration-put-PREFIXDIR-bin.patch |   24 ++
 PKGBUILD|  113 
++
 libreoffice.install |2 
 scp2-more-reasonable-file-access-rights.diff|   15 +
 7 files changed, 162 insertions(+), 84 deletions(-)

Added: 0001-distro-install-desktop-integration-work-with-normal-.patch
===
--- 0001-distro-install-desktop-integration-work-with-normal-.patch 
(rev 0)
+++ 0001-distro-install-desktop-integration-work-with-normal-.patch 
2011-07-19 04:20:48 UTC (rev 132012)
@@ -0,0 +1,36 @@
+From 64653bcd8c1f1deeb8483e0d3e4ee8768a807b5d Mon Sep 17 00:00:00 2001
+From: Petr Mladek pmla...@suse.cz
+Date: Mon, 18 Jul 2011 12:32:57 +0200
+Subject: [PATCH] distro-install-desktop-integration: work with normal user
+
++ alllow to overwrite the readonly desktop files
++ create the compat soffice symlink in DESTDIR
+---
+ bin/distro-install-desktop-integration |4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/bin/distro-install-desktop-integration 
b/bin/distro-install-desktop-integration
+index c00c8c6..600c54e 100755
+--- a/bin/distro-install-desktop-integration
 b/bin/distro-install-desktop-integration
+@@ -123,7 +123,7 @@ for file in *.desktop ; do
+ -e s/\($INSTALLDIRNAME\)$PRODUCTVERSION/\1/ \
+ -e s/\($PRODUCTNAME\) $PRODUCTVERSION/\1/ \
+ $file $file.new
+-mv $file.new $file
++mv -f $file.new $file
+ done
+ cd -
+ 
+@@ -160,7 +160,7 @@ add_wrapper unopkg unopkg  unopkg  

+ #   you cannot include this link directly into the package
+ #   For example, the Novell package mark this symlink as %ghost
+ # and update it in %post and %postun
+-ln -sf $INSTALLDIR/program/soffice $PREFIXDIR/bin/soffice
++ln -sf $INSTALLDIR/program/soffice $DESTDIR$PREFIXDIR/bin/soffice
+ 
+ # create bash completion
+ mkdir -p $DESTDIR/etc/bash_completion.d
+-- 
+1.7.3.4
+

Added: 0002-distro-install-desktop-integration-do-not-pack-libre.patch
===
--- 0002-distro-install-desktop-integration-do-not-pack-libre.patch 
(rev 0)
+++ 0002-distro-install-desktop-integration-do-not-pack-libre.patch 
2011-07-19 04:20:48 UTC (rev 132012)
@@ -0,0 +1,25 @@
+From 7b202653f352a6c1bd18066bc71c93b1a5b33c13 Mon Sep 17 00:00:00 2001
+From: Petr Mladek pmla...@suse.cz
+Date: Mon, 18 Jul 2011 16:48:49 +0200
+Subject: [PATCH 2/3] distro-install-desktop-integration: do not pack 
libreoffice-base.desktop twice
+
+---
+ bin/distro-install-desktop-integration |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/bin/distro-install-desktop-integration 
b/bin/distro-install-desktop-integration
+index 600c54e..9e3b499 100755
+--- a/bin/distro-install-desktop-integration
 b/bin/distro-install-desktop-integration
+@@ -148,7 +148,7 @@ add_wrapper lomath soffice --math   
libreoffice libreoffice-mat
+ add_wrapper loimpress  soffice --impresslibreoffice 
libreoffice-impress.desktop gid_Module_Brand_Prg_Impress
+ add_wrapper loweb  soffice --weblibreoffice 
gid_Module_Brand_Prg_Wrt
+ add_wrapper lowriter   soffice --writer libreoffice 
libreoffice-writer.desktop  gid_Module_Brand_Prg_Wrt
+-add_wrapper lofromtemplate soffice .uno:NewDoc libreoffice 
libreoffice-base.desktopgid_Module_Root_Brand
++add_wrapper lofromtemplate soffice .uno:NewDoc  libreoffice 
gid_Module_Root_Brand
+ add_wrapper libreofficesoffice libreoffice 
libreoffice-startcenter.desktop gid_Module_Root_Brand
+ add_wrapper lofficesoffice libreoffice  
   gid_Module_Root_Brand
+ add_wrapper unopkg unopkg  unopkg   
   

[arch-commits] Commit in libreoffice-i18n/trunk (PKGBUILD)

2011-07-18 Thread andyrtr
Date: Tuesday, July 19, 2011 @ 00:27:33
  Author: andyrtr
Revision: 132013

prepare 3.4.2 release

Modified:
  libreoffice-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  554 +++--
 1 file changed, 285 insertions(+), 269 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 132012:132013 to see the changes.


[arch-commits] Commit in openldap/trunk (PKGBUILD ntlm.patch slapd)

2011-07-18 Thread Eric Bélanger
Date: Tuesday, July 19, 2011 @ 01:40:38
  Author: eric
Revision: 132014

upgpkg: openldap 2.4.26-1
Upstream update, Combine libldap and openldap in a splitted PKGBUILD, Update 
ntlm.patch so it applies, Remove tcp_wrappers support, Fix permissions on 
libldap libraries, Change run directory from /var/lib/openldap to /run, Move 
unix ldapi socket to /run (close FS#21051), Change libexecdir to /usr/lib, 
Enable slapd overlays (close FS#14598), PKGBUILD cleanup

Added:
  openldap/trunk/ntlm.patch
Modified:
  openldap/trunk/PKGBUILD
  openldap/trunk/slapd

+
 PKGBUILD   |  140 +++
 ntlm.patch |  230 +++
 slapd  |4 -
 3 files changed, 294 insertions(+), 80 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-07-19 04:27:33 UTC (rev 132013)
+++ PKGBUILD2011-07-19 05:40:38 UTC (rev 132014)
@@ -1,107 +1,91 @@
 # $Id$
 # Maintainer:
-# Contributor: Judd Vinet jvi...@zeroflux.org
 
-pkgname=openldap
-pkgver=2.4.24
-pkgrel=2
-pkgdesc=LDAP Server
+pkgbase=openldap
+pkgname=('libldap' 'openldap')
+pkgver=2.4.26
+pkgrel=1
 arch=('i686' 'x86_64')
-license=('custom')
 url=http://www.openldap.org/;
-backup=('etc/openldap/slapd.conf' 'etc/default/slapd' 'etc/conf.d/slapd')
-depends=(libldap=${pkgver} 'tcp_wrappers' 'libfetch' 'util-linux-ng')
-provides=('openldap-clients')
-replaces=('openldap-clients')
-source=(ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/${pkgname}-${pkgver}.tgz;
-'slapd'
-'slapd.default')
-md5sums=('116fe1e23a7b67686d5e62274367e6c0'
- '832354417c495f29affd2c772808959d'
- '6be69f6b7e522cb64cce8703da81ed32')
-options=('emptydirs')
+license=('custom')
+makedepends=('groff' 'libfetch' 'e2fsprogs' 'libtool' 'util-linux' 'libsasl')
+source=(ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/${pkgbase}-${pkgver}.tgz
+slapd slapd.default ntlm.patch)
+md5sums=('f36f3086031dd56ae94f722ffae8df5e'
+ '378cd1ca051db3f72252c2d1f80fa409'
+ '6be69f6b7e522cb64cce8703da81ed32'
+ '4258ddbef923d1f29f2843bc050f8c56')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-   
-  export LIBS=-ldb
-  ./configure --prefix=/usr \
-  --mandir=/usr/share/man \
-  --libexecdir=/usr/sbin \
-  --sysconfdir=/etc \
-  --localstatedir=/var/lib/openldap \
-  --enable-bdb \
-  --enable-crypt \
-  --enable-dynamic \
-  --with-threads \
-  --enable-wrappers \
-  --enable-spasswd \
-  --with-cyrus-sasl
-  
-  find . -name 'Makefile' -exec \
-   sed -e 
's|$(LDAP_LIBDIR)/liblber/liblber.la|/usr/lib/liblber-2.4.so.2|g' \
-   -e 
's|$(LDAP_LIBDIR)/libldap/libldap.la|/usr/lib/libldap-2.4.so.2|g' \
-   -e 
's|$(LDAP_LIBDIR)/libldap_r/libldap_r.la|/usr/lib/libldap_r-2.4.so.2|g' \
-   -i {} \;
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  patch -Np1 -i ${srcdir}/ntlm.patch
+  sed -i 's|-m 644 $(LIBRARY)|-m 755 $(LIBRARY)|' 
libraries/{liblber,libldap,libldap_r}/Makefile.in
+  sed -i 's|#define LDAPI_SOCK LDAP_RUNDIR LDAP_DIRSEP run LDAP_DIRSEP 
ldapi|#define LDAPI_SOCK LDAP_DIRSEP run LDAP_DIRSEP ldapi|' 
include/ldap_defaults.h
+  sed -i 's|%LOCALSTATEDIR%/run|/run|' servers/slapd/slapd.conf
+  sed -i 's|-$(MKDIR) $(DESTDIR)$(localstatedir)/run||' 
servers/slapd/Makefile.in
 
-  cd include
+  LDFLAGS=$LDFLAGS -L\${pkgdir}\/libldap/usr/lib 
+  ./configure --prefix=/usr --mandir=/usr/share/man --libexecdir=/usr/lib \
+--sysconfdir=/etc --localstatedir=/var/lib/openldap \
+--enable-ipv6 --enable-syslog --enable-local \
+--enable-bdb --enable-hdb \
+--enable-crypt --enable-dynamic \
+--with-threads  --disable-wrappers \
+--enable-spasswd --with-cyrus-sasl \
+--enable-overlays=mod --enable-modules=yes
   make
+}
 
-  cd ../libraries
-  for dir in liblutil librewrite liblunicode; do
-pushd ${dir}
-make depend
-make
-popd
-  done
+check() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make test
+}
 
-  cd ../servers
-  make depend
-  make
+package_libldap() {
+  pkgdesc=Lightweight Directory Access Protocol (LDAP) client libraries
+  depends=('libsasl' 'libfetch' 'e2fsprogs')
+  backup=('etc/openldap/ldap.conf')
+  options=('!libtool')
 
-  cd ../clients
-  make depend
-  make
-
-  cd ../doc/man
-  for dir in man{1,5,8}; do
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  for dir in include libraries doc/man/man3 ; do
 pushd ${dir}
-make
+make DESTDIR=${pkgdir} install
 popd
   done
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  install -Dm644 doc/man/man5/ldap.conf.5.tmp 
${pkgdir}/usr/share/man/man5/ldap.conf.5
   
-  cd servers
-  make DESTDIR=${pkgdir} install
+# get rid of duplicate default conf files
+  rm ${pkgdir}/etc/openldap/*.default
 
-  cd ../clients
-  make DESTDIR=${pkgdir} install
+ 

[arch-commits] Commit in openldap/repos (testing-i686)

2011-07-18 Thread Eric Bélanger
Date: Tuesday, July 19, 2011 @ 01:40:56
  Author: eric
Revision: 132015

archrelease: copy trunk to testing-i686

Added:
  openldap/repos/testing-i686/



[arch-commits] Commit in openldap/repos (testing-x86_64)

2011-07-18 Thread Eric Bélanger
Date: Tuesday, July 19, 2011 @ 01:41:04
  Author: eric
Revision: 132016

archrelease: copy trunk to testing-x86_64

Added:
  openldap/repos/testing-x86_64/