diff options
author | anders <anders@FreeBSD.org> | 2007-06-26 16:08:56 +0800 |
---|---|---|
committer | anders <anders@FreeBSD.org> | 2007-06-26 16:08:56 +0800 |
commit | 8a4bab6784c415c9061a64ff27d0ce06f7406d22 (patch) | |
tree | e6728b08252773551348d9b9ad588b43c2928ba3 | |
parent | 3d758f617d7c381bb40683d0f27e7d610ef4832b (diff) | |
download | freebsd-ports-gnome-8a4bab6784c415c9061a64ff27d0ce06f7406d22.tar.gz freebsd-ports-gnome-8a4bab6784c415c9061a64ff27d0ce06f7406d22.tar.zst freebsd-ports-gnome-8a4bab6784c415c9061a64ff27d0ce06f7406d22.zip |
Add OPTIONS list.
Add knob to choose mbx as default mailbox format, in cclient.
PR: 88941, 88942
Submitted by: Mats Dufberg <mats@dufberg.se>
-rw-r--r-- | mail/cclient/Makefile | 9 | ||||
-rw-r--r-- | mail/imap-uw/Makefile | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/mail/cclient/Makefile b/mail/cclient/Makefile index e57f4caf10cd..0deb781608f3 100644 --- a/mail/cclient/Makefile +++ b/mail/cclient/Makefile @@ -20,6 +20,11 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= anders@FreeBSD.org COMMENT= Mark Crispin's C-client mail access routines +OPTIONS= SSL "Compile with SSL support" on \ + SSL_AND_PLAINTEXT "Allow plain text passwords and SSL" off \ + IPV6 "Support IPv6" on \ + MBX_DEFAULT "Use MBX as default mailbox format" off + USE_LDCONFIG= yes ALL_TARGET= bsf .if defined(WITHOUT_SSL) @@ -53,6 +58,10 @@ post-patch: @${REINPLACE_CMD} -e "s|^IP=4|IP=6|" ${WRKSRC}/Makefile \ ${WRKSRC}/src/osdep/unix/Makefile .endif +.if defined(WITH_MBX_DEFAULT) + @${REINPLACE_CMD} -e "s|^CREATEPROTO=unixproto|CREATEPROTO=mbxproto|" \ + ${WRKSRC}/src/osdep/unix/Makefile +.endif post-configure: @${ECHO_MSG} ">> The c-client shared library will be named ${SHLIBNAME}" diff --git a/mail/imap-uw/Makefile b/mail/imap-uw/Makefile index f0fa403e0cc8..b8f127703b4d 100644 --- a/mail/imap-uw/Makefile +++ b/mail/imap-uw/Makefile @@ -22,6 +22,15 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= anders@FreeBSD.org COMMENT= University of Washington IMAP4rev1/POP2/POP3 mail servers +# This port must have the same SSL settings as mail/cclient, which it depends on +# To make MBX format the default mailbox format, change the settings of cclient + +OPTIONS= SSL "Compile with SSL support" on \ + SSL_AND_PLAINTEXT "Allow plain text passwords and SSL" off \ + DRAC "Dynamically open MTA for relaying" off \ + NETSCAPE_BRAIN_DAMAGE "See Makefile for documentation" off \ + ENTOURAGE_BRAIN_DAMAGE "See Makefile for documentation" off + LIB_DEPENDS= c-client4.8:${PORTSDIR}/mail/cclient .if defined(WITH_DRAC) BUILD_DEPENDS= ${LOCALBASE}/lib/libdrac.a:${PORTSDIR}/mail/drac |