diff options
author | jim <jim@FreeBSD.org> | 2002-01-02 11:39:09 +0800 |
---|---|---|
committer | jim <jim@FreeBSD.org> | 2002-01-02 11:39:09 +0800 |
commit | f4b12aff781b0b9ec10645078d8aab84be1a8a06 (patch) | |
tree | 568ced0dcb644dfdc5ec806c9101782fc23b462d /mail/mutt-devel/Makefile | |
parent | 09165e98e44fa03e8c88fe063aa428c70aa9e9ab (diff) | |
download | freebsd-ports-gnome-f4b12aff781b0b9ec10645078d8aab84be1a8a06.tar.gz freebsd-ports-gnome-f4b12aff781b0b9ec10645078d8aab84be1a8a06.tar.zst freebsd-ports-gnome-f4b12aff781b0b9ec10645078d8aab84be1a8a06.zip |
Fix a newly found security flaw.
Submitted by: maintainer
Diffstat (limited to 'mail/mutt-devel/Makefile')
-rw-r--r-- | mail/mutt-devel/Makefile | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/mail/mutt-devel/Makefile b/mail/mutt-devel/Makefile index 3b4d93e776b7..1338b5b3b909 100644 --- a/mail/mutt-devel/Makefile +++ b/mail/mutt-devel/Makefile @@ -8,7 +8,7 @@ PORTNAME= mutt-devel PORTVERSION= 1.3.24 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES+= mail .if defined(WITH_MUTT_NNTP) CATEGORIES+= news @@ -89,12 +89,10 @@ USE_OPENSSL= yes BUILD_DEPENDS+= sgmlfmt:${PORTSDIR}/textproc/sgmlformat .endif .if defined(WITH_MUTT_NNTP) -.if ! exists(${LOCALBASE}/bin/inews) -BUILD_DEPENDS+= nn-inews:${PORTSDIR}/news/nn +BUILD_DEPENDS+= ${LOCALBASE}/news/bin/inews:${PORTSDIR}/news/inn pre-configure:: ${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-inews .endif -.endif .if defined(WITH_MUTT_CYRUS_SASL) LIB_DEPENDS+= sasl.8:${PORTSDIR}/security/cyrus-sasl .endif @@ -813,5 +811,14 @@ post-install: ${INSTALL_MAN} ${WRKSRC}/doc/*.latin1 ${PREFIX}/share/doc/mutt .endif .endif +.if defined(WITH_MUTT_NNTP) + @${ECHO} + @${ECHO} "------------------------------------------------" + @${ECHO} "Be sure to define NNTPSERVER in your environment" + @${ECHO} "and to be part of the group news in /etc/group" + @${ECHO} "if you want to post news with mutt" + @${ECHO} "------------------------------------------------" + @${ECHO} +.endif .include <bsd.port.post.mk> |