gnu: dovecot: Avoid unnecessary patching.

* gnu/packages/mail.scm (dovecot)[arguments]: Replace ‘pre-configure’
patching with custom ‘make install sysconfdir=…’.
master
Tobias Geerinckx-Rice 2019-03-08 01:15:21 +01:00
parent f762e49f28
commit 37fc44eab9
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 6 additions and 9 deletions

View File

@ -1305,14 +1305,6 @@ facilities for checking incoming mail.")
"--localstatedir=/var")
#:phases
(modify-phases %standard-phases
(add-before 'configure 'pre-configure
(lambda _
;; Simple hack to avoid installing in /etc.
(substitute* '("doc/Makefile.in"
"doc/example-config/Makefile.in")
(("pkgsysconfdir = .*")
"pkgsysconfdir = /tmp/etc"))
#t))
(add-after 'unpack 'patch-file-names
(lambda _
(substitute* "src/lib-program-client/test-program-client-local.c"
@ -1325,7 +1317,12 @@ facilities for checking incoming mail.")
(substitute* (list "src/lib-smtp/test-bin/sendmail-exit-1.sh"
"src/lib-smtp/test-bin/sendmail-success.sh")
(("cat") (which "cat")))
#t)))))
#t))
(replace 'install
(lambda* (#:key make-flags #:allow-other-keys)
;; Simple hack to avoid installing a trivial README in /etc.
(apply invoke "make" "install" "sysconfdir=/tmp/bogus"
make-flags))))))
(home-page "https://www.dovecot.org")
(synopsis "Secure POP3/IMAP server")
(description