2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2007-09-02 22:53:38 +02:00
|
|
|
#
|
|
|
|
# mutt
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2007-09-02 22:53:38 +02:00
|
|
|
|
2021-07-27 12:22:46 +02:00
|
|
|
MUTT_VERSION = 2.1.1
|
2015-10-02 19:11:13 +02:00
|
|
|
MUTT_SITE = https://bitbucket.org/mutt/mutt/downloads
|
2017-03-30 15:43:32 +02:00
|
|
|
MUTT_LICENSE = GPL-2.0+
|
2013-10-14 16:05:38 +02:00
|
|
|
MUTT_LICENSE_FILES = GPL
|
2021-01-17 17:41:19 +01:00
|
|
|
MUTT_CPE_ID_VENDOR = mutt
|
2019-01-14 21:25:41 +01:00
|
|
|
MUTT_DEPENDENCIES = ncurses
|
2017-04-19 11:25:51 +02:00
|
|
|
MUTT_CONF_OPTS = --disable-doc --disable-smtp
|
2020-06-20 00:11:49 +02:00
|
|
|
|
2021-08-06 19:26:38 +02:00
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
|
|
|
MUTT_CONF_ENV += LIBS=-latomic
|
|
|
|
endif
|
|
|
|
|
2014-04-13 14:14:17 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
|
|
|
MUTT_DEPENDENCIES += libiconv
|
2014-09-27 21:32:44 +02:00
|
|
|
MUTT_CONF_OPTS += --enable-iconv
|
2014-04-13 14:14:17 +02:00
|
|
|
endif
|
|
|
|
|
2018-07-23 20:17:13 +02:00
|
|
|
# Both options can't be selected at the same time so prefer libidn2
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBIDN2),y)
|
|
|
|
MUTT_DEPENDENCIES += libidn2
|
|
|
|
MUTT_CONF_OPTS += --with-idn2 --without-idn
|
|
|
|
else ifeq ($(BR2_PACKAGE_LIBIDN),y)
|
2016-02-21 18:34:59 +01:00
|
|
|
MUTT_DEPENDENCIES += libidn
|
2018-07-23 20:17:13 +02:00
|
|
|
MUTT_CONF_OPTS += --with-idn --without-idn2
|
2016-02-21 18:34:59 +01:00
|
|
|
else
|
2018-07-23 20:17:13 +02:00
|
|
|
MUTT_CONF_OPTS += --without-idn --without-idn2
|
2016-02-21 18:34:59 +01:00
|
|
|
endif
|
|
|
|
|
2021-01-30 14:42:44 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBGPGME),y)
|
|
|
|
MUTT_DEPENDENCIES += libgpgme
|
|
|
|
MUTT_CONF_OPTS += \
|
|
|
|
--enable-gpgme \
|
|
|
|
--with-gpgme-prefix=$(STAGING_DIR)/usr
|
|
|
|
else
|
|
|
|
MUTT_CONF_OPTS += --disable-gpgme
|
|
|
|
endif
|
|
|
|
|
2014-04-13 14:14:17 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_MUTT_IMAP),y)
|
2014-09-27 21:32:44 +02:00
|
|
|
MUTT_CONF_OPTS += --enable-imap
|
2014-04-13 14:14:17 +02:00
|
|
|
else
|
2014-09-27 21:32:44 +02:00
|
|
|
MUTT_CONF_OPTS += --disable-imap
|
2014-04-13 14:14:17 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_MUTT_POP3),y)
|
2014-09-27 21:32:44 +02:00
|
|
|
MUTT_CONF_OPTS += --enable-pop
|
2014-04-13 14:14:17 +02:00
|
|
|
else
|
2014-09-27 21:32:44 +02:00
|
|
|
MUTT_CONF_OPTS += --disable-pop
|
2014-04-13 14:14:17 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
# SSL support is only used by imap or pop3 module
|
2020-12-23 11:59:48 +01:00
|
|
|
ifneq ($(BR2_PACKAGE_MUTT_IMAP)$(BR2_PACKAGE_MUTT_POP3),)
|
2014-04-13 14:14:17 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
|
|
MUTT_DEPENDENCIES += openssl
|
2020-12-23 11:59:50 +01:00
|
|
|
MUTT_CONF_OPTS += \
|
|
|
|
--without-gnutls \
|
|
|
|
--with-ssl=$(STAGING_DIR)/usr
|
|
|
|
else ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
|
|
MUTT_DEPENDENCIES += gnutls
|
|
|
|
MUTT_CONF_OPTS += \
|
|
|
|
--with-gnutls=$(STAGING_DIR)/usr \
|
|
|
|
--without-ssl
|
2014-04-13 14:14:17 +02:00
|
|
|
else
|
2020-12-23 11:59:50 +01:00
|
|
|
MUTT_CONF_OPTS += \
|
|
|
|
--without-gnutls \
|
|
|
|
--without-ssl
|
2014-04-13 14:14:17 +02:00
|
|
|
endif
|
|
|
|
else
|
2020-12-23 11:59:50 +01:00
|
|
|
MUTT_CONF_OPTS += \
|
|
|
|
--without-gnutls \
|
|
|
|
--without-ssl
|
2014-04-13 14:14:17 +02:00
|
|
|
endif
|
|
|
|
|
2020-01-13 20:39:37 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_SQLITE),y)
|
|
|
|
MUTT_DEPENDENCIES += sqlite
|
|
|
|
MUTT_CONF_OPTS += --with-sqlite3
|
|
|
|
else
|
|
|
|
MUTT_CONF_OPTS += --without-sqlite3
|
|
|
|
endif
|
|
|
|
|
2020-12-23 11:59:49 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
|
|
MUTT_DEPENDENCIES += zlib
|
|
|
|
MUTT_CONF_OPTS += --with-zlib=$(STAGING_DIR)/usr
|
|
|
|
else
|
|
|
|
MUTT_CONF_OPTS += --without-zlib
|
|
|
|
endif
|
|
|
|
|
2014-11-16 23:08:51 +01:00
|
|
|
# Avoid running tests to check for:
|
|
|
|
# - target system is *BSD
|
|
|
|
# - C99 conformance (snprintf, vsnprintf)
|
|
|
|
# - behaviour of the regex library
|
|
|
|
# - if mail spool directory is world/group writable
|
|
|
|
# - we have a working libiconv
|
|
|
|
MUTT_CONF_ENV += \
|
|
|
|
mutt_cv_bsdish=no \
|
|
|
|
mutt_cv_c99_snprintf=yes \
|
|
|
|
mutt_cv_c99_vsnprintf=yes \
|
|
|
|
mutt_cv_regex_broken=no \
|
|
|
|
mutt_cv_worldwrite=yes \
|
|
|
|
mutt_cv_groupwrite=yes \
|
|
|
|
mutt_cv_iconv_good=yes \
|
|
|
|
mutt_cv_iconv_nontrans=no
|
|
|
|
|
2014-11-29 11:55:56 +01:00
|
|
|
MUTT_CONF_OPTS += --with-mailpath=/var/mail
|
|
|
|
|
|
|
|
define MUTT_VAR_MAIL
|
2017-08-07 19:54:14 +02:00
|
|
|
mkdir -p $(TARGET_DIR)/var
|
2014-11-29 11:55:56 +01:00
|
|
|
ln -sf /tmp $(TARGET_DIR)/var/mail
|
|
|
|
endef
|
|
|
|
MUTT_POST_INSTALL_TARGET_HOOKS += MUTT_VAR_MAIL
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|