public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-irc/xchat-gnome: ChangeLog xchat-gnome-0.26.1-r1.ebuild
@ 2010-04-06 15:59 Romain Perier (mrpouet)
  0 siblings, 0 replies; 7+ messages in thread
From: Romain Perier (mrpouet) @ 2010-04-06 15:59 UTC (permalink / raw
  To: gentoo-commits

mrpouet     10/04/06 15:59:26

  Modified:             ChangeLog
  Added:                xchat-gnome-0.26.1-r1.ebuild
  Log:
  Disable maintainer-mode since it enables DISABLE_DEPRECATED macros, which may cause build failure and backward compat issues with glib and gtk+
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.55                 net-irc/xchat-gnome/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/ChangeLog?r1=1.54&r2=1.55

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog	21 Oct 2009 12:16:09 -0000	1.54
+++ ChangeLog	6 Apr 2010 15:59:26 -0000	1.55
@@ -1,6 +1,13 @@
 # ChangeLog for net-irc/xchat-gnome
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.54 2009/10/21 12:16:09 maekke Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.55 2010/04/06 15:59:26 mrpouet Exp $
+
+*xchat-gnome-0.26.1-r1 (06 Apr 2010)
+
+  06 Apr 2010; Romain Perier <mrpouet@gentoo.org>
+  +xchat-gnome-0.26.1-r1.ebuild:
+  Disable maintainer-mode since it enables DISABLE_DEPRECATED macros, which
+  may cause build failure and backward compat issues with glib and gtk+.
 
   21 Oct 2009; Markus Meier <maekke@gentoo.org> xchat-gnome-0.26.1.ebuild:
   x86 stable, bug #285477



1.1                  net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: xchat-gnome-0.26.1-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v 1.1 2010/04/06 15:59:26 mrpouet Exp $

EAPI="2"

inherit gnome2 eutils toolchain-funcs

DESCRIPTION="GNOME frontend for the popular X-Chat IRC client"
HOMEPAGE="http://xchat-gnome.navi.cx/"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
IUSE="dbus ipv6 libnotify mmx nls perl python sound spell ssl tcl"

RDEPEND=">=dev-libs/glib-2.18.0
	>=gnome-base/libgnome-2.16.0
	>=gnome-base/gconf-2.8.0
	>=gnome-base/libgnomeui-2.16.0
	>=gnome-base/libglade-2.3.2
	>=x11-libs/gtk+-2.14.0
	spell? ( app-text/enchant )
	ssl? ( >=dev-libs/openssl-0.9.6d )
	perl? ( >=dev-lang/perl-5.6.1 )
	python? ( dev-lang/python )
	tcl? ( dev-lang/tcl )
	dbus? ( >=sys-apps/dbus-0.60 )
	>=x11-libs/libsexy-0.1.11
	libnotify? ( >=x11-libs/libnotify-0.3.2 )
	sound? ( >=media-libs/libcanberra-0.3[gtk] )
	x11-libs/libX11"

DEPEND="${RDEPEND}
	>=dev-util/pkgconfig-0.7
	>=app-text/gnome-doc-utils-0.3.2
	nls? ( sys-devel/gettext )"

# gnome-base/gnome-common needed when doing eautoreconf

pkg_setup() {
	if [[ $(gcc-major-version) -lt 4 || (
		$(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 1 || (
			$(gcc-major-version) -eq 4 && $(gcc-minor-version) -eq 1 && $(gcc-micro-version) -lt 3 ) ) ]]; then
			ewarn "${P} requires >=sys-devel/gcc-4.1.3 to compile"
			die "Please select >=sys-devel/gcc-4.1.3"
	fi

	# Per configure.ac, shm is disable because of upstream bug #565958
	# --enable-shm
	G2CONF="${G2CONF}
		--enable-gnomefe
		--disable-schemas-install
		--disable-scrollkeeper
		--disable-static
		--disable-maintainer-mode
		$(use_enable ssl openssl)
		$(use_enable perl)
		$(use_enable python)
		$(use_enable tcl)
		$(use_enable mmx)
		$(use_enable ipv6)
		$(use_enable dbus)
		$(use_enable nls)
		$(use_enable sound canberra)
		$(use_enable libnotify notification)"
}

src_install() {
	gnome2_src_install

	# install plugin development header
	insinto /usr/include/xchat-gnome
	doins src/common/xchat-plugin.h || die "doins failed"

	dodoc AUTHORS ChangeLog NEWS || die "dodoc failed"
}






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-irc/xchat-gnome: ChangeLog xchat-gnome-0.26.1-r1.ebuild
@ 2010-09-11 10:23 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 7+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2010-09-11 10:23 UTC (permalink / raw
  To: gentoo-commits

nixnut      10/09/11 10:23:43

  Modified:             ChangeLog xchat-gnome-0.26.1-r1.ebuild
  Log:
  ppc stable #331257
  (Portage version: 2.1.8.3/cvs/Linux ppc)

Revision  Changes    Path
1.56                 net-irc/xchat-gnome/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?r1=1.55&r2=1.56

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	6 Apr 2010 15:59:26 -0000	1.55
+++ ChangeLog	11 Sep 2010 10:23:43 -0000	1.56
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/xchat-gnome
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.55 2010/04/06 15:59:26 mrpouet Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.56 2010/09/11 10:23:43 nixnut Exp $
+
+  11 Sep 2010; <nixnut@gentoo.org> xchat-gnome-0.26.1-r1.ebuild:
+  ppc stable #331257
 
 *xchat-gnome-0.26.1-r1 (06 Apr 2010)
 



1.2                  net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?r1=1.1&r2=1.2

Index: xchat-gnome-0.26.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xchat-gnome-0.26.1-r1.ebuild	6 Apr 2010 15:59:26 -0000	1.1
+++ xchat-gnome-0.26.1-r1.ebuild	11 Sep 2010 10:23:43 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v 1.1 2010/04/06 15:59:26 mrpouet Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v 1.2 2010/09/11 10:23:43 nixnut Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ppc ~ppc64 ~x86 ~x86-fbsd"
 IUSE="dbus ipv6 libnotify mmx nls perl python sound spell ssl tcl"
 
 RDEPEND=">=dev-libs/glib-2.18.0






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-irc/xchat-gnome: ChangeLog xchat-gnome-0.26.1-r1.ebuild
@ 2010-10-12 16:51 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 7+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-10-12 16:51 UTC (permalink / raw
  To: gentoo-commits

fauli       10/10/12 16:51:40

  Modified:             ChangeLog xchat-gnome-0.26.1-r1.ebuild
  Log:
  stable x86, bug 331257
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.58                 net-irc/xchat-gnome/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.58&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.58&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?r1=1.57&r2=1.58

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog	11 Sep 2010 10:28:32 -0000	1.57
+++ ChangeLog	12 Oct 2010 16:51:40 -0000	1.58
@@ -1,6 +1,10 @@
 # ChangeLog for net-irc/xchat-gnome
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.57 2010/09/11 10:28:32 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.58 2010/10/12 16:51:40 fauli Exp $
+
+  12 Oct 2010; Christian Faulhammer <fauli@gentoo.org>
+  xchat-gnome-0.26.1-r1.ebuild:
+  stable x86, bug 331257
 
   11 Sep 2010; <nixnut@gentoo.org> xchat-gnome-0.26.1.ebuild:
   reverting premature stabling



1.3                  net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?r1=1.2&r2=1.3

Index: xchat-gnome-0.26.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xchat-gnome-0.26.1-r1.ebuild	11 Sep 2010 10:23:43 -0000	1.2
+++ xchat-gnome-0.26.1-r1.ebuild	12 Oct 2010 16:51:40 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v 1.2 2010/09/11 10:23:43 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v 1.3 2010/10/12 16:51:40 fauli Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~ppc64 ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ppc ~ppc64 x86 ~x86-fbsd"
 IUSE="dbus ipv6 libnotify mmx nls perl python sound spell ssl tcl"
 
 RDEPEND=">=dev-libs/glib-2.18.0






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-irc/xchat-gnome: ChangeLog xchat-gnome-0.26.1-r1.ebuild
@ 2010-10-13 11:45 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-10-13 11:45 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/10/13 11:45:42

  Modified:             ChangeLog xchat-gnome-0.26.1-r1.ebuild
  Log:
  Stable on amd64 wrt bug #331257
  
  (Portage version: 2.2_rc92/cvs/Linux x86_64)

Revision  Changes    Path
1.59                 net-irc/xchat-gnome/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.59&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.59&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?r1=1.58&r2=1.59

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog	12 Oct 2010 16:51:40 -0000	1.58
+++ ChangeLog	13 Oct 2010 11:45:42 -0000	1.59
@@ -1,6 +1,10 @@
 # ChangeLog for net-irc/xchat-gnome
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.58 2010/10/12 16:51:40 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.59 2010/10/13 11:45:42 hwoarang Exp $
+
+  13 Oct 2010; Markos Chandras <hwoarang@gentoo.org>
+  xchat-gnome-0.26.1-r1.ebuild:
+  Stable on amd64 wrt bug #331257
 
   12 Oct 2010; Christian Faulhammer <fauli@gentoo.org>
   xchat-gnome-0.26.1-r1.ebuild:



1.4                  net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?r1=1.3&r2=1.4

Index: xchat-gnome-0.26.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xchat-gnome-0.26.1-r1.ebuild	12 Oct 2010 16:51:40 -0000	1.3
+++ xchat-gnome-0.26.1-r1.ebuild	13 Oct 2010 11:45:42 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v 1.3 2010/10/12 16:51:40 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v 1.4 2010/10/13 11:45:42 hwoarang Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~ppc64 x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc ~ppc64 x86 ~x86-fbsd"
 IUSE="dbus ipv6 libnotify mmx nls perl python sound spell ssl tcl"
 
 RDEPEND=">=dev-libs/glib-2.18.0






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-irc/xchat-gnome: ChangeLog xchat-gnome-0.26.1-r1.ebuild
@ 2010-12-27 12:44 Gilles Dartiguelongue (eva)
  0 siblings, 0 replies; 7+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2010-12-27 12:44 UTC (permalink / raw
  To: gentoo-commits

eva         10/12/27 12:44:37

  Modified:             ChangeLog xchat-gnome-0.26.1-r1.ebuild
  Log:
  Fix build of italian documentation, bug #341173. Make use of python eclass, bug #315313. Drop unused la files.
  
  (Portage version: 2.2.0_alpha10/cvs/Linux x86_64)

Revision  Changes    Path
1.60                 net-irc/xchat-gnome/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.60&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.60&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?r1=1.59&r2=1.60

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	13 Oct 2010 11:45:42 -0000	1.59
+++ ChangeLog	27 Dec 2010 12:44:37 -0000	1.60
@@ -1,6 +1,11 @@
 # ChangeLog for net-irc/xchat-gnome
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.59 2010/10/13 11:45:42 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.60 2010/12/27 12:44:37 eva Exp $
+
+  27 Dec 2010; Gilles Dartiguelongue <eva@gentoo.org>
+  xchat-gnome-0.26.1-r1.ebuild, +files/xchat-gnome-0.26.1-fix-it-help.patch:
+  Fix build of italian documentation, bug #341173. Make use of python eclass,
+  bug #315313. Drop unused la files.
 
   13 Oct 2010; Markos Chandras <hwoarang@gentoo.org>
   xchat-gnome-0.26.1-r1.ebuild:



1.5                  net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?r1=1.4&r2=1.5

Index: xchat-gnome-0.26.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- xchat-gnome-0.26.1-r1.ebuild	13 Oct 2010 11:45:42 -0000	1.4
+++ xchat-gnome-0.26.1-r1.ebuild	27 Dec 2010 12:44:37 -0000	1.5
@@ -1,10 +1,12 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v 1.4 2010/10/13 11:45:42 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v 1.5 2010/12/27 12:44:37 eva Exp $
 
 EAPI="2"
+GCONF_DEBUG="yes"
+PYTHON_DEPEND="python? 2"
 
-inherit gnome2 eutils toolchain-funcs
+inherit eutils gnome2 python toolchain-funcs
 
 DESCRIPTION="GNOME frontend for the popular X-Chat IRC client"
 HOMEPAGE="http://xchat-gnome.navi.cx/"
@@ -14,16 +16,15 @@
 KEYWORDS="amd64 ppc ~ppc64 x86 ~x86-fbsd"
 IUSE="dbus ipv6 libnotify mmx nls perl python sound spell ssl tcl"
 
-RDEPEND=">=dev-libs/glib-2.18.0
+RDEPEND=">=dev-libs/glib-2.18:2
 	>=gnome-base/libgnome-2.16.0
 	>=gnome-base/gconf-2.8.0
 	>=gnome-base/libgnomeui-2.16.0
 	>=gnome-base/libglade-2.3.2
-	>=x11-libs/gtk+-2.14.0
+	>=x11-libs/gtk+-2.14:2
 	spell? ( app-text/enchant )
 	ssl? ( >=dev-libs/openssl-0.9.6d )
 	perl? ( >=dev-lang/perl-5.6.1 )
-	python? ( dev-lang/python )
 	tcl? ( dev-lang/tcl )
 	dbus? ( >=sys-apps/dbus-0.60 )
 	>=x11-libs/libsexy-0.1.11
@@ -64,6 +65,15 @@
 		$(use_enable nls)
 		$(use_enable sound canberra)
 		$(use_enable libnotify notification)"
+
+	python_set_active_version 2
+}
+
+src_prepare() {
+	gnome2_src_prepare
+
+	# Fix build with it documentation, bug #341173
+	epatch "${FILESDIR}/${PN}-0.26.1-fix-it-help.patch"
 }
 
 src_install() {
@@ -74,4 +84,7 @@
 	doins src/common/xchat-plugin.h || die "doins failed"
 
 	dodoc AUTHORS ChangeLog NEWS || die "dodoc failed"
+
+	# Not needed for plugins
+	find "${D}" -type f -name "*.la" -delete || die "la files removal failed"
 }






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-irc/xchat-gnome: ChangeLog xchat-gnome-0.26.1-r1.ebuild
@ 2011-03-09 16:18 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 7+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-03-09 16:18 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/03/09 16:18:31

  Modified:             ChangeLog xchat-gnome-0.26.1-r1.ebuild
  Log:
  Fix building with x11-libs/libnotify >= 0.7 wrt #358039 by Juergen Rose. Remove now deprecated check for sys-devel/gcc >= 4.1 since minimum supported version is 4.4.
  
  (Portage version: 2.2.0_alpha26/cvs/Linux x86_64)

Revision  Changes    Path
1.62                 net-irc/xchat-gnome/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	15 Feb 2011 08:19:25 -0000	1.61
+++ ChangeLog	9 Mar 2011 16:18:31 -0000	1.62
@@ -1,6 +1,12 @@
 # ChangeLog for net-irc/xchat-gnome
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.61 2011/02/15 08:19:25 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.62 2011/03/09 16:18:31 ssuominen Exp $
+
+  09 Mar 2011; Samuli Suominen <ssuominen@gentoo.org>
+  xchat-gnome-0.26.1-r1.ebuild, +files/xchat-gnome-0.26.1-libnotify-0.7.patch:
+  Fix building with x11-libs/libnotify >= 0.7 wrt #358039 by Juergen Rose.
+  Remove now deprecated check for sys-devel/gcc >= 4.1 since minimum supported
+  version is 4.4.
 
   15 Feb 2011; Gilles Dartiguelongue <eva@gentoo.org>
   xchat-gnome-0.26.1-r1.ebuild, metadata.xml:



1.8                  net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild?r1=1.7&r2=1.8

Index: xchat-gnome-0.26.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- xchat-gnome-0.26.1-r1.ebuild	15 Feb 2011 08:19:25 -0000	1.7
+++ xchat-gnome-0.26.1-r1.ebuild	9 Mar 2011 16:18:31 -0000	1.8
@@ -1,12 +1,12 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v 1.7 2011/02/15 08:19:25 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.26.1-r1.ebuild,v 1.8 2011/03/09 16:18:31 ssuominen Exp $
 
 EAPI="2"
 GCONF_DEBUG="yes"
 PYTHON_DEPEND="python? 2"
 
-inherit eutils gnome2 python toolchain-funcs
+inherit eutils gnome2 python
 
 DESCRIPTION="GNOME frontend for the popular X-Chat IRC client"
 HOMEPAGE="http://xchat-gnome.navi.cx/"
@@ -40,13 +40,6 @@
 # gnome-base/gnome-common needed when doing eautoreconf
 
 pkg_setup() {
-	if [[ $(gcc-major-version) -lt 4 || (
-		$(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 1 || (
-			$(gcc-major-version) -eq 4 && $(gcc-minor-version) -eq 1 && $(gcc-micro-version) -lt 3 ) ) ]]; then
-			ewarn "${P} requires >=sys-devel/gcc-4.1.3 to compile"
-			die "Please select >=sys-devel/gcc-4.1.3"
-	fi
-
 	# Per configure.ac, shm is disable because of upstream bug #565958
 	# --enable-shm
 	G2CONF="${G2CONF}
@@ -72,6 +65,8 @@
 }
 
 src_prepare() {
+	epatch "${FILESDIR}"/${P}-libnotify-0.7.patch
+
 	gnome2_src_prepare
 
 	# Fix build with it documentation, bug #341173






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-irc/xchat-gnome: ChangeLog xchat-gnome-0.26.1-r1.ebuild
@ 2013-03-29 23:29 Gilles Dartiguelongue (eva)
  0 siblings, 0 replies; 7+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2013-03-29 23:29 UTC (permalink / raw
  To: gentoo-commits

eva         13/03/29 23:29:56

  Modified:             ChangeLog
  Removed:              xchat-gnome-0.26.1-r1.ebuild
  Log:
  Clean up old revision.
  
  (Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key C6085806)

Revision  Changes    Path
1.75                 net-irc/xchat-gnome/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/xchat-gnome/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	2 Feb 2013 23:02:36 -0000	1.74
+++ ChangeLog	29 Mar 2013 23:29:56 -0000	1.75
@@ -1,6 +1,10 @@
 # ChangeLog for net-irc/xchat-gnome
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.74 2013/02/02 23:02:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.75 2013/03/29 23:29:56 eva Exp $
+
+  29 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org>
+  -xchat-gnome-0.26.1-r1.ebuild:
+  Clean up old revision.
 
   02 Feb 2013; Agostino Sarubbo <ago@gentoo.org> xchat-gnome-0.26.1-r2.ebuild:
   Add ~arm, wrt bug #449220





^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2013-03-29 23:29 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-06 15:59 [gentoo-commits] gentoo-x86 commit in net-irc/xchat-gnome: ChangeLog xchat-gnome-0.26.1-r1.ebuild Romain Perier (mrpouet)
  -- strict thread matches above, loose matches on Subject: below --
2010-09-11 10:23 Gysbert Wassenaar (nixnut)
2010-10-12 16:51 Christian Faulhammer (fauli)
2010-10-13 11:45 Markos Chandras (hwoarang)
2010-12-27 12:44 Gilles Dartiguelongue (eva)
2011-03-09 16:18 Samuli Suominen (ssuominen)
2013-03-29 23:29 Gilles Dartiguelongue (eva)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox