e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
33 lines
828 B
Makefile
33 lines
828 B
Makefile
#############################################################
|
|
#
|
|
# 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
|
|
ifeq ($(BR2_PREFER_STATIC_LIB),y)
|
|
# openssl uses zlib, so we need to explicitly link with it when static
|
|
MSMTP_CONF_ENV += LIBS=-lz
|
|
endif
|
|
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 $(autotools-package))
|