Diff wmacpimon-0.2.1 with a wmacpimon-0.2.1-r1

/usr/portage/x11-plugins/wmacpimon/wmacpimon-0.2.1-r1.ebuild 2023-10-09 14:52:35.968368513 +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

  
6
inherit toolchain-funcs
5 7

  
6 8
DESCRIPTION="DockApp monitors the temperature and Speedstep features in ACPI-based systems"
7 9
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
8 10
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
9 11

  
10
LICENSE="GPL-2"
12
LICENSE="GPL-2+"
11 13
SLOT="0"
12
KEYWORDS="x86"
13
IUSE=""
14
KEYWORDS="~amd64 ~x86"
14 15

  
15 16
RDEPEND="x11-libs/libX11
16 17
	x11-libs/libXext
......
28 29
	"${FILESDIR}/Makefile.patch"
29 30
)
30 31

  
32
src_compile() {
33
	tc-export CC
34
	default
35
}
36

  
31 37
src_install() {
32 38
	dobin wmacpimond wmacpimon
33 39
	dodoc AUTHORS ChangeLog README
Thank you!