summaryrefslogtreecommitdiff
blob: 4edcb8cf77bb7c8ab85825d3c16822e1a896be7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit flag-o-matic toolchain-funcs

DESCRIPTION="Collection of tools for ACPI and power management"
HOMEPAGE="https://github.com/anyc/pmtools/"
SRC_URI="https://github.com/anyc/pmtools/tarball/${PV} -> ${P}.tar.gz"
S="${WORKDIR}/pmtools"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="doc"

RDEPEND="
		dev-lang/perl
		>=sys-power/iasl-20090521"

PATCHES=(
	"${FILESDIR}"/${PN}-20100123-acpixtract-pmtools.patch
	"${FILESDIR}"/${PN}-20100123-madt.patch
	"${FILESDIR}"/${PN}-20071116-64bit.patch
	"${FILESDIR}"/${PN}-20101124-cflags-ldflags.patch
)

src_prepare() {
	default

	# update version info
	sed -i -e "s|20060324|20110323|" acpixtract/acpixtract.c || die

	strip-unsupported-flags
}

src_compile() {
	# respect user's LDFLAGS
	emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}"
}

src_install() {
	dosbin acpidump/acpidump
	newbin acpixtract/acpixtract acpixtract-pmtools
	dobin madt/madt

	dodoc README
	docinto madt
	dodoc madt/README
	use doc && dodoc madt/APIC*
}

pkg_postinst() {
	ewarn "Please note that acpixtract is now named acpixtract-pmtools to avoid"
	ewarn "conflicts with the new tool of the same name from the iasl package."
}