freebsd-ports/mail/postfix-current/scripts/fix-files-list
David W. Chapman Jr. 54413ef8d7 Update to 20020115
Give originator maintainership

Submitted by:	khera@kcilink.com
2002-01-30 19:47:44 +00:00

12 lines
345 B
Bash

#!/bin/sh
# need to fixup ${PREFIX}/etc/postfix/postfix-files to indicate compressed
# man pages, since the ports software compresses them later, and if we
# run post-install it will complain about missing files
# (script from Simon J. Mudd)
ed ${PREFIX}/etc/postfix/postfix-files <<EOF || exit 1
%s/\(\/man[158]\/.*\.[158]\):/\1.gz:/
w
q
EOF