mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
xfce-base/xfce4-power-manager: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1,4 +1,2 @@
|
||||
DIST xfce4-power-manager-4.18.1.tar.bz2 1217727 BLAKE2B bbd2a70cdb4fbac6146a28895b17896a10aff4a8d5e32ab82852e034977e9d1872d78eca6f8181ff16c74fcdd65ef27d891682bb93ef7ea4d846ccfee07ab034 SHA512 bb84f5a35058fa4aaa8cbe871acd898afb86885172c74d4b811d5b2c1204c0f7865c8488064622c364350c47d9aaecd07f1b65b56f72a547325e6e73bc2eb4ff
|
||||
DIST xfce4-power-manager-4.18.2.tar.bz2 1205603 BLAKE2B 375be9354f32a71d748eeb14c39bfdf6a406f79550b61d3b9017609cfddce041f5a70f6cf8554b8c97e8e08c81ddc601d448a4de7ac645876c81d3a19eda3a21 SHA512 4f192cbd13938fdd8c8483196bb8f17bc05300fff77790e03ae9b839c992ab6629a9770cf73c97bb3e5a4115c36fcd9ff0b89bc5230b639d2fe04d065b56b90c
|
||||
DIST xfce4-power-manager-4.19.0.tar.bz2 1449836 BLAKE2B 0aaba64f689ea263bddf01fedfda1919d36152420acf9e068ae23c138a8ce0a7bbaf64423144ac4a5fb5313a7cf3da38093157f5a88abca2d2dcdc0d6a91840b SHA512 56803b41867080df34d6e460e8bfcdf0f16c05fa447ad34ceab7831c41efc38d82c692bb06cf94725c4b4d63ac0721be8c0a999712fba112e352c9f05e46bfa3
|
||||
DIST xfce4-power-manager-4.19.1.tar.bz2 1458474 BLAKE2B 2ba9e3741d48ab8c9c39da1f5f56bbea150b3647a9dc0088ea6db935b694d130c180b27b700299faa70553c34b1ba47a3bfbfb3845d0f49770bcc2108350031b SHA512 dc085f8702d35525969441770d84e742977d781869ec239167d7c4f964fcf2a483da3984ffdcd7b4c42e17d9e3d695f1f41e80c50ef92e57e4ff681129b0745f
|
||||
|
||||
@@ -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.18.2:=[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
|
||||
}
|
||||
@@ -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-1.6.7
|
||||
>=x11-libs/libXrandr-1.2
|
||||
x11-libs/libXext
|
||||
x11-libs/libXtst
|
||||
>=xfce-base/xfconf-4.12:=
|
||||
>=xfce-base/libxfce4ui-4.18.2:=[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/gdbus-codegen
|
||||
>=sys-devel/gettext-0.19.8
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user