Gentoo Archives: gentoo-commits

From: "Peter Alfredsen (loki_val)" <loki_val@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-dotnet/mono-zeroconf: ChangeLog mono-zeroconf-0.7.6.ebuild
Date: Sun, 31 Aug 2008 21:22:01
Message-Id: E1KZuMw-0000qc-55@stork.gentoo.org
1 loki_val 08/08/31 21:21:58
2
3 Modified: ChangeLog
4 Added: mono-zeroconf-0.7.6.ebuild
5 Log:
6 Bump
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.25.8 i686)
8
9 Revision Changes Path
10 1.4 dev-dotnet/mono-zeroconf/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/mono-zeroconf/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/mono-zeroconf/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/mono-zeroconf/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/mono-zeroconf/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 28 Feb 2008 14:32:48 -0000 1.3
23 +++ ChangeLog 31 Aug 2008 21:21:57 -0000 1.4
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-dotnet/mono-zeroconf
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono-zeroconf/ChangeLog,v 1.3 2008/02/28 14:32:48 drac Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono-zeroconf/ChangeLog,v 1.4 2008/08/31 21:21:57 loki_val Exp $
29 +
30 +*mono-zeroconf-0.7.6 (31 Aug 2008)
31 +
32 + 31 Aug 2008; Peter Alfredsen <loki_val@g.o>
33 + +mono-zeroconf-0.7.6.ebuild:
34 + Bump
35
36 28 Feb 2008; Samuli Suominen <drac@g.o> mono-zeroconf-0.7.5.ebuild:
37 Default to avahi instead of mDNSResponder, thanks to armin76 for reminding
38
39
40
41 1.1 dev-dotnet/mono-zeroconf/mono-zeroconf-0.7.6.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/mono-zeroconf/mono-zeroconf-0.7.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/mono-zeroconf/mono-zeroconf-0.7.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mono-zeroconf-0.7.6.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono-zeroconf/mono-zeroconf-0.7.6.ebuild,v 1.1 2008/08/31 21:21:57 loki_val Exp $
51
52 EAPI=1
53
54 inherit eutils mono
55
56 DESCRIPTION="a cross platform Zero Configuration Networking library for Mono and .NET."
57 HOMEPAGE="http://www.mono-project.com/Mono.Zeroconf"
58 SRC_URI="http://banshee-project.org/files/${PN}/${P}.tar.bz2"
59
60 LICENSE="MIT"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="+avahi"
64
65 RDEPEND=">=dev-lang/mono-1.1.10
66 avahi? ( >=net-dns/avahi-0.6 )
67 !avahi? ( net-misc/mDNSResponder )"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig"
70
71 pkg_setup() {
72 local fail="Re-emerge net-dns/avahi with USE mono."
73 if use avahi && ! built_with_use net-dns/avahi mono; then
74 eerror "${fail}"
75 die "${fail}"
76 fi
77 }
78
79 src_compile() {
80 local myconf
81 use avahi || myconf="--disable-avahi"
82 use avahi && myconf="--disable-mdnsresponder"
83 econf --disable-docs ${myconf}
84 emake -j1 || die "emake failed."
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die "emake install failed."
89 dodoc AUTHORS ChangeLog NEWS README
90 }