From 491e08d355107e0285d1345c5d1ed895cab524c4 Mon Sep 17 00:00:00 2001 From: Adrian Dudau Date: Thu, 26 Jun 2014 14:21:06 +0200 Subject: initial commit for Enea Linux 4.0 Migrated from the internal git server on the daisy-enea branch Signed-off-by: Adrian Dudau --- .../ptpd/ptpd-2.2.0/ld-as-needed.patch | 37 ++++++++++++++++++++++ meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb | 28 ++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 meta-networking/recipes-daemons/ptpd/ptpd-2.2.0/ld-as-needed.patch create mode 100644 meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb (limited to 'meta-networking/recipes-daemons/ptpd') diff --git a/meta-networking/recipes-daemons/ptpd/ptpd-2.2.0/ld-as-needed.patch b/meta-networking/recipes-daemons/ptpd/ptpd-2.2.0/ld-as-needed.patch new file mode 100644 index 0000000000..7d5251be3d --- /dev/null +++ b/meta-networking/recipes-daemons/ptpd/ptpd-2.2.0/ld-as-needed.patch @@ -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 +Bug-Debian: http://bugs.debian.org/607583 + +Signed-off-by: Jackie Huang +--- + 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 + diff --git a/meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb b/meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb new file mode 100644 index 0000000000..f2e895d1ca --- /dev/null +++ b/meta-networking/recipes-daemons/ptpd/ptpd_2.2.0.bb @@ -0,0 +1,28 @@ +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" + +PR = "r1" + +SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-${PV}.tar.gz \ + 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 ptpd2 ${D}${bindir} + install -m 0644 ptpd2.8 ${D}${mandir}/man8 +} -- cgit v1.2.3-54-g00ecf