[arch-commits] Commit in lighttpd/repos (20 files)

2017-11-13 Thread Pierre Schmitz
Date: Monday, November 13, 2017 @ 15:32:31
  Author: pierre
Revision: 309832

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  lighttpd/repos/extra-i686/PKGBUILD
(from rev 309831, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/extra-i686/lighttpd.conf
(from rev 309831, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/extra-i686/lighttpd.logrotate.d
(from rev 309831, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/extra-i686/lighttpd.service
(from rev 309831, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/extra-i686/lighttpd.tmpfiles
(from rev 309831, lighttpd/trunk/lighttpd.tmpfiles)
  lighttpd/repos/extra-x86_64/PKGBUILD
(from rev 309831, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/extra-x86_64/lighttpd.conf
(from rev 309831, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/extra-x86_64/lighttpd.logrotate.d
(from rev 309831, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/extra-x86_64/lighttpd.service
(from rev 309831, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/extra-x86_64/lighttpd.tmpfiles
(from rev 309831, lighttpd/trunk/lighttpd.tmpfiles)
Deleted:
  lighttpd/repos/extra-i686/PKGBUILD
  lighttpd/repos/extra-i686/lighttpd.conf
  lighttpd/repos/extra-i686/lighttpd.logrotate.d
  lighttpd/repos/extra-i686/lighttpd.service
  lighttpd/repos/extra-i686/lighttpd.tmpfiles
  lighttpd/repos/extra-x86_64/PKGBUILD
  lighttpd/repos/extra-x86_64/lighttpd.conf
  lighttpd/repos/extra-x86_64/lighttpd.logrotate.d
  lighttpd/repos/extra-x86_64/lighttpd.service
  lighttpd/repos/extra-x86_64/lighttpd.tmpfiles

---+
 /PKGBUILD |  144 
 /lighttpd.conf|   44 +++
 /lighttpd.logrotate.d |   18 
 /lighttpd.service |   24 ++
 /lighttpd.tmpfiles|4 +
 extra-i686/PKGBUILD   |   72 --
 extra-i686/lighttpd.conf  |   22 -
 extra-i686/lighttpd.logrotate.d   |9 --
 extra-i686/lighttpd.service   |   12 ---
 extra-i686/lighttpd.tmpfiles  |2 
 extra-x86_64/PKGBUILD |   72 --
 extra-x86_64/lighttpd.conf|   22 -
 extra-x86_64/lighttpd.logrotate.d |9 --
 extra-x86_64/lighttpd.service |   12 ---
 extra-x86_64/lighttpd.tmpfiles|2 
 15 files changed, 234 insertions(+), 234 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-11-13 15:32:14 UTC (rev 309831)
+++ extra-i686/PKGBUILD 2017-11-13 15:32:31 UTC (rev 309832)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=lighttpd
-pkgver=1.4.47
-pkgrel=1
-pkgdesc='A secure, fast, compliant and very flexible web-server'
-license=('custom')
-arch=('i686' 'x86_64')
-url="http://www.lighttpd.net/;
-depends=('pcre' 'util-linux' 'systemd')
-makedepends=('libmariadbclient' 'lua' 'libxml2' 'e2fsprogs' 'sqlite' 'gdbm' 
'pkgconfig')
-optdepends=('libxml2: mod_webdav'
-'lua: mod_cml/mod_magnet'
-'libmariadbclient: mod_mysql_vhost/mod_authn_mysql'
-'sqlite: mod_webdav')
-backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
-options=('emptydirs')
-source=("https://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz"{,.asc}
-'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 
'lighttpd.service')
-sha256sums=('e47e64a9cc2b824c45792a6b1a5542945956e77ede3454845f42548495946c1c'
-'SKIP'
-'41f6c0042bb61021553779f861910e335834f6c15e4411756cdc6233b31076fe'
-'fece4581bebf39768571962dedce176b2b5f487c0abb5c1cfb35395de216c01f'
-'d8a185145a7c08b4fd8c8e6c12dae3e176389dd9b1c66e239757b2ba5108c871'
-'0c88403364e732c06090f6807105dedbac25aa82add0499d28007f8aaa780b78')
-validpgpkeys=('C7CA1E9E29DC77F5480894B2E0E7D0171E95BAD7'
-  '649D0DD767FF206202A76C5158F14A786FE198C8'
-  'EAAF41A8BE3BB8D001CACD136DE62CA242909B84')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-
-   ./configure --prefix=/usr \
-   --sbindir=/usr/bin \
-   --libdir=/usr/lib/lighttpd/ \
-   --sysconfdir=/etc/lighttpd \
-   --with-mysql \
-   --with-ldap \
-   --with-attr \
-   --with-openssl \
-   --with-kerberos5 \
-   --without-fam \
-   --with-webdav-props \
-   --with-webdav-locks \
-   --with-gdbm \
-   --with-lua
-   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-   make
-}
-
-check() {
-   cd $srcdir/$pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-
-   install -D -m644 $srcdir/lighttpd.logrotate.d 
$pkgdir/etc/logrotate.d/lighttpd
-   install -D -m644 

[arch-commits] Commit in lighttpd/repos (20 files)

2017-10-23 Thread Pierre Schmitz
Date: Monday, October 23, 2017 @ 15:55:06
  Author: pierre
Revision: 308355

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  lighttpd/repos/extra-i686/PKGBUILD
(from rev 308354, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/extra-i686/lighttpd.conf
(from rev 308354, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/extra-i686/lighttpd.logrotate.d
(from rev 308354, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/extra-i686/lighttpd.service
(from rev 308354, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/extra-i686/lighttpd.tmpfiles
(from rev 308354, lighttpd/trunk/lighttpd.tmpfiles)
  lighttpd/repos/extra-x86_64/PKGBUILD
(from rev 308354, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/extra-x86_64/lighttpd.conf
(from rev 308354, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/extra-x86_64/lighttpd.logrotate.d
(from rev 308354, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/extra-x86_64/lighttpd.service
(from rev 308354, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/extra-x86_64/lighttpd.tmpfiles
(from rev 308354, lighttpd/trunk/lighttpd.tmpfiles)
Deleted:
  lighttpd/repos/extra-i686/PKGBUILD
  lighttpd/repos/extra-i686/lighttpd.conf
  lighttpd/repos/extra-i686/lighttpd.logrotate.d
  lighttpd/repos/extra-i686/lighttpd.service
  lighttpd/repos/extra-i686/lighttpd.tmpfiles
  lighttpd/repos/extra-x86_64/PKGBUILD
  lighttpd/repos/extra-x86_64/lighttpd.conf
  lighttpd/repos/extra-x86_64/lighttpd.logrotate.d
  lighttpd/repos/extra-x86_64/lighttpd.service
  lighttpd/repos/extra-x86_64/lighttpd.tmpfiles

---+
 /PKGBUILD |  144 
 /lighttpd.conf|   44 +++
 /lighttpd.logrotate.d |   18 
 /lighttpd.service |   24 ++
 /lighttpd.tmpfiles|4 +
 extra-i686/PKGBUILD   |   72 --
 extra-i686/lighttpd.conf  |   22 -
 extra-i686/lighttpd.logrotate.d   |9 --
 extra-i686/lighttpd.service   |   12 ---
 extra-i686/lighttpd.tmpfiles  |2 
 extra-x86_64/PKGBUILD |   72 --
 extra-x86_64/lighttpd.conf|   22 -
 extra-x86_64/lighttpd.logrotate.d |9 --
 extra-x86_64/lighttpd.service |   12 ---
 extra-x86_64/lighttpd.tmpfiles|2 
 15 files changed, 234 insertions(+), 234 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-10-23 15:54:43 UTC (rev 308354)
+++ extra-i686/PKGBUILD 2017-10-23 15:55:06 UTC (rev 308355)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=lighttpd
-pkgver=1.4.46
-pkgrel=1
-pkgdesc='A secure, fast, compliant and very flexible web-server'
-license=('custom')
-arch=('i686' 'x86_64')
-url="http://www.lighttpd.net/;
-depends=('pcre' 'util-linux' 'systemd')
-makedepends=('libmariadbclient' 'lua' 'libxml2' 'e2fsprogs' 'sqlite' 'gdbm' 
'pkgconfig')
-optdepends=('libxml2: mod_webdav'
-'lua: mod_cml/mod_magnet'
-'libmariadbclient: mod_mysql_vhost/mod_authn_mysql'
-'sqlite: mod_webdav')
-backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
-options=('emptydirs')
-source=("https://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz"{,.asc}
-'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 
'lighttpd.service')
-sha256sums=('a2abfc9752992ae3260209f9c4228e7511af4ae12d5fca5e9463234e9e2b47ee'
-'SKIP'
-'41f6c0042bb61021553779f861910e335834f6c15e4411756cdc6233b31076fe'
-'fece4581bebf39768571962dedce176b2b5f487c0abb5c1cfb35395de216c01f'
-'d8a185145a7c08b4fd8c8e6c12dae3e176389dd9b1c66e239757b2ba5108c871'
-'0c88403364e732c06090f6807105dedbac25aa82add0499d28007f8aaa780b78')
-validpgpkeys=('C7CA1E9E29DC77F5480894B2E0E7D0171E95BAD7'
-  '649D0DD767FF206202A76C5158F14A786FE198C8'
-  'EAAF41A8BE3BB8D001CACD136DE62CA242909B84')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-
-   ./configure --prefix=/usr \
-   --sbindir=/usr/bin \
-   --libdir=/usr/lib/lighttpd/ \
-   --sysconfdir=/etc/lighttpd \
-   --with-mysql \
-   --with-ldap \
-   --with-attr \
-   --with-openssl \
-   --with-kerberos5 \
-   --without-fam \
-   --with-webdav-props \
-   --with-webdav-locks \
-   --with-gdbm \
-   --with-lua
-   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-   make
-}
-
-check() {
-   cd $srcdir/$pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-
-   install -D -m644 $srcdir/lighttpd.logrotate.d 
$pkgdir/etc/logrotate.d/lighttpd
-   install -D -m644 

[arch-commits] Commit in lighttpd/repos (20 files)

2017-10-22 Thread Pierre Schmitz
Date: Sunday, October 22, 2017 @ 11:03:02
  Author: pierre
Revision: 308331

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  lighttpd/repos/extra-i686/PKGBUILD
(from rev 308330, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/extra-i686/lighttpd.conf
(from rev 308330, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/extra-i686/lighttpd.logrotate.d
(from rev 308330, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/extra-i686/lighttpd.service
(from rev 308330, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/extra-i686/lighttpd.tmpfiles
(from rev 308330, lighttpd/trunk/lighttpd.tmpfiles)
  lighttpd/repos/extra-x86_64/PKGBUILD
(from rev 308330, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/extra-x86_64/lighttpd.conf
(from rev 308330, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/extra-x86_64/lighttpd.logrotate.d
(from rev 308330, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/extra-x86_64/lighttpd.service
(from rev 308330, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/extra-x86_64/lighttpd.tmpfiles
(from rev 308330, lighttpd/trunk/lighttpd.tmpfiles)
Deleted:
  lighttpd/repos/extra-i686/PKGBUILD
  lighttpd/repos/extra-i686/lighttpd.conf
  lighttpd/repos/extra-i686/lighttpd.logrotate.d
  lighttpd/repos/extra-i686/lighttpd.service
  lighttpd/repos/extra-i686/lighttpd.tmpfiles
  lighttpd/repos/extra-x86_64/PKGBUILD
  lighttpd/repos/extra-x86_64/lighttpd.conf
  lighttpd/repos/extra-x86_64/lighttpd.logrotate.d
  lighttpd/repos/extra-x86_64/lighttpd.service
  lighttpd/repos/extra-x86_64/lighttpd.tmpfiles

---+
 /PKGBUILD |  144 
 /lighttpd.conf|   44 +++
 /lighttpd.logrotate.d |   18 
 /lighttpd.service |   24 ++
 /lighttpd.tmpfiles|4 +
 extra-i686/PKGBUILD   |   72 --
 extra-i686/lighttpd.conf  |   22 -
 extra-i686/lighttpd.logrotate.d   |9 --
 extra-i686/lighttpd.service   |   12 ---
 extra-i686/lighttpd.tmpfiles  |2 
 extra-x86_64/PKGBUILD |   72 --
 extra-x86_64/lighttpd.conf|   22 -
 extra-x86_64/lighttpd.logrotate.d |9 --
 extra-x86_64/lighttpd.service |   12 ---
 extra-x86_64/lighttpd.tmpfiles|2 
 15 files changed, 234 insertions(+), 234 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-10-22 11:02:36 UTC (rev 308330)
+++ extra-i686/PKGBUILD 2017-10-22 11:03:02 UTC (rev 308331)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=lighttpd
-pkgver=1.4.45
-pkgrel=2
-pkgdesc='A secure, fast, compliant and very flexible web-server'
-license=('custom')
-arch=('i686' 'x86_64')
-url="http://www.lighttpd.net/;
-depends=('pcre' 'util-linux' 'systemd')
-makedepends=('libmariadbclient' 'lua' 'libxml2' 'e2fsprogs' 'sqlite' 'gdbm' 
'pkgconfig')
-optdepends=('libxml2: mod_webdav'
-'lua: mod_cml/mod_magnet'
-'libmariadbclient: mod_mysql_vhost/mod_authn_mysql'
-'sqlite: mod_webdav')
-backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
-options=('emptydirs')
-source=("https://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz"{,.asc}
-'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 
'lighttpd.service')
-sha256sums=('1c97225deea33eefba6d4158c2cef27913d47553263516bbe9d2e2760fc43a3f'
-'SKIP'
-'41f6c0042bb61021553779f861910e335834f6c15e4411756cdc6233b31076fe'
-'fece4581bebf39768571962dedce176b2b5f487c0abb5c1cfb35395de216c01f'
-'d8a185145a7c08b4fd8c8e6c12dae3e176389dd9b1c66e239757b2ba5108c871'
-'0c88403364e732c06090f6807105dedbac25aa82add0499d28007f8aaa780b78')
-validpgpkeys=('C7CA1E9E29DC77F5480894B2E0E7D0171E95BAD7'
-  '649D0DD767FF206202A76C5158F14A786FE198C8'
-  'EAAF41A8BE3BB8D001CACD136DE62CA242909B84')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-
-   ./configure --prefix=/usr \
-   --sbindir=/usr/bin \
-   --libdir=/usr/lib/lighttpd/ \
-   --sysconfdir=/etc/lighttpd \
-   --with-mysql \
-   --with-ldap \
-   --with-attr \
-   --with-openssl \
-   --with-kerberos5 \
-   --without-fam \
-   --with-webdav-props \
-   --with-webdav-locks \
-   --with-gdbm \
-   --with-lua
-   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-   make
-}
-
-check() {
-   cd $srcdir/$pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-
-   install -D -m644 $srcdir/lighttpd.logrotate.d 
$pkgdir/etc/logrotate.d/lighttpd
-   install -D -m644 

[arch-commits] Commit in lighttpd/repos (20 files)

2017-05-31 Thread Evangelos Foutras
Date: Wednesday, May 31, 2017 @ 07:22:23
  Author: foutrelis
Revision: 296880

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  lighttpd/repos/staging-i686/PKGBUILD
(from rev 296879, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/staging-i686/lighttpd.conf
(from rev 296879, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/staging-i686/lighttpd.logrotate.d
(from rev 296879, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/staging-i686/lighttpd.service
(from rev 296879, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/staging-i686/lighttpd.tmpfiles
(from rev 296879, lighttpd/trunk/lighttpd.tmpfiles)
  lighttpd/repos/staging-x86_64/PKGBUILD
(from rev 296879, lighttpd/trunk/PKGBUILD)
  lighttpd/repos/staging-x86_64/lighttpd.conf
(from rev 296879, lighttpd/trunk/lighttpd.conf)
  lighttpd/repos/staging-x86_64/lighttpd.logrotate.d
(from rev 296879, lighttpd/trunk/lighttpd.logrotate.d)
  lighttpd/repos/staging-x86_64/lighttpd.service
(from rev 296879, lighttpd/trunk/lighttpd.service)
  lighttpd/repos/staging-x86_64/lighttpd.tmpfiles
(from rev 296879, lighttpd/trunk/lighttpd.tmpfiles)
Deleted:
  lighttpd/repos/staging-i686/PKGBUILD
  lighttpd/repos/staging-i686/lighttpd.conf
  lighttpd/repos/staging-i686/lighttpd.logrotate.d
  lighttpd/repos/staging-i686/lighttpd.service
  lighttpd/repos/staging-i686/lighttpd.tmpfiles
  lighttpd/repos/staging-x86_64/PKGBUILD
  lighttpd/repos/staging-x86_64/lighttpd.conf
  lighttpd/repos/staging-x86_64/lighttpd.logrotate.d
  lighttpd/repos/staging-x86_64/lighttpd.service
  lighttpd/repos/staging-x86_64/lighttpd.tmpfiles

-+
 /PKGBUILD   |  144 ++
 /lighttpd.conf  |   44 ++
 /lighttpd.logrotate.d   |   18 
 /lighttpd.service   |   24 +
 /lighttpd.tmpfiles  |4 
 staging-i686/PKGBUILD   |   72 -
 staging-i686/lighttpd.conf  |   22 -
 staging-i686/lighttpd.logrotate.d   |9 --
 staging-i686/lighttpd.service   |   12 --
 staging-i686/lighttpd.tmpfiles  |2 
 staging-x86_64/PKGBUILD |   72 -
 staging-x86_64/lighttpd.conf|   22 -
 staging-x86_64/lighttpd.logrotate.d |9 --
 staging-x86_64/lighttpd.service |   12 --
 staging-x86_64/lighttpd.tmpfiles|2 
 15 files changed, 234 insertions(+), 234 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2017-05-31 07:22:08 UTC (rev 296879)
+++ staging-i686/PKGBUILD   2017-05-31 07:22:23 UTC (rev 296880)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=lighttpd
-pkgver=1.4.45
-pkgrel=3
-pkgdesc='A secure, fast, compliant and very flexible web-server'
-license=('custom')
-arch=('i686' 'x86_64')
-url="http://www.lighttpd.net/;
-depends=('pcre' 'util-linux' 'systemd')
-makedepends=('libmariadb' 'lua' 'libxml2' 'e2fsprogs' 'sqlite' 'gdbm' 
'pkgconfig')
-optdepends=('libxml2: mod_webdav'
-'lua: mod_cml/mod_magnet'
-'libmariadb: mod_mysql_vhost/mod_authn_mysql'
-'sqlite: mod_webdav')
-backup=('etc/lighttpd/lighttpd.conf' 'etc/logrotate.d/lighttpd')
-options=('emptydirs')
-source=("https://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.xz"{,.asc}
-'lighttpd.logrotate.d' 'lighttpd.conf' 'lighttpd.tmpfiles' 
'lighttpd.service')
-sha256sums=('1c97225deea33eefba6d4158c2cef27913d47553263516bbe9d2e2760fc43a3f'
-'SKIP'
-'41f6c0042bb61021553779f861910e335834f6c15e4411756cdc6233b31076fe'
-'fece4581bebf39768571962dedce176b2b5f487c0abb5c1cfb35395de216c01f'
-'d8a185145a7c08b4fd8c8e6c12dae3e176389dd9b1c66e239757b2ba5108c871'
-'0c88403364e732c06090f6807105dedbac25aa82add0499d28007f8aaa780b78')
-validpgpkeys=('C7CA1E9E29DC77F5480894B2E0E7D0171E95BAD7'
-  '649D0DD767FF206202A76C5158F14A786FE198C8'
-  'EAAF41A8BE3BB8D001CACD136DE62CA242909B84')
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-
-   ./configure --prefix=/usr \
-   --sbindir=/usr/bin \
-   --libdir=/usr/lib/lighttpd/ \
-   --sysconfdir=/etc/lighttpd \
-   --with-mysql \
-   --with-ldap \
-   --with-attr \
-   --with-openssl \
-   --with-kerberos5 \
-   --without-fam \
-   --with-webdav-props \
-   --with-webdav-locks \
-   --with-gdbm \
-   --with-lua
-   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-   make
-}
-
-check() {
-   cd $srcdir/$pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-
-   install -D -m644