blob: 946785f4485a5000a2373e78df5071d316e1cf42 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono-zeroconf/mono-zeroconf-0.8.0-r1.ebuild,v 1.3 2009/03/27 17:10:44 ranger Exp $
EAPI=2
inherit base mono
DESCRIPTION="a cross platform Zero Configuration Networking library for Mono and .NET."
HOMEPAGE="http://www.mono-project.com/Mono.Zeroconf"
SRC_URI="http://banshee-project.org/files/${PN}/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc +avahi"
RDEPEND=">=dev-lang/mono-2.0
avahi? ( >=net-dns/avahi-0.6[mono] )
!avahi? ( net-misc/mDNSResponder )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
PATCHES=( "${FILESDIR}/${P}-mono-2.2.patch" )
src_configure() {
econf $(use_enable doc docs) $(use_enable avahi) $(use_enable !avahi mdnsresponder)
}
src_compile() {
emake -j1 || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README || die "docs failed"
mono_multilib_comply
}
|