mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
remove dead HOMEPAGE without A/AAAA fix gcc-15 Closes: https://bugs.gentoo.org/881981 Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr> Part-of: https://github.com/gentoo/gentoo/pull/43147 Closes: https://github.com/gentoo/gentoo/pull/43147 Signed-off-by: Sam James <sam@gentoo.org>
37 lines
766 B
Bash
37 lines
766 B
Bash
# Copyright 1999-2025 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="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
|
|
"${FILESDIR}"/${PN}-1.8.4-configure-clang16.patch
|
|
"${FILESDIR}"/${PN}-1.8.6-fix_gcc15.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_install() {
|
|
dobin src/${PN}
|
|
doman ${PN}.1
|
|
dodoc AUTHORS ChangeLog README TODO
|
|
}
|