2018-12-02 12:30:27 +01:00
|
|
|
# $NetBSD: Makefile,v 1.204 2018/12/02 11:30:27 tron Exp $
|
2001-06-20 09:31:58 +02:00
|
|
|
|
2018-12-02 12:30:27 +01:00
|
|
|
DISTNAME= mutt-1.11.1
|
2001-06-20 09:31:58 +02:00
|
|
|
CATEGORIES= mail
|
2018-05-20 09:54:23 +02:00
|
|
|
MASTER_SITES= ftp://ftp.mutt.org/pub/mutt/
|
2001-06-20 09:31:58 +02:00
|
|
|
|
2015-09-03 16:49:02 +02:00
|
|
|
MAINTAINER= tonio@NetBSD.org
|
2001-06-20 09:31:58 +02:00
|
|
|
HOMEPAGE= http://www.mutt.org/
|
2015-09-03 16:49:02 +02:00
|
|
|
COMMENT= Text-based MIME mail client with PGP & S/MIME support
|
|
|
|
LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # or newer
|
1998-02-02 11:48:30 +01:00
|
|
|
|
2017-10-10 10:18:21 +02:00
|
|
|
CONFLICTS+= neomutt-[0-9]*
|
|
|
|
|
2017-05-31 09:52:00 +02:00
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
|
|
USE_TOOLS+= gmake msgfmt perl
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|
|
|
|
CONFIGURE_ARGS+= --with-docdir=${PREFIX}/share/doc/mutt
|
|
|
|
CONFIGURE_ARGS+= --without-included-gettext
|
|
|
|
CONFIGURE_ARGS+= --enable-external-dotlock
|
|
|
|
CONFIGURE_ARGS+= --enable-pop
|
|
|
|
CONFIGURE_ARGS+= --enable-imap
|
mutt: Update to version 1.11.0
Changes since version 1.10.1:
+ inotify is used for local mailbox monitoring on Linux. Configuration flag
--disable-filemonitor turns this off.
+ OAUTHBEARER support for IMAP, SMTP and POP via
$imap_oauth_refresh_command, $smtp_oauth_refresh_command, and
$pop_oauth_refresh_command.
! $pgp_timeout and $smime_timeout support 32-bit numbers.
+ <check-stats> manually updates mailbox statistics, the same way
$mail_check_stats does when set.
! Thread limited views, e.g. ~(pattern), now show new mail as it arrives.
! Command line argument -z and -Z options also work for IMAP mailboxes.
+ $imap_condstore and $imap_qresync enable IMAP CONDSTORE and QRESYNC
support, respectively. QRESYNC should provide much faster mailbox opening.
! $abort_noattach skips quoted lines (as defined by $quote_regexp and
$smileys).
! Initial IMAP header downloading can be aborted with ctrl-c.
+ <compose-to-sender> composes a message to the sender of the selected
message, in the index or attachment menu.
! Address book queries ($query_format) now support multibyte characters.
+ Finnish translation.
! pgpring has been renamed to mutt_pgpring.
! Certificate prompts show sha-256 instead of md5 fingerprints.
! Non-threaded $sort_aux "reverse-" settings now work properly.
+ The manual can be generated and installed in GNU Info format.
+ index-format-hook and the new %@name@ expando for $index_format enable
dynamic index formats using pattern matching against the current message.
This can be used, for example, to format dates based on the age of
the message.
! Relative date matching allows hour, minute, and second units: HMS.
2018-11-26 13:26:19 +01:00
|
|
|
INFO_FILES= yes
|
2017-05-31 09:52:00 +02:00
|
|
|
|
|
|
|
.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly" || ${OPSYS} == "FreeBSD" || ${OPSYS} == "OpenBSD"
|
|
|
|
# Force sendmail to /usr/sbin to avoid postfix's
|
|
|
|
# ${LOCALBASE}/sbin/sendmail. Should be enabled on all platforms which
|
|
|
|
# support mailwrapper.
|
|
|
|
CONFIGURE_ENV+= SENDMAIL=/usr/sbin/sendmail
|
|
|
|
.endif
|
|
|
|
|
|
|
|
CONFIGURE_ARGS.SunOS+= --without-wc-funcs
|
|
|
|
|
|
|
|
# There is a problem using /bin/sh on old NetBSD releases, so use /bin/ksh
|
|
|
|
# there.
|
|
|
|
#
|
|
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-1.[0-5]*-*)
|
|
|
|
CONFIGURE_ARGS+= --with-exec-shell=/bin/ksh
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include "options.mk"
|
|
|
|
|
|
|
|
LDFLAGS+= ${_STRIPFLAG_CC}
|
|
|
|
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/mutt
|
|
|
|
EGDIR= ${PREFIX}/share/examples/mutt
|
|
|
|
CONF_FILES= ${EGDIR}/Muttrc ${PKG_SYSCONFDIR}/Muttrc
|
|
|
|
CONF_FILES+= ${EGDIR}/mime.types ${PKG_SYSCONFDIR}/mime.types
|
|
|
|
FILES_SUBST+= DOCDIR=${DOCDIR}
|
|
|
|
INSTALLATION_DIRS+= ${DOCDIR} ${EGDIR}
|
|
|
|
|
|
|
|
SUBST_CLASSES+= paths
|
|
|
|
SUBST_FILES.paths= doc/Muttrc
|
|
|
|
SUBST_VARS.paths+= DOCDIR PREFIX
|
|
|
|
SUBST_STAGE.paths= pre-configure
|
|
|
|
|
|
|
|
SPECIAL_PERMS+= bin/mutt_dotlock ${REAL_ROOT_USER} mail 2551
|
|
|
|
INSTALL_MAKE_FLAGS= ${MAKE_FLAGS} sysconfdir=${EGDIR}
|
|
|
|
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
|
|
.include "../../textproc/libxslt/xsltproc-nonet.mk"
|
2002-12-03 22:21:57 +01:00
|
|
|
|
2000-07-28 12:33:56 +02:00
|
|
|
.include "../../mk/bsd.pkg.mk"
|