Signed-off-by: Franklin S. Cooper Jr <[email protected]> --- .../recipes-daemons/ptpd/ptpd_2.3.0.bb | 30 ++++++++++++++++++++ 1 files changed, 30 insertions(+), 0 deletions(-) create mode 100644 meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb
diff --git a/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb b/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb new file mode 100644 index 0000000..c54f507 --- /dev/null +++ b/meta-arago-extras/recipes-daemons/ptpd/ptpd_2.3.0.bb @@ -0,0 +1,30 @@ +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=4019cad2b3cd55f22ea819ffad6ccd41" + +DEPENDS = "libpcap" + +PR = "r0" + +inherit autotools + +SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-${PV}.tar.gz" + +SRC_URI[md5sum] = "f5e931b4a229705ff0dbdfe22490566b" +SRC_URI[sha256sum] = "1a4e90496f004bfd91657ccc49209101dc25b787e540648c07c0973469f1d8f7" + +S = "${WORKDIR}/ptpd-${PV}" + +EXTRA_OEMAKE = "" + +do_install() { + install -d ${D}${bindir} ${D}${mandir}/man8 + install -m 0755 ${S}/src/ptpd2 ${D}${bindir} + install -m 0644 ${S}/src/ptpd2.8 ${D}${mandir}/man8 +} -- 1.7.0.4 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
