diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-10-27 14:15:07 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-10-27 14:30:30 +0200 |
commit | d025dc3fd34aeb10657b0b25f8625b3f9a8cef58 (patch) | |
tree | 076df22fc6225f6957bf3b0f5d25cb44e02f265e /xfce-extra/xfce4-clipman-plugin | |
parent | xfce-extra/xfce4-notifyd: Bump to 0.4.3 (bugfix) (diff) | |
download | gentoo-d025dc3fd34aeb10657b0b25f8625b3f9a8cef58.tar.gz gentoo-d025dc3fd34aeb10657b0b25f8625b3f9a8cef58.tar.bz2 gentoo-d025dc3fd34aeb10657b0b25f8625b3f9a8cef58.zip |
xfce-extra/xfce4-clipman-plugin: Bump to 1.4.3 (bugfix)
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.4.3.ebuild | 51 |
2 files changed, 52 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-clipman-plugin/Manifest b/xfce-extra/xfce4-clipman-plugin/Manifest index 3b9eba14f6c7..2c69ce7db42b 100644 --- a/xfce-extra/xfce4-clipman-plugin/Manifest +++ b/xfce-extra/xfce4-clipman-plugin/Manifest @@ -1 +1,2 @@ DIST xfce4-clipman-plugin-1.4.2.tar.bz2 485244 BLAKE2B 6e183b82db5c3325691d04afa110c4dd83b013a94ed9b3b1b1b7bbb4166bcb1176a6b4ed52fd0b3256b7f73816a0031ea6084f31344a9ac3187b7b5fd25f01ed SHA512 f12d9e3e37a26f9dade5b76e73ac3998030112b53e7ec7b756128f7f1ee28d19a1d7b8d4a26e0ccb69aaba2f0ab2f6c4cd5a435bd1cc7efd81c05b711480eba6 +DIST xfce4-clipman-plugin-1.4.3.tar.bz2 492784 BLAKE2B f52dc92976e0b826b7aab2b8a3b9e099bb31e3d670911608d7a39c9805b011bb4c77db1fb01379e3244682a4bcefba617e246cc9ade50ecd275ea554d928385f SHA512 28bc8e2be8dd3eac13a7988b68933ce84dd8cc756f0a19636cd5850d6e36714a73ad9650a28ebfc54d9ad3adb23c242abf89806124b4e00fe7d1701be1b52414 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 new file mode 100644 index 000000000000..496bd2d27d57 --- /dev/null +++ b/xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.4.3.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome2-utils + +DESCRIPTION="A clipboard manager plug-in for the Xfce panel" +HOMEPAGE="https://goodies.xfce.org/projects/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 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="qrcode" + +RDEPEND=">=dev-libs/glib-2.32:2= + >=x11-libs/gtk+-3.14:3= + x11-libs/libXtst:= + >=xfce-base/libxfce4ui-4.12:= + >=xfce-base/libxfce4util-4.12:= + >=xfce-base/xfce4-panel-4.12:= + >=xfce-base/xfconf-4.10:= + qrcode? ( >=media-gfx/qrencode-3.3.0:= )" +DEPEND="${RDEPEND} + 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() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |