From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id ADD9E1388C1 for ; Mon, 14 Dec 2015 15:33:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3603121C058; Mon, 14 Dec 2015 15:33:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8DA221C058 for ; Mon, 14 Dec 2015 15:33:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 79E103408D4 for ; Mon, 14 Dec 2015 15:33:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F23D89A1 for ; Mon, 14 Dec 2015 15:33:41 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1450106886.7eded6b17b4739237239f44da05d7fd0b6b24c78.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/pinta/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/pinta/pinta-1.6-r2.ebuild X-VCS-Directories: media-gfx/pinta/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 7eded6b17b4739237239f44da05d7fd0b6b24c78 X-VCS-Branch: master Date: Mon, 14 Dec 2015 15:33:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: aa3d36b0-68c9-41d5-9ea0-85356bd28b20 X-Archives-Hash: 862a43d94b4039646557c08d5b76d93d commit: 7eded6b17b4739237239f44da05d7fd0b6b24c78 Author: Alessandro Calorì gmail com> AuthorDate: Mon Dec 14 15:14:28 2015 +0000 Commit: Ian Delaney gentoo org> CommitDate: Mon Dec 14 15:28:06 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eded6b1 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 media-gfx/pinta/pinta-1.6-r2.ebuild | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) 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 0000000..12e6deb --- /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 +}