Diff longrun-0.9-r4 with a longrun-0.9-r5

/usr/portage/app-admin/longrun/longrun-0.9-r5.ebuild 2023-10-09 14:52:28.156368316 +0300
1
# Copyright 1999-2019 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=6
4
EAPI=8
5 5

  
6 6
inherit linux-info toolchain-funcs
7 7

  
8 8
DESCRIPTION="A utility to control Transmeta's Crusoe and Efficeon processors"
9 9
HOMEPAGE="http://freshmeat.net/projects/longrun/"
10 10

  
11
DEBIAN_PATCH_VERSION="19"
11
DEBIAN_PATCH_VERSION="22"
12 12
DEBIAN_PATCH="${PN}_${PV}-${DEBIAN_PATCH_VERSION}.diff"
13 13
SRC_URI="
14 14
	https://www.kernel.org/pub/linux/utils/cpu/crusoe/${P}.tar.bz2
15 15
	mirror://debian/pool/main/l/${PN}/${DEBIAN_PATCH}.gz"
16
S="${WORKDIR}/${PN}"
16 17

  
17 18
LICENSE="GPL-2"
18 19
SLOT="0"
19
KEYWORDS="-ppc x86"
20
IUSE=""
20
KEYWORDS="-ppc ~x86"
21 21

  
22
DEPEND="sys-apps/groff"
22
BDEPEND="sys-apps/groff"
23 23

  
24
S=${WORKDIR}/${PN}
24
DOCS=( MAKEDEV-cpuid-msr )
25 25

  
26 26
CONFIG_CHECK="~X86_MSR ~X86_CPUID"
27 27
ERROR_X86_MSR="
......
41 41

  
42 42
src_configure() {
43 43
	tc-export CC
44
}
45

  
46
src_install() {
47 44
	default
48
	dodoc MAKEDEV-cpuid-msr
49 45
}
50 46

  
51 47
pkg_postinst() {
Thank you!