gentoo/sys-apps/watchdog/watchdog-5.16-r1.ebuild
Arthur Zamarin 0e727a3a16
*/*: unkeyword ~ia64
Change was created by running the following command::

    ekeyword ^ia64 */*/*.ebuild

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2024-09-12 21:37:40 +03:00

46 lines
1.0 KiB
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic systemd toolchain-funcs
DESCRIPTION="A software watchdog and /dev/watchdog daemon"
HOMEPAGE="https://sourceforge.net/projects/watchdog/"
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~m68k ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86"
IUSE="nfs selinux"
DEPEND="nfs? ( net-libs/libtirpc )"
RDEPEND="
${DEPEND}
selinux? ( sec-policy/selinux-watchdog )
"
BDEPEND="
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/${PN}-5.16-implicit-func-decls-musl.patch
)
src_configure() {
if use nfs; then
append-cppflags "$($(tc-getPKG_CONFIG) libtirpc --cflags)"
append-libs "$($(tc-getPKG_CONFIG) libtirpc --libs)"
fi
econf $(use_enable nfs)
}
src_install() {
default
dodoc -r examples
newconfd "${FILESDIR}"/${PN}-conf.d ${PN}
newinitd "${FILESDIR}"/${PN}-init.d-r1 ${PN}
systemd_dounit "${FILESDIR}"/watchdog.service
}