guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: dovecot: Set moduledir to global directory.


From: guix-commits
Subject: 02/04: gnu: dovecot: Set moduledir to global directory.
Date: Wed, 9 Sep 2020 14:38:23 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit db0109be42547d5dbb0fc1eb8ae30ccc968ed88b
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Sep 8 15:53:41 2020 +0200

    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 <me@tobias.gr>
---
 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 6f3a967..7af7e8a 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]