diff options
author | Sam James <sam@gentoo.org> | 2022-06-29 10:26:12 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-29 11:08:57 +0000 |
commit | d3f6bf1f6474891118516706fa2ce81eda92831a (patch) | |
tree | 4a33c752d8579377f73245d850150490677eb593 /app-admin | |
parent | app-admin/whowatch: drop 99999 (diff) | |
download | gentoo-d3f6bf1f6474891118516706fa2ce81eda92831a.tar.gz gentoo-d3f6bf1f6474891118516706fa2ce81eda92831a.tar.bz2 gentoo-d3f6bf1f6474891118516706fa2ce81eda92831a.zip |
app-admin/whowatch: update EAPI 6 -> 8
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/whowatch/whowatch-1.8.6-r1.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app-admin/whowatch/whowatch-1.8.6-r1.ebuild b/app-admin/whowatch/whowatch-1.8.6-r1.ebuild new file mode 100644 index 000000000000..5d2251fb9743 --- /dev/null +++ b/app-admin/whowatch/whowatch-1.8.6-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Displays information about users currently logged on in real time" +HOMEPAGE="http://wizard.ae.krakow.pl/~mike/ https://github.com/mtsuszycki/whowatch/" +SRC_URI="https://github.com/mtsuszycki/${PN}/releases/download/${P}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~x86" + +RDEPEND="sys-libs/ncurses:=" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${PN}-1.8.4-tinfo.patch +) + +src_prepare() { + default + + eautoreconf +} + +src_install() { + dobin src/${PN} + doman ${PN}.1 + dodoc AUTHORS ChangeLog README TODO +} |