Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-clipman-plugin/
Date: Sat, 27 Oct 2018 12:30:40
Message-Id: 1540643430.d025dc3fd34aeb10657b0b25f8625b3f9a8cef58.mgorny@gentoo
1 commit: d025dc3fd34aeb10657b0b25f8625b3f9a8cef58
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 27 12:15:07 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 27 12:30:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d025dc3f
7
8 xfce-extra/xfce4-clipman-plugin: Bump to 1.4.3 (bugfix)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-clipman-plugin/Manifest | 1 +
13 .../xfce4-clipman-plugin-1.4.3.ebuild | 51 ++++++++++++++++++++++
14 2 files changed, 52 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-clipman-plugin/Manifest b/xfce-extra/xfce4-clipman-plugin/Manifest
17 index 3b9eba14f6c..2c69ce7db42 100644
18 --- a/xfce-extra/xfce4-clipman-plugin/Manifest
19 +++ b/xfce-extra/xfce4-clipman-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-clipman-plugin-1.4.2.tar.bz2 485244 BLAKE2B 6e183b82db5c3325691d04afa110c4dd83b013a94ed9b3b1b1b7bbb4166bcb1176a6b4ed52fd0b3256b7f73816a0031ea6084f31344a9ac3187b7b5fd25f01ed SHA512 f12d9e3e37a26f9dade5b76e73ac3998030112b53e7ec7b756128f7f1ee28d19a1d7b8d4a26e0ccb69aaba2f0ab2f6c4cd5a435bd1cc7efd81c05b711480eba6
22 +DIST xfce4-clipman-plugin-1.4.3.tar.bz2 492784 BLAKE2B f52dc92976e0b826b7aab2b8a3b9e099bb31e3d670911608d7a39c9805b011bb4c77db1fb01379e3244682a4bcefba617e246cc9ade50ecd275ea554d928385f SHA512 28bc8e2be8dd3eac13a7988b68933ce84dd8cc756f0a19636cd5850d6e36714a73ad9650a28ebfc54d9ad3adb23c242abf89806124b4e00fe7d1701be1b52414
23
24 diff --git a/xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.4.3.ebuild b/xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.4.3.ebuild
25 new file mode 100644
26 index 00000000000..496bd2d27d5
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.4.3.ebuild
29 @@ -0,0 +1,51 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit gnome2-utils
36 +
37 +DESCRIPTION="A clipboard manager plug-in for the Xfce panel"
38 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin"
39 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
44 +IUSE="qrcode"
45 +
46 +RDEPEND=">=dev-libs/glib-2.32:2=
47 + >=x11-libs/gtk+-3.14:3=
48 + x11-libs/libXtst:=
49 + >=xfce-base/libxfce4ui-4.12:=
50 + >=xfce-base/libxfce4util-4.12:=
51 + >=xfce-base/xfce4-panel-4.12:=
52 + >=xfce-base/xfconf-4.10:=
53 + qrcode? ( >=media-gfx/qrencode-3.3.0:= )"
54 +DEPEND="${RDEPEND}
55 + dev-util/intltool
56 + sys-devel/gettext
57 + virtual/pkgconfig
58 + x11-base/xorg-proto"
59 +
60 +src_configure() {
61 + local myconf=(
62 + $(use_enable qrcode libqrencode)
63 + )
64 +
65 + econf "${myconf[@]}"
66 +}
67 +
68 +src_install() {
69 + default
70 +
71 + find "${D}" -name '*.la' -delete || die
72 +}
73 +
74 +pkg_postinst() {
75 + gnome2_icon_cache_update
76 +}
77 +
78 +pkg_postrm() {
79 + gnome2_icon_cache_update
80 +}