diff options
author | 2018-08-12 09:35:00 +0200 | |
---|---|---|
committer | 2018-08-12 09:46:23 +0200 | |
commit | 2eebea6191f3dc8a5c37ab4db66cf20a943b6da5 (patch) | |
tree | 9b8d7afc1a5f8ebba8ca023c53fe2f98bc078fb7 /xfce-extra/xfce4-screenshooter | |
parent | xfce-extra/xfce4-screenshooter: Drop old (diff) | |
download | gentoo-2eebea6191f3dc8a5c37ab4db66cf20a943b6da5.tar.gz gentoo-2eebea6191f3dc8a5c37ab4db66cf20a943b6da5.tar.bz2 gentoo-2eebea6191f3dc8a5c37ab4db66cf20a943b6da5.zip |
xfce-extra/xfce4-screenshooter: Bump to 1.9.3
Diffstat (limited to 'xfce-extra/xfce4-screenshooter')
-rw-r--r-- | xfce-extra/xfce4-screenshooter/Manifest | 1 | ||||
-rw-r--r-- | xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.9.3.ebuild | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-screenshooter/Manifest b/xfce-extra/xfce4-screenshooter/Manifest index 32f550a2abc8..d2b16b1e1acb 100644 --- a/xfce-extra/xfce4-screenshooter/Manifest +++ b/xfce-extra/xfce4-screenshooter/Manifest @@ -1,2 +1,3 @@ DIST xfce4-screenshooter-1.9.1.tar.bz2 514979 BLAKE2B d66aa03561aaed01181710356fbde95d390575a87676eece6bd90b32e107e8cbc7b065a8c91b6badf8e9041d027280f8777dcfefbcea6f09cb1e096ffff091bb SHA512 e95385f65dfe5fdd1d7045a18c9404ab400db9ddd06a35de2b11c0a955b390a6d278903a3558c135ee9744c8062860f491339b5d035f53cac74a49c366bd8bb2 DIST xfce4-screenshooter-1.9.2.tar.bz2 504757 BLAKE2B 6c22e409974b6251a756f0b7addd91850d4454b0a725623dd47dd3dc29d8e3f6037bd69ef6bfcb363f4a6f2512062e80779a07b4ab1f77dc9ca0b6db5361a5b5 SHA512 fb60fe89a620122e59352154dbcace8f3e3a2f2f3f2d6cfff521651f4dc021241e9b370f7929fca55b36bbb13ed3ae0c4393a621291b51e451bc2e57b1a798c8 +DIST xfce4-screenshooter-1.9.3.tar.bz2 502188 BLAKE2B 93b60422eb6cef23b4d1f29fca49370cead8f74c4ee27ea4abf2bb9b4fa006f1dd9e39ccc87c1d915a5e7cc902245caff4b7778b801436a1c25893f46e35f3fb SHA512 ba59fdca3900143a50b3b858986b1152d4574d302d2e041a5287933427a67f64542ca691c130030937344433ea893a1f082086f9c02a9edccaeedbdc0a2a50a2 diff --git a/xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.9.3.ebuild b/xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.9.3.ebuild new file mode 100644 index 000000000000..a4b036e1dc6c --- /dev/null +++ b/xfce-extra/xfce4-screenshooter/xfce4-screenshooter-1.9.3.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="https://archive.xfce.org/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 +} |