Move all to deprecated folder.
This commit is contained in:
21
deprecated/firmware/buildroot/package/mutt/0001-nodoc.patch
Normal file
21
deprecated/firmware/buildroot/package/mutt/0001-nodoc.patch
Normal file
@@ -0,0 +1,21 @@
|
||||
Disable the documentation build
|
||||
|
||||
The documentation tool is compiled for the target, but executed on the
|
||||
host. We don't bother fixing this, as we don't care of the
|
||||
documentation in Buildroot.
|
||||
|
||||
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
||||
|
||||
Index: mutt-1.5.17+20080114/Makefile.am
|
||||
===================================================================
|
||||
--- mutt-1.5.17+20080114.orig/Makefile.am 2010-05-15 18:15:08.000000000 +0200
|
||||
+++ mutt-1.5.17+20080114/Makefile.am 2010-05-15 18:15:17.000000000 +0200
|
||||
@@ -9,7 +9,7 @@
|
||||
IMAP_INCLUDES = -I$(top_srcdir)/imap
|
||||
endif
|
||||
|
||||
-SUBDIRS = m4 po intl doc contrib $(IMAP_SUBDIR)
|
||||
+SUBDIRS = m4 po intl contrib $(IMAP_SUBDIR)
|
||||
|
||||
bin_SCRIPTS = muttbug flea @SMIMEAUX_TARGET@
|
||||
|
||||
27
deprecated/firmware/buildroot/package/mutt/Config.in
Normal file
27
deprecated/firmware/buildroot/package/mutt/Config.in
Normal file
@@ -0,0 +1,27 @@
|
||||
config BR2_PACKAGE_MUTT
|
||||
bool "mutt"
|
||||
depends on BR2_USE_WCHAR
|
||||
depends on BR2_USE_MMU # fork()
|
||||
select BR2_PACKAGE_NCURSES
|
||||
help
|
||||
Mutt is a sophisticated text-based Mail User Agent (MUA)
|
||||
|
||||
http://www.mutt.org/
|
||||
|
||||
if BR2_PACKAGE_MUTT
|
||||
|
||||
config BR2_PACKAGE_MUTT_IMAP
|
||||
bool "imap"
|
||||
help
|
||||
IMAP support
|
||||
|
||||
config BR2_PACKAGE_MUTT_POP3
|
||||
bool "pop3"
|
||||
help
|
||||
POP3 support
|
||||
|
||||
endif # BR2_PACKAGE_MUTT
|
||||
|
||||
comment "mutt needs a toolchain w/ wchar"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR
|
||||
2
deprecated/firmware/buildroot/package/mutt/mutt.hash
Normal file
2
deprecated/firmware/buildroot/package/mutt/mutt.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 a292ca765ed7b19db4ac495938a3ef808a16193b7d623d65562bb8feb2b42200 mutt-1.5.24.tar.gz
|
||||
74
deprecated/firmware/buildroot/package/mutt/mutt.mk
Normal file
74
deprecated/firmware/buildroot/package/mutt/mutt.mk
Normal file
@@ -0,0 +1,74 @@
|
||||
################################################################################
|
||||
#
|
||||
# mutt
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MUTT_VERSION = 1.5.24
|
||||
MUTT_SITE = https://bitbucket.org/mutt/mutt/downloads
|
||||
MUTT_LICENSE = GPLv2+
|
||||
MUTT_LICENSE_FILES = GPL
|
||||
MUTT_DEPENDENCIES = ncurses
|
||||
MUTT_CONF_OPTS = --disable-smtp
|
||||
MUTT_AUTORECONF = YES
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
||||
MUTT_DEPENDENCIES += libiconv
|
||||
MUTT_CONF_OPTS += --enable-iconv
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBIDN),y)
|
||||
MUTT_DEPENDENCIES += libidn
|
||||
MUTT_CONF_OPTS += --with-idn
|
||||
else
|
||||
MUTT_CONF_OPTS += --without-idn
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_MUTT_IMAP),y)
|
||||
MUTT_CONF_OPTS += --enable-imap
|
||||
else
|
||||
MUTT_CONF_OPTS += --disable-imap
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_MUTT_POP3),y)
|
||||
MUTT_CONF_OPTS += --enable-pop
|
||||
else
|
||||
MUTT_CONF_OPTS += --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_OPTS += --with-ssl=$(STAGING_DIR)/usr
|
||||
else
|
||||
MUTT_CONF_OPTS += --without-ssl
|
||||
endif
|
||||
else
|
||||
MUTT_CONF_OPTS += --without-ssl
|
||||
endif
|
||||
|
||||
# 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
|
||||
|
||||
MUTT_CONF_OPTS += --with-mailpath=/var/mail
|
||||
|
||||
define MUTT_VAR_MAIL
|
||||
ln -sf /tmp $(TARGET_DIR)/var/mail
|
||||
endef
|
||||
MUTT_POST_INSTALL_TARGET_HOOKS += MUTT_VAR_MAIL
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user