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