summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2010-10-07 19:49:45 +0000
committerPacho Ramos <pacho@gentoo.org>2010-10-07 19:49:45 +0000
commitad44237e865bef61e3209d076d32e45ae83a62df (patch)
treef9bb126632542b8f5ddcb75f17c36ba1e7968e7f /dev-dotnet/mono-zeroconf
parentppc64 stable wrt #324077 (diff)
downloadgentoo-2-ad44237e865bef61e3209d076d32e45ae83a62df.tar.gz
gentoo-2-ad44237e865bef61e3209d076d32e45ae83a62df.tar.bz2
gentoo-2-ad44237e865bef61e3209d076d32e45ae83a62df.zip
Remove old.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-dotnet/mono-zeroconf')
-rw-r--r--dev-dotnet/mono-zeroconf/ChangeLog8
-rw-r--r--dev-dotnet/mono-zeroconf/files/mono-zeroconf-0.8.0-mono-2.2.patch24
-rw-r--r--dev-dotnet/mono-zeroconf/mono-zeroconf-0.8.0-r1.ebuild38
3 files changed, 6 insertions, 64 deletions
diff --git a/dev-dotnet/mono-zeroconf/ChangeLog b/dev-dotnet/mono-zeroconf/ChangeLog
index 0df1b814c544..43e773377e1c 100644
--- a/dev-dotnet/mono-zeroconf/ChangeLog
+++ b/dev-dotnet/mono-zeroconf/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-dotnet/mono-zeroconf
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono-zeroconf/ChangeLog,v 1.14 2009/09/27 14:04:59 nixnut Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono-zeroconf/ChangeLog,v 1.15 2010/10/07 19:49:45 pacho Exp $
+
+ 07 Oct 2010; Pacho Ramos <pacho@gentoo.org>
+ -mono-zeroconf-0.8.0-r1.ebuild, -files/mono-zeroconf-0.8.0-mono-2.2.patch:
+ Remove old.
27 Sep 2009; nixnut <nixnut@gentoo.org> mono-zeroconf-0.9.0.ebuild:
ppc stable #273249
diff --git a/dev-dotnet/mono-zeroconf/files/mono-zeroconf-0.8.0-mono-2.2.patch b/dev-dotnet/mono-zeroconf/files/mono-zeroconf-0.8.0-mono-2.2.patch
deleted file mode 100644
index 777ff0134970..000000000000
--- a/dev-dotnet/mono-zeroconf/files/mono-zeroconf-0.8.0-mono-2.2.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -urN mono-zeroconf-0.8.0.orig/src/Mono.Zeroconf.Providers.AvahiDBus/Mono.Zeroconf.Providers.AvahiDBus/Service.cs mono-zeroconf-0.8.0/src/Mono.Zeroconf.Providers.AvahiDBus/Mono.Zeroconf.Providers.AvahiDBus/Service.cs
---- mono-zeroconf-0.8.0.orig/src/Mono.Zeroconf.Providers.AvahiDBus/Mono.Zeroconf.Providers.AvahiDBus/Service.cs 2008-06-27 00:45:12.000000000 +0200
-+++ mono-zeroconf-0.8.0/src/Mono.Zeroconf.Providers.AvahiDBus/Mono.Zeroconf.Providers.AvahiDBus/Service.cs 2009-01-22 16:52:58.155891843 +0100
-@@ -65,17 +65,17 @@
-
- public string Name {
- get { return name; }
-- protected set { name = value; }
-+ set { name = value; }
- }
-
- public string RegType {
- get { return regtype; }
-- protected set { regtype = value; }
-+ set { regtype = value; }
- }
-
- public string ReplyDomain {
- get { return reply_domain; }
-- protected set { reply_domain = value; }
-+ set { reply_domain = value; }
- }
-
- public uint NetworkInterface {
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
deleted file mode 100644
index 917b5c240679..000000000000
--- a/dev-dotnet/mono-zeroconf/mono-zeroconf-0.8.0-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# 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.5 2009/04/30 15:36:07 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
-}