From 5b80bfd7bffd4c20d80b7c70a7130529e9a755dd Mon Sep 17 00:00:00 2001 From: ToshikazuOhiwa Date: Mon, 30 Mar 2020 09:24:26 +0900 Subject: agl-basesystem --- .../ntimed/ntimed/use-ldflags.patch | 16 +++++++++ .../recipes-support/ntimed/ntimed_git.bb | 40 ++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 external/meta-openembedded/meta-networking/recipes-support/ntimed/ntimed/use-ldflags.patch create mode 100644 external/meta-openembedded/meta-networking/recipes-support/ntimed/ntimed_git.bb (limited to 'external/meta-openembedded/meta-networking/recipes-support/ntimed') diff --git a/external/meta-openembedded/meta-networking/recipes-support/ntimed/ntimed/use-ldflags.patch b/external/meta-openembedded/meta-networking/recipes-support/ntimed/ntimed/use-ldflags.patch new file mode 100644 index 00000000..87a7778d --- /dev/null +++ b/external/meta-openembedded/meta-networking/recipes-support/ntimed/ntimed/use-ldflags.patch @@ -0,0 +1,16 @@ +Obey LDFLAGS. + +Signed-off-by: Christopher Larson +Upstream-Status: Pending + +--- Ntimed.orig/configure 2015-05-30 11:57:59.927796993 -0700 ++++ Ntimed/configure 2015-05-30 11:58:26.143948894 -0700 +@@ -142,7 +142,7 @@ + + echo + echo "ntimed-client: ${l}" +- echo " \${CC} \${CFLAGS} -o ntimed-client ${l} -lm" ++ echo " \${CC} \${CFLAGS} -o ntimed-client ${l} \${LDFLAGS} -lm" + echo + echo "clean:" + echo " rm -f ${l} ntimed-client" diff --git a/external/meta-openembedded/meta-networking/recipes-support/ntimed/ntimed_git.bb b/external/meta-openembedded/meta-networking/recipes-support/ntimed/ntimed_git.bb new file mode 100644 index 00000000..a749b165 --- /dev/null +++ b/external/meta-openembedded/meta-networking/recipes-support/ntimed/ntimed_git.bb @@ -0,0 +1,40 @@ +SUMMARY = "Network time synchronization software, NTPD replacement" +DESCRIPTION = "This is a preview/early-access/alpha/buzzword-of-the-times \ +release of a new FOSS project written to gradually take over the world of \ +networked timekeeping." +HOMEPAGE = "https://github.com/bsdphk/Ntimed" +SECTION = "net" + +LICENSE = "BSD-2-Clause" +LIC_FILES_CHKSUM = "file://main.c;beginline=2;endline=24;md5=89db8e76f2951f3fad167e7aa9718a44" + +SRC_URI = "git://github.com/bsdphk/Ntimed \ + file://use-ldflags.patch" + +PV = "0.0+git${SRCPV}" +SRCREV = "db0abbb4c80f2ecef6bc5d9639bca5bea28532a2" + +S = "${WORKDIR}/git" + +# use adjtimex on musl +CFLAGS_append_libc-musl = " -Dntp_adjtime=adjtimex" + +EXTRA_OEMAKE = "\ + 'CC=${CC}' \ + 'CFLAGS=${CFLAGS}' \ + 'LDFLAGS=${LDFLAGS}' \ +" + +do_configure () { + sh ${S}/configure +} + +do_install () { + install -D -m 0755 ntimed-client ${D}${sbindir}/ntimed-client +} + +ALLOW_EMPTY_${PN} = "1" +RDEPENDS_${PN} += "ntimed-client" + +PACKAGE_BEFORE_PN += "ntimed-client" +FILES_ntimed-client = "${sbindir}/ntimed-client" -- cgit 1.2.3-korg