2014-10-06 19:34:57 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# botan
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2017-05-21 20:14:09 +02:00
|
|
|
BOTAN_VERSION = 1.10.16
|
2014-10-06 19:34:57 +02:00
|
|
|
BOTAN_SOURCE = Botan-$(BOTAN_VERSION).tgz
|
2016-07-11 22:18:42 +02:00
|
|
|
BOTAN_SITE = http://botan.randombit.net/releases
|
2017-03-30 15:43:39 +02:00
|
|
|
BOTAN_LICENSE = BSD-2-Clause
|
2014-10-06 19:34:57 +02:00
|
|
|
BOTAN_LICENSE_FILES = doc/license.txt
|
|
|
|
|
|
|
|
BOTAN_INSTALL_STAGING = YES
|
|
|
|
|
|
|
|
BOTAN_CONF_OPTS = \
|
|
|
|
--cpu=$(BR2_ARCH) \
|
|
|
|
--os=linux \
|
|
|
|
--cc=gcc \
|
2015-04-10 17:55:23 +02:00
|
|
|
--cc-bin="$(TARGET_CXX)" \
|
|
|
|
--prefix=/usr
|
2014-10-06 19:34:57 +02:00
|
|
|
|
2014-12-03 22:41:29 +01:00
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
BOTAN_CONF_OPTS += --disable-shared --no-autoload
|
2014-10-06 19:34:57 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
BOTAN_DEPENDENCIES += bzip2
|
|
|
|
BOTAN_CONF_OPTS += --with-bzip2
|
2014-10-06 19:34:57 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_GMP),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
BOTAN_DEPENDENCIES += gmp
|
|
|
|
BOTAN_CONF_OPTS += --with-gnump
|
2014-10-06 19:34:57 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
BOTAN_DEPENDENCIES += openssl
|
|
|
|
BOTAN_CONF_OPTS += --with-openssl
|
2014-10-06 19:34:57 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
2015-03-31 09:21:57 +02:00
|
|
|
BOTAN_DEPENDENCIES += zlib
|
|
|
|
BOTAN_CONF_OPTS += --with-zlib
|
2014-10-06 19:34:57 +02:00
|
|
|
endif
|
|
|
|
|
2017-06-06 16:29:11 +02:00
|
|
|
ifeq ($(BR2_POWERPC_CPU_HAS_ALTIVEC),y)
|
|
|
|
BOTAN_CONF_OPTS += --enable-altivec
|
|
|
|
else
|
|
|
|
BOTAN_CONF_OPTS += --disable-altivec
|
|
|
|
endif
|
|
|
|
|
2014-10-06 19:34:57 +02:00
|
|
|
define BOTAN_CONFIGURE_CMDS
|
2016-10-17 18:05:54 +02:00
|
|
|
(cd $(@D); $(TARGET_MAKE_ENV) ./configure.py $(BOTAN_CONF_OPTS))
|
2014-10-06 19:34:57 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define BOTAN_BUILD_CMDS
|
2016-10-17 18:05:54 +02:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) AR="$(TARGET_AR) crs"
|
2014-10-06 19:34:57 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define BOTAN_INSTALL_STAGING_CMDS
|
2016-10-17 18:05:54 +02:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR="$(STAGING_DIR)/usr" install
|
2014-10-06 19:34:57 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define BOTAN_INSTALL_TARGET_CMDS
|
2016-10-17 18:05:54 +02:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR="$(TARGET_DIR)/usr" install
|
2014-10-06 19:34:57 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(generic-package))
|