3e092163e5
All the packages in this list have the following properties * units are provided by buildroot in the package directory * the SYSTEMD_INSTALL_INIT_HOOK is exactly equivalent to what the [Install] section of the unit does The fix removes the soflinking in the .mk file Signed-off-by: Jérémy Rosen <jeremy.rosen@smile.fr> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# openntpd
|
|
#
|
|
################################################################################
|
|
|
|
OPENNTPD_VERSION = 6.2p3
|
|
OPENNTPD_SITE = http://ftp.openbsd.org/pub/OpenBSD/OpenNTPD
|
|
OPENNTPD_LICENSE = MIT-like, BSD-2-Clause, BSD-3-Clause
|
|
OPENNTPD_LICENSE_FILES = COPYING
|
|
# Need to autoreconf for our libtool patch to apply properly
|
|
OPENNTPD_AUTORECONF = YES
|
|
|
|
# Openntpd searches for tls_config_set_ca_mem which is only available
|
|
# in LibreSSL
|
|
ifeq ($(BR2_PACKAGE_LIBRESSL),y)
|
|
OPENNTPD_DEPENDENCIES += openssl
|
|
endif
|
|
|
|
# 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
|
|
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))
|