diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-08-25 10:45:55 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-08-25 10:45:55 +0100 |
commit | 3cf7c3ef441822c889356fd1812ebf2944a59851 (patch) | |
tree | c513fe68548b40365c1c2ebfe35c58ad431cdd77 /xfce-extra/xfce4-timer-plugin | |
parent | 05b8b0e0af1d72e51a3ee61522941bf7605cd01c (diff) |
gentoo resync : 25.08.2020
Diffstat (limited to 'xfce-extra/xfce4-timer-plugin')
-rw-r--r-- | xfce-extra/xfce4-timer-plugin/Manifest | 2 | ||||
-rw-r--r-- | xfce-extra/xfce4-timer-plugin/xfce4-timer-plugin-1.7.1.ebuild | 37 |
2 files changed, 39 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-timer-plugin/Manifest b/xfce-extra/xfce4-timer-plugin/Manifest index 75c782cb2b8b..e8c9cbc9e051 100644 --- a/xfce-extra/xfce4-timer-plugin/Manifest +++ b/xfce-extra/xfce4-timer-plugin/Manifest @@ -1,3 +1,5 @@ DIST xfce4-timer-plugin-1.7.0.tar.bz2 381222 BLAKE2B 3c273d818b7b04cf2ceeea3b72837ccf43ee0433ca458dbbb3aa68015ee28fb2e61ab3b5f36b341d087f00e9c4ca8e9be5453e735251bf9c9c1e910ce8c6d2f3 SHA512 b4d00396f5be37d009cdb50baea8804c4b06a6f0b821d66751fd07ca21e186c01bafeec5170209b5de69559803e0ac54d9b56266f193b65ac056cdd52bf5228e +DIST xfce4-timer-plugin-1.7.1.tar.bz2 405053 BLAKE2B 1efb88f9b4e7d1ace747950f97c1d0beaf7e9194bab639c4f8eb650378cd216f621fe30e7fbb874e73acffd1c3b30048754f07ed8fb64e96260fb831f3ff62be SHA512 4887dc2c524a8b749a20449dd491dc8f12f8babb26c64cecf33ae56b45d2446128cb65c25f11d534278ad39a2adf7ab718714e1bfa613fd39713e44642030c16 EBUILD xfce4-timer-plugin-1.7.0.ebuild 840 BLAKE2B 00595aa0bd0763d1d16b3374e37d6c42090181cad6f7b153c31184c3d462b51f439c7efc8348b798c521f737d263297262c0c16fd59a165dd89b195497e18c14 SHA512 cabe3a3bccefb2417fb7a75c3e2bdd8f1db4eb10ac7f4ff11910c9792d7f3b4c842404c835959e6a85f05812bd1d1c504d4fdbd73f5c5e96220c7f6f12a82a1d +EBUILD xfce4-timer-plugin-1.7.1.ebuild 845 BLAKE2B 7381a488b253f65bd0ae24ff3d5d7c0e3bc80f52d63dbdbdaeae44887c87f4c7e383b2fefbebf410ce005d0a840c69aa100927d8144dc6e5d43b8f544b9beb0a SHA512 7b9edcd5096bbe96a2da0c965bcb793b53009c5e28d2fb2d95f46311e578620f8cec00c1f059ba288979ae0be016870a45b57d647cbaf784d6e184992e401cb4 MISC metadata.xml 247 BLAKE2B f381ffd75f3fdb2842002ea885015f443cc35334f0420d70a61d6730bd55c11750d6a177831dc7c8564eec4dc3863db6085162e58848b0dceb09799006a1b2c5 SHA512 25494c0053fb7b2ed0f78ecc2de8a8ae08a971db8e15f89e906a1d43177fef53eb9ec5dd075a5c67ddee2be112c0943f6c87e4870d405436bddfea3a4fa19203 diff --git a/xfce-extra/xfce4-timer-plugin/xfce4-timer-plugin-1.7.1.ebuild b/xfce-extra/xfce4-timer-plugin/xfce4-timer-plugin-1.7.1.ebuild new file mode 100644 index 000000000000..f15899695d09 --- /dev/null +++ b/xfce-extra/xfce4-timer-plugin/xfce4-timer-plugin-1.7.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome2-utils + +DESCRIPTION="A simple timer plug-in for the Xfce desktop environment" +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-timer-plugin" +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +#libx11? +RDEPEND=">=x11-libs/gtk+-3.20:3= + >=xfce-base/libxfce4ui-4.12:= + >=xfce-base/libxfce4util-4.12:= + >=xfce-base/xfce4-panel-4.10:=" +DEPEND="${RDEPEND} + dev-util/intltool + virtual/pkgconfig" + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |