Sat Feb 29 05:27:13 2020 UTC ()
Python's only used at buildtime, not runtime.


(dogcow)
diff -r1.222 -r1.223 pkgsrc/mail/mutt/Makefile

cvs diff -r1.222 -r1.223 pkgsrc/mail/mutt/Makefile (expand / switch to unified diff)

--- pkgsrc/mail/mutt/Makefile 2020/02/15 22:54:45 1.222
+++ pkgsrc/mail/mutt/Makefile 2020/02/29 05:27:13 1.223
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile,v 1.222 2020/02/15 22:54:45 tron Exp $ 1# $NetBSD: Makefile,v 1.223 2020/02/29 05:27:13 dogcow Exp $
2 2
3DISTNAME= mutt-1.13.4 3DISTNAME= mutt-1.13.4
4CATEGORIES= mail 4CATEGORIES= mail
5MASTER_SITES= ftp://ftp.mutt.org/pub/mutt/ 5MASTER_SITES= ftp://ftp.mutt.org/pub/mutt/
6 6
7MAINTAINER= tonio@NetBSD.org 7MAINTAINER= tonio@NetBSD.org
8HOMEPAGE= http://www.mutt.org/ 8HOMEPAGE= http://www.mutt.org/
9COMMENT= Text-based MIME mail client with PGP & S/MIME support 9COMMENT= Text-based MIME mail client with PGP & S/MIME support
10LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # or newer 10LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # or newer
11 11
12BUILD_DEPENDS+= docbook-xsl-[0-9]*:../../textproc/docbook-xsl 12BUILD_DEPENDS+= docbook-xsl-[0-9]*:../../textproc/docbook-xsl
13BUILD_DEPENDS+= lynx-[0-9]*:../../www/lynx 13BUILD_DEPENDS+= lynx-[0-9]*:../../www/lynx
14 14
@@ -18,26 +18,27 @@ CONFLICTS+= neomutt-[0-9]* @@ -18,26 +18,27 @@ CONFLICTS+= neomutt-[0-9]*
18 18
19USE_PKGLOCALEDIR= yes 19USE_PKGLOCALEDIR= yes
20USE_TOOLS+= gmake msgfmt perl 20USE_TOOLS+= gmake msgfmt perl
21GNU_CONFIGURE= yes 21GNU_CONFIGURE= yes
22CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} 22CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
23CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/mutt 23CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/mutt
24CONFIGURE_ARGS+= --without-included-gettext 24CONFIGURE_ARGS+= --without-included-gettext
25CONFIGURE_ARGS+= --enable-external-dotlock 25CONFIGURE_ARGS+= --enable-external-dotlock
26CONFIGURE_ARGS+= --enable-pop 26CONFIGURE_ARGS+= --enable-pop
27CONFIGURE_ARGS+= --enable-imap 27CONFIGURE_ARGS+= --enable-imap
28CONFIGURE_ARGS.SunOS+= --disable-filemonitor 28CONFIGURE_ARGS.SunOS+= --disable-filemonitor
29INFO_FILES= yes 29INFO_FILES= yes
30 30
 31PYTHON_FOR_BUILD_ONLY= tool
31REPLACE_PYTHON+= contrib/markdown2html 32REPLACE_PYTHON+= contrib/markdown2html
32 33
33.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly" || ${OPSYS} == "FreeBSD" || ${OPSYS} == "OpenBSD" 34.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly" || ${OPSYS} == "FreeBSD" || ${OPSYS} == "OpenBSD"
34# Force sendmail to /usr/sbin to avoid postfix's 35# Force sendmail to /usr/sbin to avoid postfix's
35# ${LOCALBASE}/sbin/sendmail. Should be enabled on all platforms which 36# ${LOCALBASE}/sbin/sendmail. Should be enabled on all platforms which
36# support mailwrapper. 37# support mailwrapper.
37CONFIGURE_ENV+= SENDMAIL=/usr/sbin/sendmail 38CONFIGURE_ENV+= SENDMAIL=/usr/sbin/sendmail
38.endif 39.endif
39 40
40CONFIGURE_ARGS.SunOS+= --without-wc-funcs 41CONFIGURE_ARGS.SunOS+= --without-wc-funcs
41 42
42# There is a problem using /bin/sh on old NetBSD releases, so use /bin/ksh 43# There is a problem using /bin/sh on old NetBSD releases, so use /bin/ksh
43# there. 44# there.