diff options
Diffstat (limited to 'sys-process/unixtop/unixtop-3.8_beta1-r4.ebuild')
-rw-r--r-- | sys-process/unixtop/unixtop-3.8_beta1-r4.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/sys-process/unixtop/unixtop-3.8_beta1-r4.ebuild b/sys-process/unixtop/unixtop-3.8_beta1-r4.ebuild new file mode 100644 index 000000000000..22abf047614d --- /dev/null +++ b/sys-process/unixtop/unixtop-3.8_beta1-r4.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="top for UNIX systems" +HOMEPAGE="https://unixtop.sourceforge.net/" +SRC_URI="https://downloads.sourceforge.net/unixtop/top-${PV/_/}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64-linux ~x64-solaris" +IUSE="" + +DEPEND="sys-libs/ncurses:=" +RDEPEND=" + ${RDEPEND} + !sys-process/procps +" + +S=${WORKDIR}/top-${PV/_/} + +PATCHES=( + "${FILESDIR}"/${PN}-3.8_beta1-ncurses.patch + "${FILESDIR}"/${PN}-3.8_beta1-no-AX-macros.patch + "${FILESDIR}"/${PN}-3.8_beta1-renice-segfault.patch + "${FILESDIR}"/${PN}-3.8_beta1-memleak-fix-v2.patch + "${FILESDIR}"/${PN}-3.8_beta1-high-threadid-crash.patch + "${FILESDIR}"/${PN}-3.8_beta1-percent-cpu.patch + "${FILESDIR}"/${PN}-3.8_beta1-winch-segfault.patch + "${FILESDIR}"/${PN}-3.8_beta1-recent-linux.patch +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + local myconf= + + # don't do bi-arch cruft on hosts that support that, such as Solaris + export enable_dualarch=no + + # configure demands an override because on OSX this is "experimental" + [[ ${CHOST} == *-darwin* ]] && myconf="${myconf} --with-module=macosx" + + econf ${myconf} +} |