diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-07-21 16:28:20 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-07-21 16:31:10 +0200 |
commit | 8efa49983a9066c64035a7fc5efa6757de47a4f1 (patch) | |
tree | f7542080bad76a23f65166cb71b461a4bc7e1737 /xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.4.2.ebuild | |
parent | sys-kernel/gentoo-sources: Linux patch 4.4.78 (diff) | |
download | gentoo-8efa49983a9066c64035a7fc5efa6757de47a4f1.tar.gz gentoo-8efa49983a9066c64035a7fc5efa6757de47a4f1.tar.bz2 gentoo-8efa49983a9066c64035a7fc5efa6757de47a4f1.zip |
xfce-extra/xfce4-clipman-plugin: Bump to 1.4.2
Diffstat (limited to 'xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.4.2.ebuild')
-rw-r--r-- | xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.4.2.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.4.2.ebuild b/xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.4.2.ebuild new file mode 100644 index 000000000000..d34918e38d9b --- /dev/null +++ b/xfce-extra/xfce4-clipman-plugin/xfce4-clipman-plugin-1.4.2.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2017 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="mirror://xfce/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= + dev-libs/libunique:1= + x11-libs/libXtst:= + >=xfce-base/exo-0.10:= + >=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-proto/xproto" + +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 +} |