2013-10-14 15:47:15 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
2014-06-24 09:34:20 +02:00
|
|
|
# snmppp
|
2013-10-14 15:47:15 +02:00
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2014-03-05 13:50:06 +01:00
|
|
|
SNMPPP_VERSION = 3.3.4
|
2014-04-07 00:20:03 +02:00
|
|
|
SNMPPP_SOURCE = snmp++-$(SNMPPP_VERSION).tar.gz
|
2013-10-14 15:47:15 +02:00
|
|
|
SNMPPP_SITE = http://www.agentpp.com
|
2014-04-07 00:20:05 +02:00
|
|
|
SNMPPP_DEPENDENCIES = host-pkgconf
|
2013-10-14 15:47:15 +02:00
|
|
|
SNMPPP_INSTALL_STAGING = YES
|
|
|
|
# no configure script in tarball
|
|
|
|
SNMPPP_AUTORECONF = YES
|
2014-04-07 00:20:04 +02:00
|
|
|
SNMPPP_CONF_OPT = $(if $(BR2_PACKAGE_SNMPPP_LOGGING),--enable-logging,--disable-logging)
|
2013-10-14 15:47:15 +02:00
|
|
|
SNMPPP_LICENSE = SNMP++
|
2013-12-27 12:29:14 +01:00
|
|
|
SNMPPP_LICENSE_FILES = src/v3.cpp
|
2013-10-14 15:47:15 +02:00
|
|
|
|
2014-04-07 00:20:05 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_SNMPPP_SNMPV3),y)
|
|
|
|
SNMPPP_CONF_OPT += --enable-snmpv3
|
|
|
|
SNMPPP_DEPENDENCIES += openssl
|
|
|
|
else
|
|
|
|
SNMPPP_CONF_OPT += --disable-snmpv3
|
|
|
|
endif
|
|
|
|
|
2013-10-14 15:47:15 +02:00
|
|
|
$(eval $(autotools-package))
|