diff options
author | will <will@FreeBSD.org> | 2002-03-16 17:36:56 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2002-03-16 17:36:56 +0000 |
commit | 58c9c1592de8d853a9f73dd49d0d26f9488d85f4 (patch) | |
tree | b5f7b9d7ca8417b8e7a109a3b4e70a7f009524d2 /mail | |
parent | eeda238ab3df24601ebc22ea856cbdf8849aedeb (diff) | |
download | FreeBSD-ports-58c9c1592de8d853a9f73dd49d0d26f9488d85f4.zip FreeBSD-ports-58c9c1592de8d853a9f73dd49d0d26f9488d85f4.tar.gz |
[1] Fix pre-everything target specifier.
[2] Cosmetic fix: no lines longer than 80 characters (8-char tab).
Submitted by: [1] Dan Langille <dan@langille.org>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/drac/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/mail/drac/Makefile b/mail/drac/Makefile index cdc7a53..d80299a 100644 --- a/mail/drac/Makefile +++ b/mail/drac/Makefile @@ -31,17 +31,18 @@ MAN1= rpc.dracd.1 MAKE_ARGS+= -DWITH_TI_RPC .endif -pre-everything: - @${ECHO} "================================================================================" +pre-everything:: + @${ECHO} "=============================================================" @${ECHO} "For databases compatible with other MTAs than sendmail, use:" @${ECHO} @${ECHO} "WITH_POSTFIX=yes (Postfix)" @${ECHO} "WITH_POSTFIX_DB3=yes (Postfix with DB3 database maps)" @${ECHO} "WITH_EXIM=yes (Exim)" @${ECHO} - @${ECHO} "Define WITH_FOREGROUND to make the rpc.dracd daemon stay in foreground instead" - @${ECHO} "of detaching itself. This breaks the startup script." - @${ECHO} "================================================================================" + @${ECHO} "Define WITH_FOREGROUND to make the rpc.dracd daemon stay in" + @${ECHO} "foreground instead of detaching itself. This breaks the" + @${ECHO} "startup script." + @${ECHO} "=============================================================" post-patch: @${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/rpc.dracd.1m |