mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
sys-apps/watchdog: Bump to version 5.16
Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST watchdog-5.15.tar.gz 228132 BLAKE2B 040badcf66f048e2873c335a4dd1b5dad6716c61534322c0c92dad2238049555af40e92612a260507fddd4c284d7ccb5d362dc1660084fd0a7db2c522b1ea323 SHA512 a675cfadf3296d583b9163193297038fb19459daf7c6681289392d613e775e75b7afd42a3e01b136a955f25b2f45818033b56e10de9050075d7dc015535a6e75
|
||||
DIST watchdog-5.16.tar.gz 203910 BLAKE2B 517f2f8085829e5c5ff576f1dff920a2667d0e96a71dcbcebf381ccf349e95dfb0b7b598b565eda4cc8ec31f5f34e367dd719eeaf522cdee074c3bc23589dfb2 SHA512 1c9c921570ec7ddc3e4ff88b2029f1c3865277e547fb8970575df4b61fdf1f06f443f49ad09f11c29d913ca7d6ab05c5b19ec049ac218a8bcebd20b1bf5f0bbd
|
||||
|
||||
38
sys-apps/watchdog/watchdog-5.16.ebuild
Normal file
38
sys-apps/watchdog/watchdog-5.16.ebuild
Normal file
@@ -0,0 +1,38 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit flag-o-matic systemd toolchain-funcs
|
||||
|
||||
DESCRIPTION="A software watchdog and /dev/watchdog daemon"
|
||||
HOMEPAGE="https://sourceforge.net/projects/watchdog/"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
|
||||
IUSE="nfs"
|
||||
|
||||
RDEPEND="nfs? ( net-libs/libtirpc )"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user