diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-01-29 20:30:57 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-01-29 20:32:13 +0100 |
commit | d7613da9875496b2be11825fd8507f81572be230 (patch) | |
tree | c25e92b4ec8dc20e266109c5c9ea614e377d0466 /xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.6.ebuild | |
parent | dev-python/requests-oauthlib: Bump to 1.3.1 (diff) | |
download | gentoo-d7613da9875496b2be11825fd8507f81572be230.tar.gz gentoo-d7613da9875496b2be11825fd8507f81572be230.tar.bz2 gentoo-d7613da9875496b2be11825fd8507f81572be230.zip |
xfce-extra/xfce4-cpufreq-plugin: Bump to 1.2.6
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.6.ebuild')
-rw-r--r-- | xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.6.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.6.ebuild b/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.6.ebuild new file mode 100644 index 000000000000..2e1ad90e5a2f --- /dev/null +++ b/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.6.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit xdg-utils + +DESCRIPTION="A panel plugin for showing information about cpufreq settings" +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-cpufreq-plugin" +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" + +RDEPEND=">=dev-libs/glib-2.20:= + >=x11-libs/gtk+-3.20:3= + >=xfce-base/libxfce4ui-4.14:= + >=xfce-base/libxfce4util-4.14:= + >=xfce-base/xfce4-panel-4.14:=" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig" + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |