summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-03-17 20:30:31 +0100
committerMichał Górny <mgorny@gentoo.org>2023-03-17 20:31:15 +0100
commitdba06953f4e3b9ac3384be94d79ba60f36f0141b (patch)
treeba3d10d1eaa0df57837161a02ac0c292ec84b146 /xfce-base
parentdev-python/aiohttp: Remove old (diff)
downloadgentoo-dba06953f4e3b9ac3384be94d79ba60f36f0141b.tar.gz
gentoo-dba06953f4e3b9ac3384be94d79ba60f36f0141b.tar.bz2
gentoo-dba06953f4e3b9ac3384be94d79ba60f36f0141b.zip
xfce-base/xfce4-power-manager: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'xfce-base')
-rw-r--r--xfce-base/xfce4-power-manager/Manifest1
-rw-r--r--xfce-base/xfce4-power-manager/xfce4-power-manager-4.18.0.ebuild75
2 files changed, 0 insertions, 76 deletions
diff --git a/xfce-base/xfce4-power-manager/Manifest b/xfce-base/xfce4-power-manager/Manifest
index accaddca1c74..f67f2e18ccf5 100644
--- a/xfce-base/xfce4-power-manager/Manifest
+++ b/xfce-base/xfce4-power-manager/Manifest
@@ -1,2 +1 @@
-DIST xfce4-power-manager-4.18.0.tar.bz2 1239515 BLAKE2B 1fc2ffcde64e873693322694ef638cc1e3e0773cc3dec663a03bfb7c4833e410e96ab2726fd5b7600149257e8add17ce51da6db5f31895c66007a83ed1837e18 SHA512 5cfa5285b479a0341b4afbf3141f773ff217cd1003cee55087a33f27e392dacf4930bc08b4faa7296dfe9e738d114a56efcecca32145a4cf68856d5d6feb9d24
DIST xfce4-power-manager-4.18.1.tar.bz2 1217727 BLAKE2B bbd2a70cdb4fbac6146a28895b17896a10aff4a8d5e32ab82852e034977e9d1872d78eca6f8181ff16c74fcdd65ef27d891682bb93ef7ea4d846ccfee07ab034 SHA512 bb84f5a35058fa4aaa8cbe871acd898afb86885172c74d4b811d5b2c1204c0f7865c8488064622c364350c47d9aaecd07f1b65b56f72a547325e6e73bc2eb4ff
diff --git a/xfce-base/xfce4-power-manager/xfce4-power-manager-4.18.0.ebuild b/xfce-base/xfce4-power-manager/xfce4-power-manager-4.18.0.ebuild
deleted file mode 100644
index 042ca9d73c09..000000000000
--- a/xfce-base/xfce4-power-manager/xfce4-power-manager-4.18.0.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit xdg-utils
-
-DESCRIPTION="Power manager for the Xfce desktop environment"
-HOMEPAGE="
- https://docs.xfce.org/xfce/xfce4-power-manager/start
- https://gitlab.xfce.org/xfce/xfce4-power-manager/
-"
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv x86"
-IUSE="networkmanager +panel-plugin policykit"
-
-DEPEND="
- >=dev-libs/glib-2.66.0
- >=sys-power/upower-0.99.0
- >=x11-libs/gtk+-3.24.0:3
- >=x11-libs/libnotify-0.7
- x11-libs/libX11
- >=x11-libs/libXrandr-1.2
- x11-libs/libXext
- x11-libs/libXtst
- >=xfce-base/xfconf-4.12:=
- >=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
- >=xfce-base/libxfce4util-4.12:=
- panel-plugin? ( >=xfce-base/xfce4-panel-4.12:= )
- policykit? ( >=sys-auth/polkit-0.112 )
-"
-RDEPEND="
- ${DEPEND}
- networkmanager? ( net-misc/networkmanager )
-"
-DEPEND+="
- x11-base/xorg-proto
-"
-BDEPEND="
- dev-util/intltool
- sys-devel/gettext
- virtual/pkgconfig
-"
-
-src_configure() {
- local myconf=(
- $(use_enable policykit polkit)
- $(use_enable networkmanager network-manager)
- $(use_enable panel-plugin xfce4panel)
- )
-
- econf "${myconf[@]}"
-}
-
-src_install() {
- default
- find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
- xdg_icon_cache_update
-
- if ! has_version sys-apps/systemd && ! has_version sys-auth/elogind
- then
- elog "Suspend/hibernate support requires a logind provider installed"
- elog "(sys-apps/systemd or sys-auth/elogind)"
- fi
-}
-
-pkg_postrm() {
- xdg_icon_cache_update
-}