Gentoo Archives: gentoo-commits

From: "Nathan Phillip Brink (binki)" <binki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/irc-client: irc-client-2.10.3_p7.ebuild ChangeLog
Date: Fri, 02 Dec 2011 01:14:41
Message-Id: 20111202011431.224CE2004B@flycatcher.gentoo.org
1 binki 11/12/02 01:14:31
2
3 Modified: irc-client-2.10.3_p7.ebuild ChangeLog
4 Log:
5 Add blocker against net-irc/ircii for bug #247987. Add missing `|| die', misc shell style change (remove backticks). Fix compilation error caused by disagreement between ${CHOST} and ./config.guess with patch.
6
7 (Portage version: 2.2.0_alpha78-r1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 net-irc/irc-client/irc-client-2.10.3_p7.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irc-client/irc-client-2.10.3_p7.ebuild?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irc-client/irc-client-2.10.3_p7.ebuild?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irc-client/irc-client-2.10.3_p7.ebuild?r1=1.6&r2=1.7
15
16 Index: irc-client-2.10.3_p7.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/irc-client/irc-client-2.10.3_p7.ebuild,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- irc-client-2.10.3_p7.ebuild 23 Sep 2009 18:44:17 -0000 1.6
23 +++ irc-client-2.10.3_p7.ebuild 2 Dec 2011 01:14:31 -0000 1.7
24 @@ -1,6 +1,8 @@
25 -# Copyright 1999-2009 Gentoo Foundation
26 +# Copyright 1999-2011 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-irc/irc-client/irc-client-2.10.3_p7.ebuild,v 1.6 2009/09/23 18:44:17 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-irc/irc-client/irc-client-2.10.3_p7.ebuild,v 1.7 2011/12/02 01:14:31 binki Exp $
30 +
31 +inherit eutils
32
33 MY_P=irc${PV/_/}
34 DESCRIPTION="A simplistic RFC compliant IRC client"
35 @@ -14,12 +16,22 @@
36
37 DEPEND="sys-libs/ncurses
38 sys-libs/zlib"
39 +# This and irc-client both install /usr/bin/irc #247987
40 +RDEPEND="${DEPEND}
41 + !net-irc/irc-client"
42
43 S=${WORKDIR}/${MY_P}
44
45 +src_unpack() {
46 + unpack ${A}
47 +
48 + cd "${S}" || die
49 + epatch "${FILESDIR}"/${P}-amd64-chost.patch
50 +}
51 +
52 src_compile () {
53 econf \
54 - `use_with ipv6 ip6` \
55 + $(use_with ipv6 ip6) \
56 --sysconfdir=/etc/ircd \
57 --localstatedir=/var/run/ircd \
58 || die "econf failed"
59 @@ -31,5 +43,5 @@
60 prefix=${D}/usr \
61 client_man_dir=${D}/usr/share/man/man1 \
62 install-client || die "client installed failed"
63 - dodoc doc/Etiquette doc/alt-irc-faq doc/rfc*
64 + dodoc doc/Etiquette doc/alt-irc-faq doc/rfc* || die
65 }
66
67
68
69 1.15 net-irc/irc-client/ChangeLog
70
71 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irc-client/ChangeLog?rev=1.15&view=markup
72 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irc-client/ChangeLog?rev=1.15&content-type=text/plain
73 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/irc-client/ChangeLog?r1=1.14&r2=1.15
74
75 Index: ChangeLog
76 ===================================================================
77 RCS file: /var/cvsroot/gentoo-x86/net-irc/irc-client/ChangeLog,v
78 retrieving revision 1.14
79 retrieving revision 1.15
80 diff -u -r1.14 -r1.15
81 --- ChangeLog 23 Sep 2009 18:44:17 -0000 1.14
82 +++ ChangeLog 2 Dec 2011 01:14:31 -0000 1.15
83 @@ -1,6 +1,12 @@
84 # ChangeLog for net-irc/irc-client
85 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
86 -# $Header: /var/cvsroot/gentoo-x86/net-irc/irc-client/ChangeLog,v 1.14 2009/09/23 18:44:17 patrick Exp $
87 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
88 +# $Header: /var/cvsroot/gentoo-x86/net-irc/irc-client/ChangeLog,v 1.15 2011/12/02 01:14:31 binki Exp $
89 +
90 + 02 Dec 2011; Nathan Phillip Brink <binki@g.o>
91 + irc-client-2.10.3_p7.ebuild, +files/irc-client-2.10.3_p7-amd64-chost.patch:
92 + Add blocker against net-irc/ircii for bug #247987. Add missing `|| die', misc
93 + shell style change (remove backticks). Fix compilation error caused by
94 + disagreement between ${CHOST} and ./config.guess with patch.
95
96 23 Sep 2009; Patrick Lauer <patrick@g.o>
97 irc-client-2.10.3_p7.ebuild: