Merge pull request #4853 from StevenHessing/noddos
[feed/packages.git] / net / linuxptp / Makefile
1 #
2 # Copyright (C) 2015-2016 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=linuxptp
11 PKG_VERSION:=1.8
12 PKG_RELEASE:=4
13
14 PKG_MAINTAINER:=Wojciech Dubowik <Wojciech.Dubowik@neratec.com>
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
16 PKG_SOURCE_URL:=@SF/$(PKG_NAME)/v$(PKG_VERSION)
17 PKG_HASH:=fa8e00f6ec73cefa7bb313dce7f60dfe5eb9e2bde3353594e9ac18edc93e5165
18
19 PKG_LICENSE:=GPL-2.0
20 PKG_LICENSE_FILES:=COPYING
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/linuxptp
25 SECTION:=net
26 CATEGORY:=Network
27 SUBMENU:=Time Synchronization
28 TITLE:=Linux Precision Time Protocol (PTP) daemon
29 URL:=http://linuxptp.sourceforge.net/
30 DEPENDS:=@!USE_UCLIBC +librt
31 endef
32
33 define Package/linuxptp/description
34 The PTP daemon (PTPd) implements version 2 of the Precision Time Protocol (PTP)
35 as defined by the IEEE 1588-2008 standard.
36 PTP was developed to provide very precise time coordination of LAN connected
37 computers.
38 endef
39
40 EXTRA_CFLAGS += -DHAVE_CLOCK_ADJTIME -DHAVE_POSIX_SPAWN -DHAVE_ONESTEP_SYNC
41
42 MAKE_VARS += \
43 EXTRA_CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS) $(EXTRA_CFLAGS)"
44
45 define Package/linuxptp/install
46 $(INSTALL_DIR) $(1)/usr/sbin
47 $(INSTALL_BIN) $(PKG_BUILD_DIR)/hwstamp_ctl $(1)/usr/sbin/
48 $(INSTALL_BIN) $(PKG_BUILD_DIR)/phc2sys $(1)/usr/sbin/
49 $(INSTALL_BIN) $(PKG_BUILD_DIR)/phc_ctl $(1)/usr/sbin/
50 $(INSTALL_BIN) $(PKG_BUILD_DIR)/pmc $(1)/usr/sbin/
51 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ptp4l $(1)/usr/sbin/
52 $(INSTALL_BIN) $(PKG_BUILD_DIR)/timemaster $(1)/usr/sbin/
53 endef
54
55 $(eval $(call BuildPackage,linuxptp))