commit: 85999cc21ac3d6cc4266ba0c12094dcc4b9dbabd Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org> AuthorDate: Thu Jul 8 09:16:27 2021 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Thu Jul 8 09:17:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85999cc2
sys-apps/cpuid: move app-arch/gzip to BDEPEND Closes: https://bugs.gentoo.org/801133 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> sys-apps/cpuid/cpuid-20201006-r1.ebuild | 35 +++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/sys-apps/cpuid/cpuid-20201006-r1.ebuild b/sys-apps/cpuid/cpuid-20201006-r1.ebuild new file mode 100644 index 00000000000..6c29a01ce82 --- /dev/null +++ b/sys-apps/cpuid/cpuid-20201006-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Linux tool to dump x86 CPUID information about the CPUs" +HOMEPAGE="http://www.etallen.com/cpuid.html" +SRC_URI="http://www.etallen.com/${PN}/${P}.src.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="amd64 x86" + +BDEPEND=" + app-arch/gzip + dev-lang/perl +" + +DOCS=( "ChangeLog" "FUTURE" ) + +PATCHES=( "${FILESDIR}/${PN}-20200203-makefile.patch" ) + +src_prepare() { + default + + tc-export CC +} + +src_install() { + emake BUILDROOT="${ED}" install + + einstalldocs +}
