diff options
author | Sam James <sam@gentoo.org> | 2021-02-27 00:42:02 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-02-27 01:00:14 +0000 |
commit | b8cec8606b75dc332d73e1799ad8aa9275c7ff8a (patch) | |
tree | c23ede2ff46b143c153aced43558fd5b39c9af86 /sys-libs | |
parent | x11-misc/viewglob: port to EAPI 7 (diff) | |
download | gentoo-b8cec8606b75dc332d73e1799ad8aa9275c7ff8a.tar.gz gentoo-b8cec8606b75dc332d73e1799ad8aa9275c7ff8a.tar.bz2 gentoo-b8cec8606b75dc332d73e1799ad8aa9275c7ff8a.zip |
sys-libs/libstatgrab: port to EAPI 7
Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/libstatgrab/libstatgrab-0.91.ebuild | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/sys-libs/libstatgrab/libstatgrab-0.91.ebuild b/sys-libs/libstatgrab/libstatgrab-0.91.ebuild index 2e211e2a49ee..8fa5c728d722 100644 --- a/sys-libs/libstatgrab/libstatgrab-0.91.ebuild +++ b/sys-libs/libstatgrab/libstatgrab-0.91.ebuild @@ -1,39 +1,42 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -AUTOTOOLS_AUTORECONF=frob -inherit autotools-utils +inherit autotools DESCRIPTION="A tool to provide access to statistics about the system on which it's run" HOMEPAGE="https://www.i-scream.org/libstatgrab/" SRC_URI="https://www.mirrorservice.org/sites/ftp.i-scream.org/pub/i-scream/libstatgrab/${P}.tar.gz" LICENSE="|| ( GPL-2 LGPL-2.1 )" -SLOT=0 +SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc x86" -IUSE="doc examples static-libs" +IUSE="doc examples" RDEPEND="sys-libs/ncurses" DEPEND="${RDEPEND}" DOCS=( ChangeLog PLATFORMS NEWS AUTHORS README ) -PATCHES=( "${FILESDIR}"/${P}-tinfo.patch ) +PATCHES=( + "${FILESDIR}"/${P}-tinfo.patch +) src_configure() { local myeconfargs=( --disable-setgid-binaries --disable-setuid-binaries --with-ncurses - $(use_enable static-libs static) + --disable-static ) - autotools-utils_src_configure + + econf "${myeconfargs[@]}" } src_install() { - autotools-utils_src_install + default + if use examples; then docompress -x /usr/share/doc/${PF}/examples insinto /usr/share/doc/${PF}/examples |