summaryrefslogtreecommitdiff
blob: 5d519a74a3966e95fa4dceae6bde4c7debcbf6a1 (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
58
59
60
61
62
63
64
# Copyright 2021-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit toolchain-funcs xdg-utils

DESCRIPTION="A monitor of resources"
HOMEPAGE="https://github.com/aristocratos/btop"
SRC_URI="https://github.com/aristocratos/btop/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~mips ~ppc ppc64 ~riscv x86"

BDEPEND="
	>=sys-devel/gcc-8
"

PATCHES=(
	# Backported fixes for https://bugs.gentoo.org/884005,
	# can be removed in 1.2.14 or later
	"${FILESDIR}/${P}-fix-makefile-deps.patch"
	"${FILESDIR}/${P}-verbose-mkdir.patch"
)

pkg_setup() {
	if [[ "${MERGE_TYPE}" != "binary" ]]; then
		if ! tc-is-gcc ; then
			# https://bugs.gentoo.org/839318
			die "$(tc-getCXX) is not a supported compiler. Please use sys-devel/gcc instead."
		fi
	fi
}

src_prepare() {
	default
	# btop installs README.md to /usr/share/btop by default
	sed -i '/^.*cp -p README.md.*$/d' Makefile || die
}

src_compile() {
	# Disable btop optimization flags, since we have our flags in CXXFLAGS
	emake VERBOSE=true OPTFLAGS="" CXX="$(tc-getCXX)"
}

src_install() {
	emake \
		PREFIX="${EPREFIX}/usr" \
		DESTDIR="${D}" \
		install

	dodoc README.md CHANGELOG.md
}

pkg_postinst() {
	xdg_desktop_database_update
	xdg_icon_cache_update
}

pkg_postrm() {
	xdg_desktop_database_update
	xdg_icon_cache_update
}