msmtp: new package

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Thomas Petazzoni 2012-04-17 05:46:57 +00:00 committed by Peter Korsgaard
parent 7ee5f44839
commit 72713672cc
3 changed files with 39 additions and 0 deletions

View file

@ -483,6 +483,7 @@ source "package/links/Config.in"
source "package/lrzsz/Config.in"
source "package/mii-diag/Config.in"
source "package/mrouted/Config.in"
source "package/msmtp/Config.in"
source "package/mutt/Config.in"
source "package/nbd/Config.in"
source "package/ncftp/Config.in"

10
package/msmtp/Config.in Normal file
View file

@ -0,0 +1,10 @@
config BR2_PACKAGE_MSMTP
bool "msmtp"
help
msmtp is an SMTP client. In the default mode, it transmits a
mail to an SMTP server (for example at a free mail provider)
which takes care of further delivery.
Note that msmtp is licensed under GPLv3.
http://msmtp.sourceforge.net/

28
package/msmtp/msmtp.mk Normal file
View file

@ -0,0 +1,28 @@
#############################################################
#
# msmtp
#
#############################################################
MSMTP_VERSION = 1.4.27
MSMTP_SITE = http://downloads.sourceforge.net/project/msmtp/msmtp/$(MSMTP_VERSION)
MSMTP_SOURCE = msmtp-$(MSMTP_VERSION).tar.bz2
MSMTP_DEPENDENCIES += host-pkg-config
ifeq ($(BR2_PACKAGE_OPENSSL),y)
MSMTP_CONF_OPT += --with-ssl=openssl
MSMTP_DEPENDENCIES += openssl
else ifeq ($(BR2_PACKAGE_GNUTLS),y)
MSMTP_CONF_OPT += --with-ssl=gnutls
MSMTP_DEPENDENCIES += gnutls
else
MSMTP_CONF_OPT += --with-ssl=no
endif
MSMTP_CONF_OPT += \
--without-libidn \
--without-libgsasl \
--without-gnome-keyring
$(eval $(call AUTOTARGETS))