Install this version:
emerge -a =sys-kernel/kccmp-0.3-r4
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 0.3-r4 | 8 | amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 | 0 |
# Copyright 1999-2026 Gentoo Authors and Martin V\"ath
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit qmake-utils
RESTRICT="mirror"
DESCRIPTION="A simple tool for comparing two linux kernel .config files"
HOMEPAGE="https://github.com/jeff-dagenais/kccmp"
EGIT_COMMIT="ce42ebaf3fb09c4cff009e6ed7ff8afa683b2eec"
SRC_URI="https://github.com/jeff-dagenais/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
IUSE=""
DEPEND="dev-qt/qtbase
dev-qt/qt5compat"
RDEPEND="${DEPEND}"
src_prepare() {
echo "QT += widgets core5compat" >> ${PN}.pro
default
}
src_configure() {
eqmake6 "${S}"/kccmp.pro
}
src_install() {
dobin kccmp
dodoc README
}