diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2002-06-18 17:43:05 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2002-06-18 17:43:05 +0800 |
commit | 232109ef20632a0371782bbfc7c5e2737fad40e4 (patch) | |
tree | 59185c862041af4f053975562eb876080a9a386e /mail/exim/Makefile | |
parent | 17b8c6b6f5d609adc6de8dff406c56f88fb5d12c (diff) | |
download | freebsd-ports-gnome-232109ef20632a0371782bbfc7c5e2737fad40e4.tar.gz freebsd-ports-gnome-232109ef20632a0371782bbfc7c5e2737fad40e4.tar.zst freebsd-ports-gnome-232109ef20632a0371782bbfc7c5e2737fad40e4.zip |
Revert rev 1.109 of Makefile. Given the likelihood of future changes
in the configuration affecting the base system's MTA, the management
of multiple POST-INSTALL-NOTES files could easily become a nightmare.
Instead, use a single POST-INSTALL-NOTES file that includes instructions
that, at worst, suggest unnecessary but harmless changes.
While here, use bullets instead of a numbered list for the notes, so
that future deltas are easier to read.
Also, mention the 'daily_status_include_submit_mailq' periodic.conf(5)
knob, as reported in PR ports/38925.
PR: ports/38925
Submitted by: Pat Lashley <patl+freebsd@phoenix.volant.org>
Diffstat (limited to 'mail/exim/Makefile')
-rw-r--r-- | mail/exim/Makefile | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 9aff424c39e7..cb036e5fac46 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -17,6 +17,10 @@ MAINTAINER= sheldonh@FreeBSD.org USE_BZIP2= yes +.if defined(NOPORTDOCS) +PKGMESSAGE= ${FILESDIR}/POST-INSTALL-NOTES +.endif + MAKE_ENV+= OSTYPE=${OPSYS} ARCHTYPE=${MACHINE_ARCH} # If WITH_EXIMON is defined, the eximon monitor, which requires X, @@ -80,20 +84,10 @@ RUN_DEPENDS= ${LOCALBASE}/sbin/eximon:${PORTSDIR}/mail/exim-monitor .include <bsd.port.pre.mk> -.if ${OSVERSION} < 500033 -PI_NOTES_FILE= ${FILESDIR}/POST-INSTALL-NOTES -.else -PI_NOTES_FILE= ${FILESDIR}/POST-INSTALL-NOTES.latest -.endif - .if ${OSVERSION} < 400014 WITHOUT_IPV6= yes .endif -.if defined(NOPORTDOCS) -PKGMESSAGE= ${PI_NOTES_FILE} -.endif - SEDLIST= -e 's,XX_PREFIX_XX,${PREFIX},' .if !defined(WITHOUT_TLS) @@ -207,8 +201,7 @@ post-install: ${INSTALL_SCRIPT} ${FILESDIR}/exim.sh ${PREFIX}/etc/rc.d .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/exim - ${INSTALL_DATA} ${PI_NOTES_FILE} \ - ${PREFIX}/share/doc/exim/POST-INSTALL-NOTES + ${INSTALL_DATA} ${FILESDIR}/POST-INSTALL-NOTES ${PREFIX}/share/doc/exim ${INSTALL_DATA} ${WRKSRC}/doc/filter.txt ${PREFIX}/share/doc/exim ${INSTALL_DATA} ${WRKSRC}/doc/oview.txt ${PREFIX}/share/doc/exim ${INSTALL_DATA} ${WRKSRC}/doc/spec.txt ${PREFIX}/share/doc/exim |