diff options
author | Alessandro Calorì <axelgenus@gmail.com> | 2015-12-14 23:14:28 +0800 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2015-12-14 23:28:06 +0800 |
commit | 7eded6b17b4739237239f44da05d7fd0b6b24c78 (patch) | |
tree | 0bba360f50ba0236f20a3b5306b2a656f90c950b /media-gfx/pinta/pinta-1.6-r2.ebuild | |
parent | sys-devel/llvm: Clean Python, enable libomp and BPF backend in 3.7 (diff) | |
download | gentoo-7eded6b17b4739237239f44da05d7fd0b6b24c78.tar.gz gentoo-7eded6b17b4739237239f44da05d7fd0b6b24c78.tar.bz2 gentoo-7eded6b17b4739237239f44da05d7fd0b6b24c78.zip |
media-gfx/pinta: revbump to 1.6-r2, removed redundant dependencies
mono-addins with "gtk" USE flag is enough to pull in every Mono
library needed by Pinta
Package-Manager: portage-2.2.24
Diffstat (limited to 'media-gfx/pinta/pinta-1.6-r2.ebuild')
-rw-r--r-- | media-gfx/pinta/pinta-1.6-r2.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/media-gfx/pinta/pinta-1.6-r2.ebuild b/media-gfx/pinta/pinta-1.6-r2.ebuild new file mode 100644 index 000000000000..12e6debbfcac --- /dev/null +++ b/media-gfx/pinta/pinta-1.6-r2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit fdo-mime mono-env gnome2-utils + +DESCRIPTION="Simple Painting for Gtk" +HOMEPAGE="http://pinta-project.com" +SRC_URI="https://github.com/PintaProject/Pinta/releases/download/${PV}/${P}.tar.gz" + +LICENSE="MIT CC-BY-3.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +COMMON_DEPEND="dev-lang/mono + dev-dotnet/mono-addins[gtk]" +RDEPEND="${COMMON_DEPEND} + x11-libs/cairo[X] + x11-libs/gdk-pixbuf[X,jpeg,tiff] + x11-themes/gnome-icon-theme" +DEPEND="${COMMON_DEPEND} + dev-util/intltool + virtual/pkgconfig + sys-devel/gettext" + +src_prepare() { + epatch "${FILESDIR}/${P}-mono-4.patch" +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update + gnome2_icon_cache_update +} |