commit: cc33ec59729ce9d385acbf5bb8c2302d7723f2df Author: Heather <Heather <AT> live <DOT> ru> AuthorDate: Wed Aug 5 17:14:51 2015 +0000 Commit: Heather Cynede <cynede <AT> gentoo <DOT> org> CommitDate: Wed Aug 5 17:14:51 2015 +0000 URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=cc33ec59
bump gtk sharp to 2.99.3, set csc to mcs dev-dotnet/gtk-sharp/gtk-sharp-2.99.3.ebuild | 61 ++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/dev-dotnet/gtk-sharp/gtk-sharp-2.99.3.ebuild b/dev-dotnet/gtk-sharp/gtk-sharp-2.99.3.ebuild new file mode 100644 index 0000000..3f7c63d --- /dev/null +++ b/dev-dotnet/gtk-sharp/gtk-sharp-2.99.3.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit dotnet autotools base + +SLOT="3" +DESCRIPTION="gtk bindings for mono" +LICENSE="GPL-2" +HOMEPAGE="http://www.mono-project.com/GtkSharp" +KEYWORDS="~amd64 ~x86 ~ppc" +SRC_URI="https://github.com/mono/${PN}/archive/${PV}.zip -> ${P}.zip" +IUSE="debug" + +RESTRICT="test" + +RDEPEND=" + >=dev-lang/mono-3.0 + x11-libs/pango + >=dev-libs/glib-2.31 + dev-libs/atk + x11-libs/gtk+:3 + gnome-base/libglade + dev-perl/XML-LibXML + !dev-dotnet/gtk-sharp-gapi + !dev-dotnet/gtk-sharp-docs + !dev-dotnet/gtk-dotnet-sharp + !dev-dotnet/gdk-sharp + !dev-dotnet/glib-sharp + !dev-dotnet/glade-sharp + !dev-dotnet/pango-sharp + !dev-dotnet/atk-sharp" +DEPEND="${RDEPEND} + virtual/pkgconfig + sys-devel/automake:1.11" + +src_prepare() { + base_src_prepare + eautoreconf + libtoolize +} + +src_configure() { + econf CSC=/usr/bin/mcs + --disable-static \ + --disable-dependency-tracking \ + --disable-maintainer-mode \ + $(use_enable debug) +} + +src_compile() { + emake CSC=/usr/bin/mcs +} + +src_install() { + default + dotnet_multilib_comply + sed -i "s/\\r//g" "${D}"/usr/bin/* || die "sed failed" +}
