diff options
author | wiz <wiz@pkgsrc.org> | 2001-01-29 11:34:21 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-01-29 11:34:21 +0000 |
commit | b979f7222ad9bade13f010cd27e5bc6afab1681c (patch) | |
tree | 86f14acd24842161759a420487862022044c2b4b /mail/sendmail/pkg | |
parent | 6a13219ca89e5dae86f27159ff86006058c06859 (diff) | |
download | pkgsrc-b979f7222ad9bade13f010cd27e5bc6afab1681c.tar.gz |
Add automatic ${VARIABLE} handling for MESSAGE files.
Convert most MESSAGE files to new syntax (${VARIABLE} gets replaced,
not @VARIABLE@, nor @@VARIABLE@@).
By default, substitutions are done for LOCALBASE, PKGNAME, PREFIX,
X11BASE, X11PREFIX; additional patterns can be added via MESSAGE_SUBST.
Clean up some packages while I'm there; add RCS tags to most MESSAGEs.
Remove some uninteresting MESSAGEs.
Diffstat (limited to 'mail/sendmail/pkg')
-rw-r--r-- | mail/sendmail/pkg/MESSAGE | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mail/sendmail/pkg/MESSAGE b/mail/sendmail/pkg/MESSAGE index a0d6221c0fd..2db816bdbd0 100644 --- a/mail/sendmail/pkg/MESSAGE +++ b/mail/sendmail/pkg/MESSAGE @@ -1,5 +1,7 @@ -To use "@@PKGNAME@@" as the system's mail transport agent you have -to install "@@PREFIX@@/etc/mailer.conf.sendmail" as global mailwrapper +$NetBSD: MESSAGE,v 1.5 2001/01/29 11:34:32 wiz Exp $ + +To use "${PKGNAME}" as the system's mail transport agent you have +to install "${PREFIX}/etc/mailer.conf.sendmail" as global mailwrapper configuration file. The command below will do that for you: -ln -fs @@PREFIX@@/etc/mailer.conf.sendmail /etc/mailer.conf +ln -fs ${PREFIX}/etc/mailer.conf.sendmail /etc/mailer.conf |