b3dd9a4b88
This commit switches to use the new gettext logic, which involves: - using TARGET_NLS_DEPENDENCIES instead of hand-encoded dependencies on gettext/host-gettext - dropping BR2_PACKAGE_GETTEXT selection Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
746 B
Makefile
24 lines
746 B
Makefile
################################################################################
|
|
#
|
|
# tpm-tools
|
|
#
|
|
################################################################################
|
|
|
|
TPM_TOOLS_VERSION = 1.3.8
|
|
TPM_TOOLS_SITE = http://downloads.sourceforge.net/project/trousers/tpm-tools/$(TPM_TOOLS_VERSION)
|
|
TPM_TOOLS_STRIP_COMPONENTS = 2
|
|
TPM_TOOLS_LICENSE = Common Public License Version 1.0
|
|
TPM_TOOLS_LICENSE_FILES = LICENSE
|
|
TPM_TOOLS_DEPENDENCIES = trousers openssl $(TARGET_NLS_DEPENDENCIES)
|
|
# configure.in and lib/Makefile.am is patched
|
|
TPM_TOOLS_AUTORECONF = YES
|
|
TPM_TOOLS_GETTEXTIZE = YES
|
|
|
|
TPM_TOOLS_CONF_OPTS = --disable-pkcs11-support
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
|
TPM_TOOLS_CONF_ENV += LIBS='-liconv'
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|