diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2020-06-21 09:30:35 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2020-06-21 09:30:35 +0200 |
commit | cfb0ba1af7f225d766a0afa4bf0e1c08cdae3f8b (patch) | |
tree | 7ab2253bc0130f265121e2200eca4bfa56718c8f /sys-process | |
parent | app-misc/fdupes: honour CFLAGS. (diff) | |
download | gentoo-cfb0ba1af7f225d766a0afa4bf0e1c08cdae3f8b.tar.gz gentoo-cfb0ba1af7f225d766a0afa4bf0e1c08cdae3f8b.tar.bz2 gentoo-cfb0ba1af7f225d766a0afa4bf0e1c08cdae3f8b.zip |
sys-process/psinfo: EAPI 7 bump.
Closes: https://bugs.gentoo.org/724218
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/psinfo/psinfo-0.12-r1.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sys-process/psinfo/psinfo-0.12-r1.ebuild b/sys-process/psinfo/psinfo-0.12-r1.ebuild new file mode 100644 index 000000000000..a6114821b49c --- /dev/null +++ b/sys-process/psinfo/psinfo-0.12-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit eutils toolchain-funcs + +DESCRIPTION="Process information and statistics using the kernel /proc interface" +HOMEPAGE="http://www.ward.nu/computer/psinfo/" +SRC_URI="http://www.ward.nu/computer/${PN}/${P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +LICENSE="GPL-2" + +PATCHES=( + "${FILESDIR}/${P}-asneeded.patch" +) + +src_prepare() { + default + tc-export CC +} |