hc
2023-11-20 2e7bd41e4e8ab3d1efdabd9e263a2f7fe79bff8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
################################################################################
#
# ptpd2
#
################################################################################
 
PTPD2_VERSION = ptpd-2.3.1
PTPD2_SITE = $(call github,ptpd,ptpd,$(PTPD2_VERSION))
PTPD2_DEPENDENCIES = libpcap
PTPD2_CONF_OPTS = --with-pcap-config=$(STAGING_DIR)/usr/bin/pcap-config
# configure not shipped
PTPD2_AUTORECONF = YES
PTPD2_LICENSE = BSD-2-Clause
PTPD2_LICENSE_FILES = COPYRIGHT
 
ifeq ($(BR2_STATIC_LIBS),y)
PTPD2_CONF_OPTS += LIBS="`$(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_OPTS += --disable-snmp
endif
 
# GCC bug with Os/O1/O2/O3
# internal compiler error: in gen_add2_insn, at optabs.c:4454
ifeq ($(BR2_bfin),y)
PTPD2_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -O0"
endif
 
define PTPD2_INSTALL_INIT_SYSV
   $(INSTALL) -m 755 -D package/ptpd2/S65ptpd2 \
       $(TARGET_DIR)/etc/init.d/S65ptpd2
endef
 
define PTPD2_INSTALL_INIT_SYSTEMD
   $(INSTALL) -D -m 644 package/ptpd2/ptpd2.service \
       $(TARGET_DIR)/usr/lib/systemd/system/ptpd2.service
   mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
   ln -sf ../../../../usr/lib/systemd/system/ptpd2.service \
       $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/ptpd2.service
endef
 
$(eval $(autotools-package))