summaryrefslogtreecommitdiffstats
path: root/package/mutt/mutt.mk
blob: 633b2afc72445389c82cd7ae1f8d52f42b633f91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
################################################################################
#
# mutt
#
################################################################################

MUTT_VERSION = 1.5.23
MUTT_SITE = http://downloads.sourceforge.net/project/mutt/mutt
MUTT_LICENSE = GPLv2+
MUTT_LICENSE_FILES = GPL
MUTT_DEPENDENCIES = ncurses
MUTT_CONF_OPT = --disable-smtp
MUTT_AUTORECONF = YES

ifeq ($(BR2_PACKAGE_LIBICONV),y)
MUTT_DEPENDENCIES += libiconv
MUTT_CONF_OPT += --enable-iconv
endif

ifeq ($(BR2_PACKAGE_MUTT_IMAP),y)
MUTT_CONF_OPT += --enable-imap
else
MUTT_CONF_OPT += --disable-imap
endif

ifeq ($(BR2_PACKAGE_MUTT_POP3),y)
MUTT_CONF_OPT += --enable-pop
else
MUTT_CONF_OPT += --disable-pop
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
MUTT_CONF_OPT += --with-ssl=$(STAGING_DIR)/usr
else
MUTT_CONF_OPT += --without-ssl
endif
else
MUTT_CONF_OPT += --without-ssl
endif

$(eval $(autotools-package))
OpenPOWER on IntegriCloud