blob: b52cebe2b64137169b32876e67b50404a3a8caaa (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
WANT_AUTOMAKE=1.11
inherit dotnet autotools
MVER="$(ver_cut 1-2)"
DESCRIPTION="gnome-desktop mono bindings"
HOMEPAGE="https://www.mono-project.com/GtkSharp"
SRC_URI="mirror://gnome/sources/gnome-desktop-sharp/${MVER}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug print gtksourceview rsvg vte wnck"
RESTRICT="test"
RDEPEND="
>=dev-dotnet/gtk-sharp-2.12.21:2
>=dev-dotnet/gnome-sharp-2.24.2-r1
gnome-base/gnome-desktop:2
print? ( gnome-base/libgnomeprint:2.2 gnome-base/libgnomeprintui:2.2 )
gtksourceview? ( x11-libs/gtksourceview:2.0 )
rsvg? ( gnome-base/librsvg:2 )
vte? ( x11-libs/vte:0 )
wnck? ( x11-libs/libwnck:1 )
!dev-dotnet/gnome-panel-sharp
!dev-dotnet/gnome-print-sharp
!dev-dotnet/gtkhtml-sharp
!dev-dotnet/gtksourceview-sharp
!dev-dotnet/nautilusburn-sharp
!dev-dotnet/rsvg-sharp
!dev-dotnet/vte-sharp
!dev-dotnet/wnck-sharp
"
DEPEND="${RDEPEND}"
src_prepare() {
default
eautoreconf
}
src_configure() {
econf $(use_enable debug)
}
src_install() {
default
dotnet_multilib_comply
}
|