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 3EA831381F3 for ; Tue, 24 Sep 2013 07:39:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F7B8E09B3; Tue, 24 Sep 2013 07:39:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1C348E09B3 for ; Tue, 24 Sep 2013 07:39:19 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3644733ED66 for ; Tue, 24 Sep 2013 07:39:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 6D9C5E468F for ; Tue, 24 Sep 2013 07:39:10 +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: <1380008470.9ab983d00c48c460f74fa2107c1a6f45f440fa6c.cynede@gentoo> Subject: [gentoo-commits] proj/dotnet:master commit in: dev-lang/mono/ X-VCS-Repository: proj/dotnet X-VCS-Files: dev-lang/mono/mono-3.2.3.ebuild X-VCS-Directories: dev-lang/mono/ X-VCS-Committer: cynede X-VCS-Committer-Name: Heather Cynede X-VCS-Revision: 9ab983d00c48c460f74fa2107c1a6f45f440fa6c X-VCS-Branch: master Date: Tue, 24 Sep 2013 07:39:10 +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: 5d888852-7164-43f3-8b66-0aac12e7c7e8 X-Archives-Hash: 6795e1dc2f902c433c7f3fcdec0b6ac2 commit: 9ab983d00c48c460f74fa2107c1a6f45f440fa6c Author: Heather cynede net> AuthorDate: Tue Sep 24 07:41:10 2013 +0000 Commit: Heather Cynede gentoo org> CommitDate: Tue Sep 24 07:41:10 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=9ab983d0 mono 3.2.3 QA --- dev-lang/mono/mono-3.2.3.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-lang/mono/mono-3.2.3.ebuild b/dev-lang/mono/mono-3.2.3.ebuild index e122501..678f8b6 100644 --- a/dev-lang/mono/mono-3.2.3.ebuild +++ b/dev-lang/mono/mono-3.2.3.ebuild @@ -81,13 +81,13 @@ src_configure() { --enable-static --disable-quiet-build --without-moonlight - --with-libgdiplus=$(use minimal && printf "no" || printf "installed" ) + --with-libgdiplus=$(usex minimal no installed) $(use_with xen xen_opt) --without-ikvm-native --with-jit --disable-dtrace --with-profile4 - --with-sgen=$(use ppc && printf "no" || printf "yes" ) + --with-sgen=$(usex ppc no yes) $(use_with doc mcs-docs) $(use_enable debug) $(use_enable nls) @@ -116,6 +116,6 @@ src_install() { # Remove files not respecting LDFLAGS and that we are not supposed to provide, see Fedora # mono.spec and http://www.mail-archive.com/mono-devel-list@lists.ximian.com/msg24870.html # for reference. - rm -f "${ED}"/usr/lib/mono/{2.0,4.5}/mscorlib.dll.so - rm -f "${ED}"/usr/lib/mono/{2.0,4.5}/mcs.exe.so + rm -f "${ED}"/usr/lib/mono/{2.0,4.5}/mscorlib.dll.so || die + rm -f "${ED}"/usr/lib/mono/{2.0,4.5}/mcs.exe.so || die }