blob: e3053ec8f2104f92f12785cbbab19ae2873774e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit dotnet autotools
DESCRIPTION="gtk bindings for mono"
HOMEPAGE="https://www.mono-project.com/docs/gui/gtksharp/"
SRC_URI="https://github.com/mono/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="3"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug"
RESTRICT="test"
PATCHES=( "${FILESDIR}/${P}-fix-build.patch" )
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
dev-build/automake:1.11"
src_prepare() {
base_src_prepare
eautoreconf
eapply "${FILESDIR}/${P}-fix-build.patch"
eapply_user
}
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"
dosym ../lib64/gapi-3.0 /usr/lib/gapi-3.0
}
|