diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2003-11-10 09:26:39 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2003-11-10 09:26:39 +0000 |
commit | 9edb1b2b506e7d9ff7cf40aacf05ac6f742ba0fd (patch) | |
tree | 62c32906dff3312df6c1426dad27eda494bae78c /mail/vpopmail/Makefile | |
parent | 6c8026f9a49c864b5c29c5b718162ffdeb6b3b07 (diff) |
Notes
Diffstat (limited to 'mail/vpopmail/Makefile')
-rw-r--r-- | mail/vpopmail/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mail/vpopmail/Makefile b/mail/vpopmail/Makefile index 61f06c59cdb4..bc1f059f62f3 100644 --- a/mail/vpopmail/Makefile +++ b/mail/vpopmail/Makefile @@ -7,6 +7,7 @@ PORTNAME= vpopmail PORTVERSION= 5.3.29 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -301,13 +302,16 @@ pre-configure: post-install: ${MKDIR} ${PREFIX}/vpopmail/etc - if [ ! -f "${PREFIX}/vpopmail/etc/tcp.smtp" ]; then \ - if [ -f "${VCFGDIR}/tcp.smtp" ]; then \ + if [ ! -e "${PREFIX}/vpopmail/etc/tcp.smtp" ]; then \ + if [ -e "${VCFGDIR}/tcp.smtp" ]; then \ ${INSTALL_DATA} ${VCFGDIR}/tcp.smtp ${PREFIX}/vpopmail/etc/; \ else \ ${TOUCH} ${PREFIX}/vpopmail/etc/tcp.smtp; \ fi; \ fi + if [ ! -e "${PREFIX}/vpopmail/etc/vlimits.default" ]; then \ + ${TOUCH} ${PREFIX}/vpopmail/etc/vlimits.default; \ + fi .if defined(DEFAULT_DOMAIN) ${ECHO_CMD} ${DEFAULT_DOMAIN} > ${PREFIX}/vpopmail/etc/defaultdomain .endif |