ptpd: update to 2.2.0

ptpd: update to 2.2.0

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Joe MacDonald <joe.macdonald@windriver.com>
This commit is contained in:
jackie huang
2012-09-29 07:52:11 +00:00
committed by Joe MacDonald
parent b865426672
commit 17119081f9
3 changed files with 125 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
Patch from http://patch-tracker.debian.org/package/ptpd
Description: Executable name ptpd
This patch adjusts the binary executable to be called ptpd instead of ptpd2.
Similarly, the man page name is adjusted.
Author: Roland Stigge <stigge@antcom.de>
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
src/Makefile | 4 ++--
src/ptpd2.8 | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/Makefile b/src/Makefile
index dbbe525..a672625 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,4 +1,4 @@
-# Makefile for ptpd2
+# Makefile for ptpd
#
# Compile time defines:
@@ -42,7 +42,7 @@ CFLAGS += -DPTP_EXPERIMENTAL
LDFLAGS+= -lm -lrt
-PROG = ptpd2
+PROG = ptpd
SRCS = ptpd.c arith.c bmc.c protocol.c display.c\
dep/msg.c dep/net.c dep/servo.c dep/startup.c dep/sys.c dep/timer.c
diff --git a/src/ptpd2.8 b/src/ptpd2.8
index c6100f4..21f1906 100644
--- a/src/ptpd2.8
+++ b/src/ptpd2.8
@@ -1,9 +1,9 @@
.\" -*- nroff -*"
-.TH ptpd2 8 "January, 2012" "version 2.2.0" "Precision Time Protocol daemon"
+.TH ptpd 8 "January, 2012" "version 2.2.0" "Precision Time Protocol daemon"
.SH NAME
-ptpd2 \- Precision Time Protocol daemon (1588-2008)
+ptpd \- Precision Time Protocol daemon (1588-2008)
.SH SYNOPSIS
-.B ptpd2
+.B ptpd
[?]
[-B]
[-c]
@@ -182,7 +182,7 @@ run as master without NTP
set an initial delay request value
.TP
.B \-L
-enable running multiple ptpd2 daemons
+enable running multiple ptpd daemons
.TP
.B \-j
turn off IGMP refresh messages
--
1.7.4

View File

@@ -0,0 +1,37 @@
Patch from http://patch-tracker.debian.org/package/ptpd
Description: Fix ld --as-needed
This patch fixes the order of gcc arguments to fix ld --as-needed
Author: Roland Stigge <stigge@antcom.de>
Bug-Debian: http://bugs.debian.org/607583
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
src/Makefile | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Makefile b/src/Makefile
index a672625..88a2fc8 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -40,7 +40,7 @@ CFLAGS += -DDBG_SIGUSR2_CHANGE_DEBUG
CFLAGS += -DPTP_EXPERIMENTAL
-LDFLAGS+= -lm -lrt
+LIBS += -lm -lrt
PROG = ptpd
SRCS = ptpd.c arith.c bmc.c protocol.c display.c\
@@ -63,7 +63,7 @@ TAGFILES = GPATH GRTAGS GSYMS GTAGS cscope.in.out cscope.out cscope.po.out
all: $(PROG)
$(PROG): $(OBJS)
- $(CC) -o $@ $(OBJS) $(LDFLAGS)
+ $(CC) -o $@ $(OBJS) $(LDFLAGS) $(LIBS)
$(OBJS): $(HDRS)
--
1.7.4

View File

@@ -0,0 +1,27 @@
SUMMARY = "The PTP daemon (PTPd)"
DESCRIPTION = "The PTP daemon (PTPd) implements the Precision Time protocol (PTP) as \
defined by the relevant IEEE 1588 standard. PTP Version 1 implements IEEE-1588-2002, \
and PTP Version 2 implements IEEE-1588-2008. PTP was developed to provide very precise \
time coordination of LAN connected computers."
HOMEPAGE = "http://sourceforge.net/projects/ptpd"
SECTION = "network"
LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://../COPYRIGHT;md5=3d8ac2c46c116bce2d2ad838b6cf3491"
SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-${PV}.tar.gz \
file://adjust-daemon-name.patch;striplevel=2 \
file://ld-as-needed.patch;striplevel=2 \
"
SRC_URI[md5sum] = "c63a3a149d30c710773ccb02df5782a3"
SRC_URI[sha256sum] = "f2266a22db84318d8b9ce266ea83772c03438c31f4993fa9643fa675a07c26b4"
S = "${WORKDIR}/ptpd-${PV}/src"
EXTRA_OEMAKE = ""
do_install() {
install -d ${D}${bindir} ${D}${mandir}/man8
install -m 0755 ptpd ${D}${bindir}
install -m 0644 ptpd2.8 ${D}${mandir}/man8
}