diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2002-07-30 21:16:43 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2002-07-30 21:16:43 +0800 |
commit | ed71bc798ae6f406e2574f80e2a29b8de94e31fd (patch) | |
tree | 28e6d4287ae35e8fdc0a9d54c7f295a143c8d1e4 | |
parent | 777a59ef791d8f7b95acfb7400b9355abfe5ab5f (diff) | |
download | freebsd-ports-gnome-ed71bc798ae6f406e2574f80e2a29b8de94e31fd.tar.gz freebsd-ports-gnome-ed71bc798ae6f406e2574f80e2a29b8de94e31fd.tar.zst freebsd-ports-gnome-ed71bc798ae6f406e2574f80e2a29b8de94e31fd.zip |
Update to exim-4.10.
This version brings exim-4.x to the point where serious production users
may wish to consider it.
Unfortunately, I don't have time for the exim -> exim-old and exim-devel
>- exim transition, and won't have time to get to it for the next 10
days.
Please be patient.
-rw-r--r-- | mail/exim-devel/Makefile | 5 | ||||
-rw-r--r-- | mail/exim-devel/distinfo | 4 | ||||
-rw-r--r-- | mail/exim-devel/files/exim.sh | 27 | ||||
-rw-r--r-- | mail/exim-devel/pkg-plist | 1 |
4 files changed, 33 insertions, 4 deletions
diff --git a/mail/exim-devel/Makefile b/mail/exim-devel/Makefile index 26d2e15ebf8b..ffa1476a744d 100644 --- a/mail/exim-devel/Makefile +++ b/mail/exim-devel/Makefile @@ -22,8 +22,8 @@ USE_BZIP2= yes MAN8= exim.8 -EXIM_VERSION= 4.05 -EXIM_DOCVERSION= 4.00 +EXIM_VERSION= 4.10 +EXIM_DOCVERSION= 4.10 PLIST_SUB+= EXIM_VERSION="${EXIM_VERSION}" @@ -220,6 +220,7 @@ pre-install: @PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL post-install: + ${INSTALL_SCRIPT} ${FILESDIR}/exim.sh ${PREFIX}/etc/rc.d .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/exim ${INSTALL_DATA} ${FILESDIR}/POST-INSTALL-NOTES ${PREFIX}/share/doc/exim diff --git a/mail/exim-devel/distinfo b/mail/exim-devel/distinfo index e8cdb374b175..afd4701097c9 100644 --- a/mail/exim-devel/distinfo +++ b/mail/exim-devel/distinfo @@ -1,2 +1,2 @@ -MD5 (exim-4.05.tar.bz2) = 105becb2c0103b4e741644740855c462 -MD5 (exim-texinfo-4.00.tar.bz2) = 18983a980fda2c4d375072c7efe3d994 +MD5 (exim-4.10.tar.bz2) = eb92cbba59bb2320b9912c46cd3fa4d0 +MD5 (exim-texinfo-4.10.tar.bz2) = 2a2a34a2457d249d568a58e985f263c0 diff --git a/mail/exim-devel/files/exim.sh b/mail/exim-devel/files/exim.sh new file mode 100644 index 000000000000..09e3e6ef9eb6 --- /dev/null +++ b/mail/exim-devel/files/exim.sh @@ -0,0 +1,27 @@ +#!/bin/sh +# +# $Id$ +# +# Note that 'pidfile' may need to be changed if 'args' is altered; see +# the description of the 'pid_file_path' Exim configuration option in +# the Exim Specification. +# +args='-bd -q30m' +pidfile='/var/run/exim.pid' + +case "$1" in +start) + [ -x /usr/local/sbin/exim ] && /usr/local/sbin/exim ${args} && \ + echo -n ' exim' + ;; +stop) + kill `cat ${pidfile}` && echo -n ' exim' + ;; +*) + echo "Usage: `basename $0` {start|stop}" >&2 + exit 64 + ;; +esac + +exit 0 + diff --git a/mail/exim-devel/pkg-plist b/mail/exim-devel/pkg-plist index dbf832172a16..8b2dd3f0bc43 100644 --- a/mail/exim-devel/pkg-plist +++ b/mail/exim-devel/pkg-plist @@ -1,4 +1,5 @@ etc/exim/configure.default +etc/rc.d/exim.sh info/exim.info info/exim_filter.info sbin/exim |