diff options
author | Mark Murray <markm@FreeBSD.org> | 1997-02-26 13:45:02 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 1997-02-26 13:45:02 +0000 |
commit | 7cd2fb7aeb062d2114ce9786fb3def0aa8b1d299 (patch) | |
tree | 683b9013346692a90634eeda2daaa936f7661f68 /mail/exim-old/Makefile | |
parent | Added white space (diff) |
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 '')
-rw-r--r-- | mail/exim-old/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/mail/exim-old/Makefile b/mail/exim-old/Makefile index d1a5d4f9c447..b844be9dd884 100644 --- a/mail/exim-old/Makefile +++ b/mail/exim-old/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> |