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 AD20F139357 for ; Sat, 8 Aug 2015 13:35:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEF27E0833; Sat, 8 Aug 2015 13:35:12 +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 42C6EE0833 for ; Sat, 8 Aug 2015 13:35:12 +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 57587340CF6 for ; Sat, 8 Aug 2015 13:35:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3FA712C for ; Sat, 8 Aug 2015 13:35:08 +0000 (UTC) From: "Heather Cynede" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Heather Cynede" Message-ID: <1438796688.d4469e58cbda270f3aed18824d563866dd1be3b0.cynede@gentoo> Subject: [gentoo-commits] proj/dotnet:master commit in: media-gfx/pinta/ X-VCS-Repository: proj/dotnet X-VCS-Files: media-gfx/pinta/pinta-1.6.ebuild X-VCS-Directories: media-gfx/pinta/ X-VCS-Committer: cynede X-VCS-Committer-Name: Heather Cynede X-VCS-Revision: d4469e58cbda270f3aed18824d563866dd1be3b0 X-VCS-Branch: master Date: Sat, 8 Aug 2015 13:35:08 +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: cdeada72-534c-447c-b699-8a31d03c31d9 X-Archives-Hash: 8568d61b869929c247bcc38adee99dc0 commit: d4469e58cbda270f3aed18824d563866dd1be3b0 Author: ArsenShnurkov gmail com> AuthorDate: Tue Aug 4 01:13:36 2015 +0000 Commit: Heather Cynede gentoo org> CommitDate: Wed Aug 5 17:44:48 2015 +0000 URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=d4469e58 cleanup for repoman -d media-gfx/pinta/pinta-1.6.ebuild | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/media-gfx/pinta/pinta-1.6.ebuild b/media-gfx/pinta/pinta-1.6.ebuild index e4f8e9b..c50cc6f 100644 --- a/media-gfx/pinta/pinta-1.6.ebuild +++ b/media-gfx/pinta/pinta-1.6.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pinta/pinta-1.5_pre20121118.ebuild,v 1.1 2013/03/21 17:03:38 hasufell Exp $ +# $Header: $ EAPI=5 -inherit autotools fdo-mime gnome2-utils mono +inherit autotools fdo-mime gnome2-utils mono-env DESCRIPTION="Simple Painting for Gtk" HOMEPAGE="http://pinta-project.com" @@ -15,7 +15,7 @@ SLOT="0" KEYWORDS="~amd64 ~x86" COMMON_DEPEND=">=dev-lang/mono-4.0.2 - =dev-dotnet/gtk-sharp-2.12.21 + ~dev-dotnet/gtk-sharp-2.12.21 >=dev-dotnet/mono-addins-1.0[gtk] " @@ -38,24 +38,20 @@ src_prepare() { fi done fi -# ./autogen.sh || die "Autogen script failed" + eautoreconf - + oldstring=Version=2.0.0.0 newstring=Version=4.0.0.0 einfo "updating '$oldstring'->'$newstring'" - find ${S} -iname "*.csproj" -print | xargs sed -i s@${oldstring}@${newstring}@g || die - + find "${S}" -iname "*.csproj" -print | xargs sed -i "s@${oldstring}@${newstring}@g" || die + oldstring='ToolsVersion="3.5"' newstring='ToolsVersion="4.0"' einfo "updating '$oldstring'->'$newstring'" - find ${S} -iname "*.proj" -print | xargs sed -i s@${oldstring}@${newstring}@g || die + find "${S}" -iname "*.proj" -print | xargs sed -i "s@${oldstring}@${newstring}@g" || die } -#src_compile(){ -# autotools_src_compile -#} - pkg_preinst() { gnome2_icon_savelist }