diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-10-15 20:02:38 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-10-15 20:05:36 +0200 |
commit | 6ae2df5012a8d22b0cf4f333b1a5bb27183fde34 (patch) | |
tree | 270e37b2b2aa163a726ebd89c21d6185f06585c1 /xfce-extra | |
parent | xfce-extra/xfce4-dict: Bump to 0.8.4 (diff) | |
download | gentoo-6ae2df5012a8d22b0cf4f333b1a5bb27183fde34.tar.gz gentoo-6ae2df5012a8d22b0cf4f333b1a5bb27183fde34.tar.bz2 gentoo-6ae2df5012a8d22b0cf4f333b1a5bb27183fde34.zip |
xfce-extra/xfce4-cpufreq-plugin: Bump to 1.2.2
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'xfce-extra')
-rw-r--r-- | xfce-extra/xfce4-cpufreq-plugin/Manifest | 1 | ||||
-rw-r--r-- | xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.2.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-cpufreq-plugin/Manifest b/xfce-extra/xfce4-cpufreq-plugin/Manifest index 7a339c63001d..22716a53440e 100644 --- a/xfce-extra/xfce4-cpufreq-plugin/Manifest +++ b/xfce-extra/xfce4-cpufreq-plugin/Manifest @@ -1 +1,2 @@ DIST xfce4-cpufreq-plugin-1.2.1.tar.bz2 394576 BLAKE2B ad9646c079b3728680fe82256568d9a57eccb7be959831684c800fb35d00d90069e30c8c5f6bcd12e2872da527ad4ed3d3348586f0a097c7ac67bd1e307d5dee SHA512 60d0f1f36bd2c49701acaf61fc51c434cb591812662f55a8bfc21f6820d34c5b091af0edf3951c958e179019067532afec989940dae23478e792889c8f4d7b0d +DIST xfce4-cpufreq-plugin-1.2.2.tar.bz2 408480 BLAKE2B da6f38a57126b8ad06dd77c9a1f09ffee78e58b390b53b5020af8da403b51f20ed8965b9d0bd0da2add993228d19ec9fcaa15ea4c22b42011140a8bfdb440dfa SHA512 b0cab40fa0e6cdbb59606d7712b1b1479e4a1e8ca1aa5a59d43fc863ac10eee6477461c827805d7544db49fa6e821f0351973fe650e2ef1520ddcadcbbde096e diff --git a/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.2.ebuild b/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.2.ebuild new file mode 100644 index 000000000000..a08c6c2b5e7e --- /dev/null +++ b/xfce-extra/xfce4-cpufreq-plugin/xfce4-cpufreq-plugin-1.2.2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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 ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND=">=dev-libs/glib-2.20:= + >=x11-libs/gtk+-3.20:3= + >=xfce-base/libxfce4ui-4.12:=[gtk3(+)] + >=xfce-base/xfce4-panel-4.12:=" +DEPEND="${RDEPEND} + 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 +} |