diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2000-04-03 01:26:02 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2000-04-03 01:26:02 +0000 |
commit | d5d98014e6051fbc9362d8fb8e19aa6539088f9a (patch) | |
tree | 4778c85a310cbdae48b3d81b8133977140e4ec35 /mail/postfix26/Makefile | |
parent | 6ef5e2d4d369d7abccf0c25132506084ed378ee6 (diff) |
Upgrade to latest version, fix PR 16472, 16753, 17078 too.
PR: ports/17749
Submitted by: Martti Kuparinen <martti.kuparinen@piuha.net>
Notes
Notes:
svn path=/head/; revision=27296
Diffstat (limited to 'mail/postfix26/Makefile')
-rw-r--r-- | mail/postfix26/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/mail/postfix26/Makefile b/mail/postfix26/Makefile index bc3a5c4c17be..1b2570425812 100644 --- a/mail/postfix26/Makefile +++ b/mail/postfix26/Makefile @@ -6,8 +6,8 @@ # $FreeBSD$ # -DISTNAME= postfix-19991231-pl04 -PKGNAME= postfix-19991231.04 +DISTNAME= postfix-19991231-pl06 +PKGNAME= postfix-19991231.06 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/official/ \ ftp://ftp.snoopy.net/pub/mirrors/postfix/official/ \ @@ -47,7 +47,8 @@ MAN5= access.5 aliases.5 canonical.5 relocated.5 transport.5 virtual.5 MAN8= bounce.8 cleanup.8 defer.8 local.8 master.8 pickup.8 pipe.8 qmgr.8 \ showq.8 smtp.8 smtpd.8 trivial-rewrite.8 error.8 -SHAREMODE= 0644 +SHAREMODE= 0444 +PDOC= ${PREFIX}/share/doc/postfix do-install: @${MKDIR} -m 755 ${PREFIX}/etc/postfix @@ -93,6 +94,10 @@ do-install: ${INSTALL} -C -o root -g wheel -m 0755 ${WRKSRC}/man/man8/$$f \ ${PREFIX}/man/man8/$$f ;\ done + @${INSTALL} -d -m 555 -o ${DOCOWN} -g ${DOCGRP} ${PDOC} + @cd ${WRKSRC} && ${INSTALL_DATA} \ + html/*.html html/*.gif ${PDOC} && \ + ${ECHO_MSG} "Installed HTML documentation in ${PDOC}" @${MKDIR} -m 0755 /var/spool/postfix @${ECHO_MSG} "--------------------------------------------------" @${ECHO_MSG} "- To replace your existing sendmail with postfix -" |