diff options
author | root <root@rshg054.dnsready.net> | 2012-11-06 02:13:31 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-11-06 02:13:31 -0800 |
commit | 85e0e667660650d70269432a90401d4288776d9d (patch) | |
tree | 7d6e665bf13e57be14c60b14512dd322c97874e8 /extra/dovecot/PKGBUILD | |
parent | c973e7aa43bb6c3bb4e25503eea40ddee63fcefd (diff) |
Tue Nov 6 02:09:19 PST 2012
Diffstat (limited to 'extra/dovecot/PKGBUILD')
-rw-r--r-- | extra/dovecot/PKGBUILD | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/extra/dovecot/PKGBUILD b/extra/dovecot/PKGBUILD index a8aa3b571..96f7ac061 100644 --- a/extra/dovecot/PKGBUILD +++ b/extra/dovecot/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 166907 2012-09-21 14:30:04Z andyrtr $ +# $Id: PKGBUILD 170236 2012-11-05 18:50:40Z andyrtr $ # Maintainer: Andreas Radke <andyrtr@archlinux.org> # Contributor: Paul Mattal <paul@mattal.com> # Contributor: Federico Quagliata (quaqo) <quaqo@despammed.com> @@ -6,7 +6,7 @@ pkgname=dovecot pkgver=2.1.10 -pkgrel=1 +pkgrel=2 pkgdesc="An IMAP and POP3 server written with security primarily in mind" arch=('i686' 'x86_64') url="http://dovecot.org/" @@ -32,6 +32,9 @@ build() { # fix build with recent clucene (FC) sed -i '/DEFAULT_INCLUDES *=/s|$| '"$(pkg-config --cflags libclucene-core)|" src/plugins/fts-lucene/Makefile.in + + # fix path in helper script + sed -i 's:OPENSSLCONFIG=${OPENSSLCONFIG-dovecot-openssl.cnf}:OPENSSLCONFIG=${OPENSSLCONFIG- /etc/ssl/dovecot-openssl.cnf}:' doc/mkcert.sh # configure with openssl, mysql, and postgresql support ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ @@ -43,7 +46,8 @@ build() { --with-mysql \ --with-pgsql \ --with-sqlite \ - --with-ssl=openssl --with-ssldir=/etc/dovecot/ssl \ + --with-ssl=openssl \ + --with-ssldir=/etc/ssl \ --with-gssapi \ --with-ldap=plugin \ --with-zlib --with-bzlib \ |