diff options
Diffstat (limited to 'meta/recipes-support/rng-tools/rng-tools_6.15.bb')
| -rw-r--r-- | meta/recipes-support/rng-tools/rng-tools_6.15.bb | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/meta/recipes-support/rng-tools/rng-tools_6.15.bb b/meta/recipes-support/rng-tools/rng-tools_6.15.bb new file mode 100644 index 0000000000..c4d616e29b --- /dev/null +++ b/meta/recipes-support/rng-tools/rng-tools_6.15.bb | |||
| @@ -0,0 +1,59 @@ | |||
| 1 | SUMMARY = "Random number generator daemon" | ||
| 2 | DESCRIPTION = "Check and feed random data from hardware device to kernel" | ||
| 3 | AUTHOR = "Philipp Rumpf, Jeff Garzik <jgarzik@pobox.com>, \ | ||
| 4 | Henrique de Moraes Holschuh <hmh@debian.org>" | ||
| 5 | HOMEPAGE = "https://github.com/nhorman/rng-tools" | ||
| 6 | BUGTRACKER = "https://github.com/nhorman/rng-tools/issues" | ||
| 7 | LICENSE = "GPLv2" | ||
| 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
| 9 | DEPENDS = "sysfsutils openssl" | ||
| 10 | |||
| 11 | SRC_URI = "git://github.com/nhorman/rng-tools.git;branch=master;protocol=https \ | ||
| 12 | file://init \ | ||
| 13 | file://default \ | ||
| 14 | file://rngd.service \ | ||
| 15 | " | ||
| 16 | SRCREV = "381f69828b782afda574f259c1b7549f48f9bb77" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/git" | ||
| 19 | |||
| 20 | inherit autotools update-rc.d systemd pkgconfig | ||
| 21 | |||
| 22 | EXTRA_OECONF = "--without-rtlsdr" | ||
| 23 | |||
| 24 | PACKAGECONFIG ??= "libjitterentropy" | ||
| 25 | PACKAGECONFIG:libc-musl = "libargp libjitterentropy" | ||
| 26 | |||
| 27 | PACKAGECONFIG[libargp] = "--with-libargp,--without-libargp,argp-standalone," | ||
| 28 | PACKAGECONFIG[libjitterentropy] = "--enable-jitterentropy,--disable-jitterentropy,libjitterentropy" | ||
| 29 | PACKAGECONFIG[libp11] = "--with-pkcs11,--without-pkcs11,libp11 openssl" | ||
| 30 | PACKAGECONFIG[nistbeacon] = "--with-nistbeacon,--without-nistbeacon,curl libxml2 openssl" | ||
| 31 | |||
| 32 | INITSCRIPT_NAME = "rng-tools" | ||
| 33 | INITSCRIPT_PARAMS = "start 03 2 3 4 5 . stop 30 0 6 1 ." | ||
| 34 | |||
| 35 | SYSTEMD_SERVICE:${PN} = "rngd.service" | ||
| 36 | |||
| 37 | # Refer autogen.sh in rng-tools | ||
| 38 | do_configure:prepend() { | ||
| 39 | cp ${S}/README.md ${S}/README | ||
| 40 | } | ||
| 41 | |||
| 42 | do_install:append() { | ||
| 43 | install -Dm 0644 ${WORKDIR}/default ${D}${sysconfdir}/default/rng-tools | ||
| 44 | install -Dm 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/rng-tools | ||
| 45 | install -Dm 0644 ${WORKDIR}/rngd.service \ | ||
| 46 | ${D}${systemd_system_unitdir}/rngd.service | ||
| 47 | sed -i \ | ||
| 48 | -e 's,@SYSCONFDIR@,${sysconfdir},g' \ | ||
| 49 | -e 's,@SBINDIR@,${sbindir},g' \ | ||
| 50 | ${D}${sysconfdir}/init.d/rng-tools \ | ||
| 51 | ${D}${systemd_system_unitdir}/rngd.service | ||
| 52 | |||
| 53 | if [ "${@bb.utils.contains('PACKAGECONFIG', 'nistbeacon', 'yes', 'no', d)}" = "yes" ]; then | ||
| 54 | sed -i \ | ||
| 55 | -e '/^IPAddressDeny=any/d' \ | ||
| 56 | -e '/^RestrictAddressFamilies=/ s/$/ AF_INET AF_INET6/' \ | ||
| 57 | ${D}${systemd_system_unitdir}/rngd.service | ||
| 58 | fi | ||
| 59 | } | ||
