diff options
author | 2018-05-01 19:07:30 +0200 | |
---|---|---|
committer | 2018-05-01 19:17:28 +0200 | |
commit | ce1fab48030ec60b3b3696140602b4e42f46a0f9 (patch) | |
tree | 92f5303e5294149177b5bd945e5ef2a365d8edfe /xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.9.2.ebuild | |
parent | sys-cluster/galera: amd64 stable wrt bug #647094 (diff) | |
download | gentoo-ce1fab48030ec60b3b3696140602b4e42f46a0f9.tar.gz gentoo-ce1fab48030ec60b3b3696140602b4e42f46a0f9.tar.bz2 gentoo-ce1fab48030ec60b3b3696140602b4e42f46a0f9.zip |
xfce-extra/xfce4-screenshooter: Bump to 1.9.2
Diffstat (limited to 'xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.9.2.ebuild')
-rw-r--r-- | xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.9.2.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.9.2.ebuild b/xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.9.2.ebuild new file mode 100644 index 000000000000..9139ec91154d --- /dev/null +++ b/xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.9.2.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome2-utils + +DESCRIPTION="Xfce4 screenshooter application and panel plugin" +HOMEPAGE="https://goodies.xfce.org/projects/applications/xfce4-screenshooter" +SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=">=dev-libs/glib-2.16:= + >=net-libs/libsoup-2.26:= + >=x11-libs/gdk-pixbuf-2.16:= + >=x11-libs/gtk+-3.20:3= + dev-libs/libxml2:= + x11-libs/libX11:= + x11-libs/libXext:= + x11-libs/libXfixes:= + >=xfce-base/exo-0.11:= + >=xfce-base/xfce4-panel-4.12:= + >=xfce-base/libxfce4util-4.10:= + >=xfce-base/libxfce4ui-4.12:=" +DEPEND="${RDEPEND} + dev-util/intltool + virtual/pkgconfig" + +src_configure() { + local myconf=( + --enable-xfixes + ) + + econf "${myconf[@]}" +} + +src_install() { + default + + find "${D}" -name '*.la' -delete || die +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |