mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-07 16:42:06 +00:00
'startline' is not a recognised keyword, it's beginline. ntimed: The new md5 checksum is 89db8e76f2951f3fad167e7aa9718a44 ntimed: Here is the selected license text: vvvvvvvvvvvvvvvvvvvvvvvvvvvv beginline=2 vvvvvvvvvvvvvvvvvvvvvvvvvvvvv * Copyright (c) 2014 Poul-Henning Kamp * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the ... * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ endline=24 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Signed-off-by: André Draszik <andre.draszik@jci.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
41 lines
1.0 KiB
BlitzBasic
41 lines
1.0 KiB
BlitzBasic
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"
|