diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2009-01-25 13:56:40 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2009-01-25 13:56:40 +0000 |
commit | b56c4b780dfa94a5f15517255a8062c148c20b9a (patch) | |
tree | 4afe7280ee36041187d79d8a9ad9a903b65407b2 /dev-dotnet/mono-zeroconf/mono-zeroconf-0.8.0-r1.ebuild | |
parent | amd64/x86 stable, bug #256078 (diff) | |
download | gentoo-2-b56c4b780dfa94a5f15517255a8062c148c20b9a.tar.gz gentoo-2-b56c4b780dfa94a5f15517255a8062c148c20b9a.tar.bz2 gentoo-2-b56c4b780dfa94a5f15517255a8062c148c20b9a.zip |
Fix bug 252647, thanks to Paul de Vrieze (pauldv@gentoo.org) for the patch.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'dev-dotnet/mono-zeroconf/mono-zeroconf-0.8.0-r1.ebuild')
-rw-r--r-- | dev-dotnet/mono-zeroconf/mono-zeroconf-0.8.0-r1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-dotnet/mono-zeroconf/mono-zeroconf-0.8.0-r1.ebuild b/dev-dotnet/mono-zeroconf/mono-zeroconf-0.8.0-r1.ebuild new file mode 100644 index 000000000000..a0cf1d4a34a6 --- /dev/null +++ b/dev-dotnet/mono-zeroconf/mono-zeroconf-0.8.0-r1.ebuild @@ -0,0 +1,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.1 2009/01/25 13:56:40 loki_val 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 ~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 +} |