blob: 8ee5a8a2dd6a1e4a148efe243e09d975a895d110 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono-addins/mono-addins-0.2.ebuild,v 1.2 2007/07/21 12:23:19 jurek Exp $
inherit eutils mono
DESCRIPTION="A framework for creating extensible applications, and for creating libraries which extend those applications."
HOMEPAGE="http://www.mono-project.com/Mono.Addins"
SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="X"
DEPEND=">=dev-lang/mono-1.2
X? ( >=dev-dotnet/gtk-sharp-2.0
>=dev-dotnet/gnome-sharp-2.0
>=dev-dotnet/glade-sharp-2.0 )"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-disable-gui.patch
}
src_compile() {
econf \
--disable-tests \
$(use_enable X gui) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|