From db0109be42547d5dbb0fc1eb8ae30ccc968ed88b Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 8 Sep 2020 15:53:41 +0200 Subject: gnu: dovecot: Set moduledir to global directory. * gnu/packages/mail.scm (dovecot)[arguments]: Add configure-flag to set moduledir. Adjust custom 'install phase to override moduledir so it successfully installs. Signed-off-by: Tobias Geerinckx-Rice --- gnu/packages/mail.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 6f3a967575..7af7e8a8d7 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1453,6 +1453,7 @@ facilities for checking incoming mail.") (arguments `(#:configure-flags '("--sysconfdir=/etc" "--localstatedir=/var" + "--with-moduledir=/etc/dovecot/modules" "--with-sqlite" ; not auto-detected "--with-lucene") ; not auto-detected #:phases @@ -1471,9 +1472,13 @@ facilities for checking incoming mail.") (("cat") (which "cat"))) #t)) (replace 'install - (lambda* (#:key make-flags #:allow-other-keys) + (lambda* (#:key outputs make-flags #:allow-other-keys) + ;; The .la files don't like having the moduledir moved. + (for-each delete-file (find-files "." "\\.la")) ;; Simple hack to avoid installing a trivial README in /etc. (apply invoke "make" "install" "sysconfdir=/tmp/bogus" + (string-append "moduledir=" (assoc-ref outputs "out") + "/lib/dovecot") make-flags)))))) (home-page "https://www.dovecot.org") (synopsis "Secure POP3/IMAP server") -- cgit v1.2.3