diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-03-21 06:40:40 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-03-21 06:40:40 +0100 |
commit | baba1b8ac01b179d64500958abd5bf1daca17cc8 (patch) | |
tree | ed99474e5857769135ae7e249d46bb6ae4f5e917 /xfce-extra/xfce4-clipman-plugin | |
parent | dev-python/recommonmark: deselect failing tests (diff) | |
download | gentoo-baba1b8ac01b179d64500958abd5bf1daca17cc8.tar.gz gentoo-baba1b8ac01b179d64500958abd5bf1daca17cc8.tar.bz2 gentoo-baba1b8ac01b179d64500958abd5bf1daca17cc8.zip |
xfce-extra/xfce4-clipman-plugin: Bump to 1.6.3
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'xfce-extra/xfce4-clipman-plugin')
-rw-r--r-- | xfce-extra/xfce4-clipman-plugin/Manifest | 1 | ||||
-rw-r--r-- | xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.6.3.ebuild | 62 |
2 files changed, 63 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-clipman-plugin/Manifest b/xfce-extra/xfce4-clipman-plugin/Manifest index 9f79dd005ee7..f881777ad221 100644 --- a/xfce-extra/xfce4-clipman-plugin/Manifest +++ b/xfce-extra/xfce4-clipman-plugin/Manifest @@ -1 +1,2 @@ DIST xfce4-clipman-plugin-1.6.2.tar.bz2 465656 BLAKE2B bde94cda7ec97d0af9f238bb3cffb69a7f469a03d27608681042ad701175a1900abed1d79bdc38d45afe5ed48da2054a837358bd150f5075bc194a9547bbf56f SHA512 4bd49b3b6311d232d422d92007638b05409bc0c90fdc20a394590000ac8c706c0502b99a3c89a0276ca1c0e2cfb0a151c78a0a8b18a16bbf65cc5778bcb51db2 +DIST xfce4-clipman-plugin-1.6.3.tar.bz2 486276 BLAKE2B f92c93e4ab57fbe37560c389620696f5c11fa8cbd328f29d4895c25c6f18fec88267cc152a1cab39084f08f8fdc070669b665cbad4089ae9577be776a3ad3663 SHA512 a117f64035a6656c2f8603d9b0adec18bcbe8e1ee6a80b838e4cc40480cc3510afe5f32815ff89b1936cbdbadadf8e1e645f0202d97cc877aec125b51b72064b diff --git a/xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.6.3.ebuild b/xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.6.3.ebuild new file mode 100644 index 000000000000..955d7912e0b2 --- /dev/null +++ b/xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.6.3.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit xdg-utils + +DESCRIPTION="A clipboard manager plug-in for the Xfce panel" +HOMEPAGE=" + https://docs.xfce.org/panel-plugins/xfce4-clipman-plugin/start + https://gitlab.xfce.org/panel-plugins/xfce4-clipman-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 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="qrcode" + +DEPEND=" + >=dev-libs/glib-2.60:2= + >=x11-libs/gtk+-3.22.29:3= + x11-libs/libXtst:= + >=xfce-base/libxfce4ui-4.14:= + >=xfce-base/libxfce4util-4.14:= + >=xfce-base/xfce4-panel-4.14:= + >=xfce-base/xfconf-4.14:= + qrcode? ( >=media-gfx/qrencode-3.3.0:= ) +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig + x11-base/xorg-proto +" + +src_configure() { + local myconf=( + $(use_enable qrcode libqrencode) + ) + + econf "${myconf[@]}" +} + +src_install() { + default + + find "${D}" -name '*.la' -delete || die +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |