97b9fb299f
Do the same as in commit b64a06d7b7
to avoid missing libraries needed by libpcap. Fixes:
http://autobuild.buildroot.net/results/1a1/1a1dadfa2b22074d401b013606f0cede66efe826/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
33 lines
941 B
Makefile
33 lines
941 B
Makefile
################################################################################
|
|
#
|
|
# ptpd2
|
|
#
|
|
################################################################################
|
|
|
|
PTPD2_VERSION = 2.3.0
|
|
PTPD2_SITE = http://downloads.sourceforge.net/project/ptpd/ptpd/$(PTPD2_VERSION)
|
|
PTPD2_SOURCE = ptpd-$(PTPD2_VERSION).tar.gz
|
|
PTPD2_DEPENDENCIES = libpcap
|
|
# configure not shipped
|
|
PTPD2_AUTORECONF = YES
|
|
PTPD2_LICENSE = BSD-2c
|
|
PTPD2_LICENSE_FILES = COPYRIGHT
|
|
|
|
ifeq ($(BR2_PREFER_STATIC_LIB),y)
|
|
PTPD2_CONF_OPT += LIBS="$(shell $(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs)"
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NETSNMP),y)
|
|
PTPD2_CONF_ENV += ac_cv_path_PATH_NET_SNMP_CONFIG=$(STAGING_DIR)/usr/bin/net-snmp-config
|
|
PTPD2_DEPENDENCIES += netsnmp
|
|
else
|
|
PTPD2_CONF_OPT += --disable-snmp
|
|
endif
|
|
|
|
define PTPD2_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 755 -D package/ptpd2/S65ptpd2 \
|
|
$(TARGET_DIR)/etc/init.d/S65ptpd2
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|