diff options
author | markm <markm@FreeBSD.org> | 1997-02-26 21:45:02 +0800 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1997-02-26 21:45:02 +0800 |
commit | f72a079c49ae1ccc78004bcc0e93e2a65c6c4d6e (patch) | |
tree | b4007911de0bc749820d1637f71a96b932840b83 /mail/exim | |
parent | 32d558c457eb510c23eccdd0f1c0b0514a5b4358 (diff) | |
download | freebsd-ports-gnome-f72a079c49ae1ccc78004bcc0e93e2a65c6c4d6e.tar.gz freebsd-ports-gnome-f72a079c49ae1ccc78004bcc0e93e2a65c6c4d6e.tar.zst freebsd-ports-gnome-f72a079c49ae1ccc78004bcc0e93e2a65c6c4d6e.zip |
Upgrade to version 1.60.
Note! I have fixed a bogon from previous versions where I was putting the
executables in $(PREFIX)/bin. They now go in $(PREFIX)/sbin, so make
sure your previous binaries have been properly removed!
Diffstat (limited to 'mail/exim')
-rw-r--r-- | mail/exim/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index d1a5d4f9c447..b844be9dd884 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -1,15 +1,15 @@ # New ports collection makefile for: exim -# Version required: 1.59 +# Version required: 1.60 # Date created: 23 June 1996 # Whom: markm # -# $Id: Makefile,v 1.6 1996/11/17 07:42:27 obrien Exp $ +# $Id: Makefile,v 1.7 1996/12/01 07:12:08 markm Exp $ # -DISTNAME= exim-1.59 +DISTNAME= exim-1.60 CATEGORIES= mail MASTER_SITES= ftp://ftp.cus.cam.ac.uk/pub/software/programs/exim/ -DISTFILES= exim-1.59.tar.gz exim-texinfo-1.58.tar.gz +DISTFILES= exim-1.60.tar.gz exim-texinfo-1.60.tar.gz MAINTAINER= markm@FreeBSD.ORG @@ -17,6 +17,9 @@ do-configure: ${MKDIR} ${WRKSRC}/Local ${CP} ${FILESDIR}/Makefile ${WRKSRC}/Local ${CP} ${FILESDIR}/eximon.conf ${WRKSRC}/Local - (cd ${WRKSRC}/doc ; ln -s ../../exim-texinfo-1.58/doc/* ) + (cd ${WRKSRC}/doc ; \ + for i in ../../exim-texinfo-1.60/doc/* ; do \ + ln -sf $$i ; \ + done ) .include <bsd.port.mk> |