summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Schollmeyer <nex+b-g-o@nexadn.de>2022-12-09 18:54:40 +0100
committerJoonas Niilola <juippis@gentoo.org>2022-12-10 15:10:44 +0200
commitb99b9c07baae2d89f6d6b3b4cf9a3d29fb89ad6b (patch)
tree1ab02fbab5fc2affa099bee832c95cc71de91b95 /sys-process/btop/btop-1.2.9.ebuild
parentdev-qt/qtwebengine: Drop obsolete patch (diff)
downloadgentoo-b99b9c07baae2d89f6d6b3b4cf9a3d29fb89ad6b.tar.gz
gentoo-b99b9c07baae2d89f6d6b3b4cf9a3d29fb89ad6b.tar.bz2
gentoo-b99b9c07baae2d89f6d6b3b4cf9a3d29fb89ad6b.zip
sys-process/btop: drop 1.2.9, 1.2.12
Signed-off-by: Adrian Schollmeyer <nex+b-g-o@nexadn.de> Closes: https://github.com/gentoo/gentoo/pull/28618 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'sys-process/btop/btop-1.2.9.ebuild')
-rw-r--r--sys-process/btop/btop-1.2.9.ebuild61
1 files changed, 0 insertions, 61 deletions
diff --git a/sys-process/btop/btop-1.2.9.ebuild b/sys-process/btop/btop-1.2.9.ebuild
deleted file mode 100644
index 39aa6592146f..000000000000
--- a/sys-process/btop/btop-1.2.9.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 2021-2022 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 arm64 ppc64 ~riscv x86"
-
-BDEPEND="
- >=sys-devel/gcc-8
-"
-
-PATCHES=(
- "${FILESDIR}/876319-verbose-makefile.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
-}