diff options
author | anders <anders@FreeBSD.org> | 2004-06-04 22:25:10 +0800 |
---|---|---|
committer | anders <anders@FreeBSD.org> | 2004-06-04 22:25:10 +0800 |
commit | b708ebd145b310434e81a042bcb9e9dee37156d9 (patch) | |
tree | 98b585dfc5c0e1032dcf8e2a6ad0e979adc28e00 /mail/imap-uw/Makefile | |
parent | 5fc42a079e5d53923a6c2a1dc215a347328130a5 (diff) | |
download | freebsd-ports-gnome-b708ebd145b310434e81a042bcb9e9dee37156d9.tar.gz freebsd-ports-gnome-b708ebd145b310434e81a042bcb9e9dee37156d9.tar.zst freebsd-ports-gnome-b708ebd145b310434e81a042bcb9e9dee37156d9.zip |
Update to imap-2004.
Adds support for IPv6 amongst other things.
Install docs in DOCSDIR.
PR: 66518
Submitted by: Christian Kratzer <ck@cksoft.de>
Diffstat (limited to 'mail/imap-uw/Makefile')
-rw-r--r-- | mail/imap-uw/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/mail/imap-uw/Makefile b/mail/imap-uw/Makefile index 2c5d8b9e023e..4d0797a8c02c 100644 --- a/mail/imap-uw/Makefile +++ b/mail/imap-uw/Makefile @@ -6,9 +6,9 @@ # PORTNAME= imap -PORTVERSION= 2002d +PORTVERSION= 2004 PORTEPOCH= 1 -CATEGORIES= mail +CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.cac.washington.edu/imap/%SUBDIR%/ \ ftp://ftp.nuug.no/pub/anders/distfiles/%SUBDIR%/ \ http://atreides.freenix.no/~anders/%SUBDIR%/ \ @@ -26,6 +26,7 @@ LIB_DEPENDS= c-client4.8:${PORTSDIR}/mail/cclient BUILD_DEPENDS= ${LOCALBASE}/lib/libdrac.a:${PORTSDIR}/mail/drac .endif +DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} WRKSRC= ${WRKDIR}/${DISTNAME} MAN1= dmail.1 mailutil.1 tmail.1 @@ -102,6 +103,11 @@ post-install: @${ECHO} "imaps stream tcp nowait root ${PREFIX}/libexec/imapd imapd" @${ECHO} "================================================================================" .endif +.if !defined(NOPORTDOCS) + ${MKDIR} -m 0755 -p ${DOCSDIR} + @${TAR} -C ${WRKSRC}/docs -cf - . | \ + (umask 022; ${TAR} -C ${DOCSDIR} -xf -) +.endif cert: @${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/certs |