blob: 2bab52a7be907183e8d661fd163367e2bbceef99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/bin/sh
SRCDIR="${1:-`pwd`}"
RUNDIR="${2:-/usr/local/var/run/dovecot}"
PKGSYSCONFDIR="${3:-/usr/local/etc/dovecot}"
PKGLIBEXECDIR="${4:-/usr/local/libexec/dovecot}"
sed -e "/^@INCLUDE:global-options@$/{
r ${SRCDIR}/global-options.inc
d
}" \
-e "/^@INCLUDE:global-options-formatter@$/{
r ${SRCDIR}/global-options-formatter.inc
d
}" \
-e "/^@INCLUDE:option-A@$/{
r ${SRCDIR}/option-A.inc
d
}" \
-e "/^@INCLUDE:option-F-file@$/{
r ${SRCDIR}/option-F-file.inc
d
}" \
-e "/^@INCLUDE:option-S-socket@$/{
r ${SRCDIR}/option-S-socket.inc
d
}" \
-e "/^@INCLUDE:option-u-user@$/{
r ${SRCDIR}/option-u-user.inc
d
}" \
-e "/^@INCLUDE:reporting-bugs@$/{
r ${SRCDIR}/reporting-bugs.inc
d
}" | sed -e "s|@pkgsysconfdir@|${PKGSYSCONFDIR}|" \
-e "s|@rundir@|${RUNDIR}|" \
-e "s|@pkglibexecdir@|${PKGLIBEXECDIR}|"
|