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
|
|
|
|
2014-04-13 14:14:16 +02:00
|
|
|
MUTT_VERSION = 1.5.23
|
|
|
|
MUTT_SITE = http://downloads.sourceforge.net/project/mutt/mutt
|
2013-10-14 16:05:38 +02:00
|
|
|
MUTT_LICENSE = GPLv2+
|
|
|
|
MUTT_LICENSE_FILES = GPL
|
2011-10-16 05:04:32 +02:00
|
|
|
MUTT_DEPENDENCIES = ncurses
|
2014-09-27 21:32:44 +02:00
|
|
|
MUTT_CONF_OPTS = --disable-smtp
|
2011-10-16 05:04:32 +02:00
|
|
|
MUTT_AUTORECONF = YES
|
2008-05-11 08:41:33 +02:00
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
ifneq ($(BR2_PACKAGET_MUTT_IMAP)$(BR2_PACKAGE_MUTT_POP3),)
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
|
|
MUTT_DEPENDENCIES += openssl
|
2014-09-27 21:32:44 +02:00
|
|
|
MUTT_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr
|
2014-04-13 14:14:17 +02:00
|
|
|
else
|
2014-09-27 21:32:44 +02:00
|
|
|
MUTT_CONF_OPTS += --without-ssl
|
2014-04-13 14:14:17 +02:00
|
|
|
endif
|
|
|
|
else
|
2014-09-27 21:32:44 +02:00
|
|
|
MUTT_CONF_OPTS += --without-ssl
|
2014-04-13 14:14:17 +02:00
|
|
|
endif
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|