Blame view

buildroot/buildroot-2016.08.1/package/openntpd/openntpd.mk 1.13 KB
6b13f685e   김민수   BSP 최초 추가
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
  ################################################################################
  #
  # openntpd
  #
  ################################################################################
  
  OPENNTPD_VERSION = 6.0p1
  OPENNTPD_SITE = http://ftp.openbsd.org/pub/OpenBSD/OpenNTPD
  OPENNTPD_LICENSE = MIT-like, BSD-2c, BSD-3c
  OPENNTPD_LICENSE_FILES = COPYING
  # Ships a beta libtool version hence our patch doesn't apply.
  OPENNTPD_AUTORECONF = YES
  
  # openntpd uses pthread functions for arc4random emulation but forgets
  # to use -pthread
  OPENNTPD_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -pthread"
  
  define OPENNTPD_INSTALL_INIT_SYSTEMD
  	$(INSTALL) -D -m 0644 package/openntpd/ntpd.service \
  		$(TARGET_DIR)/usr/lib/systemd/system/ntpd.service
  	mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
  	ln -fs ../../../../usr/lib/systemd/system/ntpd.service \
  		$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/ntpd.service
  endef
  
  define OPENNTPD_INSTALL_INIT_SYSV
  	$(INSTALL) -m 0755 -D package/openntpd/S49ntp \
  		$(TARGET_DIR)/etc/init.d/S49ntp
  endef
  
  define OPENNTPD_USERS
  	_ntp -1 _ntp -1 * - - - Network Time Protocol daemon
  endef
  
  $(eval $(autotools-package))