2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2010-11-02 20:35:35 +01:00
|
|
|
#
|
|
|
|
# rng-tools
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2010-11-02 20:35:35 +01:00
|
|
|
|
2014-11-26 20:01:18 +01:00
|
|
|
RNG_TOOLS_VERSION = 5
|
2012-08-26 01:52:48 +02:00
|
|
|
RNG_TOOLS_SITE = http://downloads.sourceforge.net/project/gkernel/rng-tools/$(RNG_TOOLS_VERSION)
|
2012-12-27 06:39:09 +01:00
|
|
|
RNG_TOOLS_LICENSE = GPLv2
|
|
|
|
RNG_TOOLS_LICENSE_FILES = COPYING
|
2010-11-02 20:35:35 +01:00
|
|
|
|
2014-11-26 20:01:18 +01:00
|
|
|
# Work around for uClibc's lack of argp_*() functions
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
|
|
|
|
RNG_TOOLS_CONF_ENV += LIBS="-largp"
|
|
|
|
RNG_TOOLS_DEPENDENCIES += argp-standalone
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
|
|
|
RNG_TOOLS_DEPENDENCIES += libgcrypt
|
|
|
|
else
|
|
|
|
RNG_TOOLS_CONF_OPTS += --without-libgcrypt
|
|
|
|
endif
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|