blob: a0c127cdd48f47c95388cd3e84b33ef3d916636f (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gtk-sharp/gtk-sharp-2.6.0.ebuild,v 1.4 2006/01/19 06:59:46 latexer Exp $
inherit eutils mono
DESCRIPTION="Gtk# is a C# language binding for the GTK2 toolkit and GNOME libraries"
SRC_URI="http://go-mono.com/sources/${PN}-2.0/${P}.tar.gz
mirror://gentoo/${P}-configurable.diff.gz"
HOMEPAGE="http://gtk-sharp.sourceforge.net/"
LICENSE="LGPL-2.1"
SLOT="2"
IUSE="doc"
RESTRICT="test"
RDEPEND=">=dev-lang/mono-1.1.9
dev-perl/XML-LibXML
>=x11-libs/gtk+-2.6
>=gnome-base/orbit-2.8.3"
DEPEND="${RDEPEND}
>=sys-apps/sed-4.0
sys-devel/automake
sys-devel/autoconf
dev-util/pkgconfig"
KEYWORDS="~x86 ~ppc ~amd64"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${WORKDIR}/${P}-configurable.diff
#fixes support with pkgconfig-0.17, bug #92503
sed -i -e 's/\<PKG_PATH\>/GTK_SHARP_PKG_PATH/g' configure.in
# Use correct libdir in pkgconfig files
sed -i -e 's:^libdir.*:libdir=@libdir@:' \
${S}/*/{,GConf}/*.pc.in || die
export WANT_AUTOMAKE="1.8"
aclocal || die
automake || die
autoconf || die
libtoolize --copy --force
# disable building of samples (#16015)
sed -i -e "s:sample::" Makefile.in
}
src_compile() {
local myconf=""
# These are the same as from gtk-sharp-component.eclass
for package in art glade gnome gnomevfs gtkhtml rsvg vte
do
myconf="${myconf} --disable-${package}"
done
econf ${myconf} || die "./configure failed"
LANG=C emake -j1 || die
#if use doc && has_version dev-util/monodoc
#then
# cd ${S}/doc
# emake -j1 assemble || die "Failed to generate docs"
#fi
}
src_install () {
make GACUTIL_FLAGS="/root ${D}/usr/$(get_libdir) /gacdir /usr/$(get_libdir) /package ${PN}-2.0" \
DESTDIR=${D} install || die
dodoc README* ChangeLog
#if use doc && has_version dev-util/monodoc
#then
# cd ${S}/doc
# insinto $(monodoc --get-sourcesdir)
# doins gtk-sharp-docs.{tree,zip}
#fi
}
pkg_postinst() {
if use doc && ! has_version dev-util/monodoc
then
ewarn
ewarn "Although 'doc' is in the USE flag list, gtk-sharp will"
ewarn "not install its monodoc documentation unless you have monodoc"
ewarn "installed. If you want the documentation to be available in"
ewarn "monodoc, please emerge monodoc then re-emerge gtk-sharp."
fi
echo
ewarn "gtk-sharp-2.6.x is completely, and utterly unsupported by upstream."
ewarn "If you experience any bugs related to using gtk-sharp-2.6.x, do"
ewarn "*not* submit them upstream, ask about them on IRC, or email any"
ewarn "mailinglists. If you think you have found a genuine bug or need help,"
ewarn "first down grade *all* *-sharp packages to the 2.4.x release and"
ewarn "test there."
}
|