diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-12-28 09:41:15 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-12-28 09:42:21 +0100 |
commit | cce8e62086b5992c7b9ac54108411085a874b83f (patch) | |
tree | 3f0ebdc93c76839f868155e2274f948cf36e27af /xfce-extra/xfce4-fsguard-plugin | |
parent | xfce-extra/xfce4-verve-plugin: Bump to 2.0.1 (diff) | |
download | gentoo-cce8e62086b5992c7b9ac54108411085a874b83f.tar.gz gentoo-cce8e62086b5992c7b9ac54108411085a874b83f.tar.bz2 gentoo-cce8e62086b5992c7b9ac54108411085a874b83f.zip |
xfce-extra/xfce4-fsguard-plugin: Bump to 1.1.2
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'xfce-extra/xfce4-fsguard-plugin')
-rw-r--r-- | xfce-extra/xfce4-fsguard-plugin/Manifest | 1 | ||||
-rw-r--r-- | xfce-extra/xfce4-fsguard-plugin/xfce4-fsguard-plugin-1.1.2.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-fsguard-plugin/Manifest b/xfce-extra/xfce4-fsguard-plugin/Manifest index 78091ce61205..fca5559972d9 100644 --- a/xfce-extra/xfce4-fsguard-plugin/Manifest +++ b/xfce-extra/xfce4-fsguard-plugin/Manifest @@ -1 +1,2 @@ DIST xfce4-fsguard-plugin-1.1.1.tar.bz2 367902 BLAKE2B 2fbd088cc2a53dc99e01fbbc880c6223bb3cb8f030cfbed5373d50b7a1e37a072f71beed2f2e84b7f0adcbce28cd0d6cc0c32356589195482c9dee143d04e46c SHA512 9b8a8c171baddc0261e4253c2e710c5d2e180e7ee669915f5a81e53778775880623af43b1638679b86d6a3e077826a69a948577a558e768fa41924ce5d1006fe +DIST xfce4-fsguard-plugin-1.1.2.tar.bz2 402703 BLAKE2B d7d4b936510d7cdc153d47c54178aebfb9f3339f6413a1013a18301806e05cf76ff2439e7b1e00637407c113149f9e72632e66e01f287e817d93ba5af208947a SHA512 ff42f3d92292357f432a69fc401dec474b1eadabbcd7602f4453f7567faaa623d3672664c3a2baa98ea4e522c6a607b5a40327c5fea33b2d8535f15a4d511ebb diff --git a/xfce-extra/xfce4-fsguard-plugin/xfce4-fsguard-plugin-1.1.2.ebuild b/xfce-extra/xfce4-fsguard-plugin/xfce4-fsguard-plugin-1.1.2.ebuild new file mode 100644 index 000000000000..5c57fdf7caf3 --- /dev/null +++ b/xfce-extra/xfce4-fsguard-plugin/xfce4-fsguard-plugin-1.1.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 filesystem guard plug-in for the Xfce panel" +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-fsguard-plugin" +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=">=xfce-base/libxfce4ui-4.12:=[gtk3(+)] + >=xfce-base/libxfce4util-4.12:= + >=xfce-base/xfce4-panel-4.12:=" +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 +} |