diff options
author | jim <jim@FreeBSD.org> | 2001-07-26 15:45:44 +0800 |
---|---|---|
committer | jim <jim@FreeBSD.org> | 2001-07-26 15:45:44 +0800 |
commit | 203305bda8f00ce6a165b92a00877f9e803d0978 (patch) | |
tree | c3fb2053a044da5cbdb3ad01bfb4346ed1d182c4 /mail/mutt-devel | |
parent | b9a1d23b797a53fb40c76c264528ccd28a310141 (diff) | |
download | freebsd-ports-gnome-203305bda8f00ce6a165b92a00877f9e803d0978.tar.gz freebsd-ports-gnome-203305bda8f00ce6a165b92a00877f9e803d0978.tar.zst freebsd-ports-gnome-203305bda8f00ce6a165b92a00877f9e803d0978.zip |
Add three new hooks...
* WITH_MUTT_POP
* WITH_MUTT_IMAP
* WITH_MUTT_POP_IMAP
They replace the --enable-pop and --enable-imap options that were the
defaults. Now you have the choice to build with one or the other, both,
or neither (which is useful for those of us who don't need those
features).
Bump PORTREVISION.
Approved by: maintainer
Diffstat (limited to 'mail/mutt-devel')
-rw-r--r-- | mail/mutt-devel/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/mail/mutt-devel/Makefile b/mail/mutt-devel/Makefile index 9891fd9e64ba..0246a582695c 100644 --- a/mail/mutt-devel/Makefile +++ b/mail/mutt-devel/Makefile @@ -8,6 +8,7 @@ PORTNAME= mutt-devel PORTVERSION= 1.3.20 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.demon.co.uk/pub/mirrors/mutt/devel/ \ ftp://ftp.parodius.com/pub/mutt/devel/ @@ -19,7 +20,7 @@ MAINTAINER= ust@cert.siemens.de DIST_SUBDIR= mutt GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-pop --enable-imap --enable-flock --disable-fcntl \ +CONFIGURE_ARGS= --enable-flock --disable-fcntl \ --with-sharedir=${PREFIX}/share/mutt \ --with-docdir=${PREFIX}/share/doc/mutt \ --sysconfdir=${PREFIX}/etc \ @@ -78,6 +79,15 @@ CONFIGURE_ARGS+= --with-curses=${PREFIX} .if defined(WITH_MUTT_SSL) CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE} .endif +.if defined(WITH_MUTT_POP) +CONFIGURE_ARGS+= --enable-pop +.endif +.if defined(WITH_MUTT_IMAP) +CONFIGURE_ARGS+= --enable-imap +.endif +.if defined(WITH_MUTT_POP_IMAP) +CONFIGURE_ARGS+= --enable-pop --enable-imap +.endif PATCH_DIST_STRIP= -p1 |