From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8E4D1138334 for ; Sun, 1 Jul 2018 19:23:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D920E0872; Sun, 1 Jul 2018 19:23:51 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4ED69E0872 for ; Sun, 1 Jul 2018 19:23:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4AF44335C7A for ; Sun, 1 Jul 2018 19:23:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E9E52EB for ; Sun, 1 Jul 2018 19:23:47 +0000 (UTC) From: "Mike Auty" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Auty" Message-ID: <1530473013.e668d37e19499365d10393b85e2647fbb83570da.ikelos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/bless/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/bless/bless-0.6.0-r3.ebuild X-VCS-Directories: dev-util/bless/ X-VCS-Committer: ikelos X-VCS-Committer-Name: Mike Auty X-VCS-Revision: e668d37e19499365d10393b85e2647fbb83570da X-VCS-Branch: master Date: Sun, 1 Jul 2018 19:23:47 +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: 136e7242-5e7c-4d26-906a-06c5cd627f52 X-Archives-Hash: be2ced6bb76f8bac6f3ce2dddb1753a8 commit: e668d37e19499365d10393b85e2647fbb83570da Author: Mike Auty gentoo org> AuthorDate: Sun Jul 1 19:23:01 2018 +0000 Commit: Mike Auty gentoo org> CommitDate: Sun Jul 1 19:23:33 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e668d37e dev-util/bless: Ensure mono-env_pkg_setup is called This resolves bug 659424. Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-util/bless/bless-0.6.0-r3.ebuild | 52 ++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/dev-util/bless/bless-0.6.0-r3.ebuild b/dev-util/bless/bless-0.6.0-r3.ebuild new file mode 100644 index 00000000000..d4c3ef7205f --- /dev/null +++ b/dev-util/bless/bless-0.6.0-r3.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools gnome2 mono-env + +DESCRIPTION="GTK# Hex Editor" +HOMEPAGE="https://github.com/bwrsandman/Bless/" +SRC_URI="https://dev.gentoo.org/~ikelos/devoverlay-distfiles/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +RDEPEND=" + >=dev-lang/mono-1.1.14 + >=dev-dotnet/gtk-sharp-2.12.21 +" +DEPEND="${RDEPEND} + app-text/rarian + >=sys-devel/gettext-0.15 + virtual/pkgconfig +" + +# See bug 278162 +# Waiting on nunit ebuild entering the tree +RESTRICT="test" + +pkg_setup() { + # Stolen from enlightenment.eclass + cp $(type -p gettextize) "${T}/" || die "Could not copy gettextize" + sed -i -e 's:read dummy < /dev/tty::' "${T}/gettextize" + + mono-env_pkg_setup +} + +src_prepare() { + einfo "Running gettextize -f --no-changelog..." + ( "${T}/gettextize" -f --no-changelog > /dev/null ) || die "gettexize failed" + eapply "${FILESDIR}/${P}-pixmap.patch" + eapply "${FILESDIR}/${P}-docpath.patch" + eapply "${FILESDIR}/${P}-mono-4.patch" + eautoreconf + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure \ + --enable-unix-specific \ + $(use_enable debug) +}