diff options
author | jim <jim@FreeBSD.org> | 2002-03-13 00:25:10 +0800 |
---|---|---|
committer | jim <jim@FreeBSD.org> | 2002-03-13 00:25:10 +0800 |
commit | 237d0ffd499c3053e933850683f7d663ebdf0828 (patch) | |
tree | 1c484032bfd98ed47f10ea84f222436f65b2950d /mail | |
parent | b66a3b81cf725adde3881a29934668400f5ca407 (diff) | |
download | freebsd-ports-gnome-237d0ffd499c3053e933850683f7d663ebdf0828.tar.gz freebsd-ports-gnome-237d0ffd499c3053e933850683f7d663ebdf0828.tar.zst freebsd-ports-gnome-237d0ffd499c3053e933850683f7d663ebdf0828.zip |
1) Rename MUTT_WITH_PGP_OUTLOOK_PATCH to WITH_MUTT_PGP_OUTLOOK_PATCH to
be consistent with the other knobs.
2) Move --enable-pop and --enable-imap up to CONFIGURE_ARGS from where
they were originally defined lower in the Makefile so they can be
overridden by using MUTT_CONFIGURE_ARGS.
3) s/directory/file/ in a comment in the Makefile.
4) Bump PORTREVISION.
3) Submitted by: maintainer
Approved by: maintainer
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mutt-devel/Makefile | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/mail/mutt-devel/Makefile b/mail/mutt-devel/Makefile index 1bef567dd63a..903b5667d633 100644 --- a/mail/mutt-devel/Makefile +++ b/mail/mutt-devel/Makefile @@ -15,7 +15,7 @@ # In addition to the knobs listed below you can enable other configuration # options of mutt by adding them to the MUTT_CONFIGURE_ARGS variable. For # example you could say "MUTT_CONFIGURE_ARGS=--with-homespool=MyMail" to -# configure a different directory for mutt's homespool. +# configure a different file for mutt's homespool. # # The two most important knobs are: # @@ -52,11 +52,11 @@ # WITH_MUTT_RU_PATCH # # If you want to enable the pgp_outlook_compat function for use with pgp define: -# MUTT_WITH_PGP_OUTLOOK_PATCH +# WITH_MUTT_PGP_OUTLOOK_PATCH PORTNAME= mutt-devel PORTVERSION= 1.3.27 -PORTREVISION?= 6 +PORTREVISION?= 7 CATEGORIES+= mail .if defined(WITH_MUTT_NNTP) CATEGORIES+= news @@ -77,7 +77,7 @@ CONFIGURE_ARGS= --enable-flock --disable-fcntl \ --with-sharedir=${PREFIX}/share/mutt \ --with-docdir=${PREFIX}/share/doc/mutt \ --sysconfdir=${PREFIX}/etc --enable-external-dotlock \ - --with-libiconv-prefix=${PREFIX} + --with-libiconv-prefix=${PREFIX} --enable-pop --enable-imap .if defined(MUTT_CONFIGURE_ARGS) CONFIGURE_ARGS+= ${MUTT_CONFIGURE_ARGS} .endif @@ -158,14 +158,13 @@ pre-configure:: LIB_DEPENDS+= sasl.8:${PORTSDIR}/security/cyrus-sasl .endif .if exists(${LOCALBASE}/bin/pgp) -MUTT_WITH_PGP_OUTLOOK_PATCH= yes +WITH_MUTT_PGP_OUTLOOK_PATCH= yes .endif -.if defined(MUTT_WITH_PGP_OUTLOOK_PATCH) +.if defined(WITH_MUTT_PGP_OUTLOOK_PATCH) pre-configure:: ${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-pgp-outlook .endif -CONFIGURE_ARGS+= --enable-pop --enable-imap .if defined(WITH_MUTT_LOCALES_FIX) CONFIGURE_ARGS+= --enable-locales-fix .endif @@ -424,7 +423,7 @@ PLIST_SUB+= SUB_PGP_A="@comment " post-patch:: ${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-nodoc-contrib .endif -.if defined(MUTT_WITH_PGP_OUTLOOK_PATCH) +.if defined(WITH_MUTT_PGP_OUTLOOK_PATCH) PLIST_SUB+= SUB_PGP="" .else PLIST_SUB+= SUB_PGP="@comment " |