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/xchat: xchat-2.8.8-r2.ebuild ChangeLog
Date: Sat, 02 Jul 2011 06:13:35
Message-Id: 20110702061322.659EC2004B@flycatcher.gentoo.org
1 binki 11/07/02 06:13:22
2
3 Modified: xchat-2.8.8-r2.ebuild ChangeLog
4 Log:
5 Import gentoo-prefix support from the prefix-overlay, including bump to EAPI=3, for xchat-2.8.8-r2.
6
7 (Portage version: 2.2.0_alpha41-r1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 net-irc/xchat/xchat-2.8.8-r2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat/xchat-2.8.8-r2.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat/xchat-2.8.8-r2.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat/xchat-2.8.8-r2.ebuild?r1=1.3&r2=1.4
15
16 Index: xchat-2.8.8-r2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat/xchat-2.8.8-r2.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- xchat-2.8.8-r2.ebuild 22 Mar 2011 09:54:15 -0000 1.3
23 +++ xchat-2.8.8-r2.ebuild 2 Jul 2011 06:13:22 -0000 1.4
24 @@ -1,8 +1,8 @@
25 # Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/xchat-2.8.8-r2.ebuild,v 1.3 2011/03/22 09:54:15 nirbheek Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/xchat-2.8.8-r2.ebuild,v 1.4 2011/07/02 06:13:22 binki Exp $
29
30 -EAPI=2
31 +EAPI=3
32
33 inherit eutils versionator gnome2 autotools
34
35 @@ -16,7 +16,7 @@
36
37 LICENSE="GPL-2 hires-icons? ( GPL-3 )"
38 SLOT="2"
39 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
40 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
41 IUSE="dbus fastscroll +gtk hires-icons ipv6 libnotify mmx nls ntlm perl python spell ssl tcl xchatdccserver"
42
43 RDEPEND=">=dev-libs/glib-2.6.0:2
44 @@ -45,6 +45,7 @@
45
46 src_prepare() {
47 epatch "${FILESDIR}"/${PN}-input-box4.patch
48 + epatch "${FILESDIR}"/${PN}-2.8.4-interix.patch
49 epatch "${FILESDIR}"/${P}-libnotify07.patch
50
51 use xchatdccserver && epatch "${DISTDIR}"/xchat-dccserver-0.6.patch.bz2
52 @@ -57,7 +58,7 @@
53
54 # xchat sourcecode ships with po/Makefile.in.in from gettext-0.17
55 # which fails with >=gettext-0.18
56 - cp /usr/share/gettext/po/Makefile.in.in "${S}"/po/ || die
57 + cp "${EPREFIX}"/usr/share/gettext/po/Makefile.in.in "${S}"/po/ || die
58
59 eautoreconf
60 }
61 @@ -67,6 +68,13 @@
62 # instead of python-config (#25943)
63 unset PYTHONPATH
64
65 + if [[ ${CHOST} == *-interix* ]]; then
66 + # this -Wl,-E option for the interix ld makes some checks
67 + # false positives, so set those here.
68 + export ac_cv_func_strtoull=no
69 + export ac_cv_func_memrchr=no
70 + fi
71 +
72 econf \
73 --enable-shm \
74 $(use_enable dbus) \
75
76
77
78 1.298 net-irc/xchat/ChangeLog
79
80 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat/ChangeLog?rev=1.298&view=markup
81 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat/ChangeLog?rev=1.298&content-type=text/plain
82 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat/ChangeLog?r1=1.297&r2=1.298
83
84 Index: ChangeLog
85 ===================================================================
86 RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat/ChangeLog,v
87 retrieving revision 1.297
88 retrieving revision 1.298
89 diff -u -r1.297 -r1.298
90 --- ChangeLog 29 Mar 2011 12:50:37 -0000 1.297
91 +++ ChangeLog 2 Jul 2011 06:13:22 -0000 1.298
92 @@ -1,6 +1,11 @@
93 # ChangeLog for net-irc/xchat
94 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
95 -# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/ChangeLog,v 1.297 2011/03/29 12:50:37 angelos Exp $
96 +# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat/ChangeLog,v 1.298 2011/07/02 06:13:22 binki Exp $
97 +
98 + 02 Jul 2011; Nathan Phillip Brink <binki@g.o>
99 + +files/xchat-2.8.4-interix.patch, xchat-2.8.8-r2.ebuild:
100 + Import gentoo-prefix support from the prefix-overlay, including bump to
101 + EAPI=3, for xchat-2.8.8-r2.
102
103 29 Mar 2011; Christoph Mende <angelos@g.o> xchat-2.8.6-r2.ebuild:
104 Fix gtk+ slot deps