public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ml/lablgtk: ChangeLog lablgtk-2.14.2.ebuild
@ 2010-09-29 18:01 Alexis Ballier (aballier)
  0 siblings, 0 replies; 9+ messages in thread
From: Alexis Ballier (aballier) @ 2010-09-29 18:01 UTC (permalink / raw
  To: gentoo-commits

aballier    10/09/29 18:01:20

  Modified:             ChangeLog
  Added:                lablgtk-2.14.2.ebuild
  Log:
  version bump
  
  (Portage version: 2.2_rc88/cvs/Linux x86_64)

Revision  Changes    Path
1.84                 dev-ml/lablgtk/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?r1=1.83&r2=1.84

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	3 Aug 2010 20:38:28 -0000	1.83
+++ ChangeLog	29 Sep 2010 18:01:19 -0000	1.84
@@ -1,6 +1,11 @@
 # ChangeLog for dev-ml/lablgtk
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.83 2010/08/03 20:38:28 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.84 2010/09/29 18:01:19 aballier Exp $
+
+*lablgtk-2.14.2 (29 Sep 2010)
+
+  29 Sep 2010; Alexis Ballier <aballier@gentoo.org> +lablgtk-2.14.2.ebuild:
+  version bump
 
   03 Aug 2010; Alexis Ballier <aballier@gentoo.org> lablgtk-2.14.1.ebuild,
   +files/lablgtk-2.14.1-ocaml312.patch:



1.1                  dev-ml/lablgtk/lablgtk-2.14.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.1&content-type=text/plain

Index: lablgtk-2.14.2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.1 2010/09/29 18:01:20 aballier Exp $

EAPI="2"

inherit multilib

IUSE="debug examples glade gnome gnomecanvas sourceview +ocamlopt opengl spell svg"

DESCRIPTION="Objective CAML interface for Gtk+2"
HOMEPAGE="http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/lablgtk.html"
SRC_URI="http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/dist/${P}.tar.gz"
LICENSE="LGPL-2.1 as-is"

RDEPEND=">=x11-libs/gtk+-2.10
	>=dev-lang/ocaml-3.10[ocamlopt?]
	svg? ( >=gnome-base/librsvg-2.2 )
	glade? ( >=gnome-base/libglade-2.0.1 )
	gnomecanvas? ( >=gnome-base/libgnomecanvas-2.2 )
	gnome? ( >=gnome-base/gnome-panel-2.4.0
		>=gnome-base/libgnomeui-2.4.0 )
	opengl? ( >=dev-ml/lablgl-0.98
		>=x11-libs/gtkglarea-1.9 )
	spell? ( app-text/gtkspell )
	sourceview? ( x11-libs/gtksourceview:2.0 )
	"
DEPEND="${RDEPEND}
	dev-util/pkgconfig"

SLOT="2"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd ~x86-linux"

src_configure() {
	econf $(use_enable debug) \
		$(use_with svg rsvg) \
		$(use_with glade) \
		$(use_with gnome gnomeui) \
		$(use_with gnome panel) \
		$(use_with opengl gl) \
		$(use_with spell gtkspell) \
		--without-gtksourceview \
		$(use_with sourceview gtksourceview2) \
		$(use_with gnomecanvas)
}

src_compile() {
	emake -j1 all || die "make failed"
	if use ocamlopt; then
		emake -j1 opt || die "Compiling native code failed"
	fi
}

install_examples() {
	insinto /usr/share/doc/${P}/examples
	doins examples/*.ml examples/*.rgb examples/*.png examples/*.xpm

	# Install examples for optional components
	use gnomecanvas && insinto /usr/share/doc/${P}/examples/canvas && doins examples/canvas/*.ml examples/canvas/*.png
	use svg && insinto /usr/share/doc/${P}/examples/rsvg && doins examples/rsvg/*.ml examples/rsvg/*.svg
	use glade && insinto /usr/share/doc/${P}/examples/glade && doins examples/glade/*.ml examples/glade/*.glade*
	use sourceview && insinto /usr/share/doc/${P}/examples/sourceview && doins examples/sourceview/*.ml examples/sourceview/*.lang
	use opengl && insinto /usr/share/doc/${P}/examples/GL && doins examples/GL/*.ml
	use gnome && insinto /usr/share/doc/${P}/examples/panel && doins examples/panel/*
}

src_install () {
	emake install DESTDIR="${D}" || die

	# ocamlfind support
	insinto /usr/$(get_libdir)/ocaml/lablgtk2
	doins META

	dodoc CHANGES README CHANGES.API
	use examples && install_examples
}

pkg_postinst () {
	use examples && elog "To run the examples you can use the lablgtk2 toplevel."
	use examples && elog "e.g: lablgtk2 /usr/share/doc/${P}/examples/testgtk.ml"
}






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/lablgtk: ChangeLog lablgtk-2.14.2.ebuild
@ 2010-11-05 18:25 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 9+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-11-05 18:25 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/11/05 18:25:32

  Modified:             ChangeLog lablgtk-2.14.2.ebuild
  Log:
  Stable on amd64 wrt bug #343751
  
  (Portage version: 2.1.9.24/cvs/Linux x86_64)

Revision  Changes    Path
1.85                 dev-ml/lablgtk/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?r1=1.84&r2=1.85

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	29 Sep 2010 18:01:19 -0000	1.84
+++ ChangeLog	5 Nov 2010 18:25:32 -0000	1.85
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/lablgtk
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.84 2010/09/29 18:01:19 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.85 2010/11/05 18:25:32 hwoarang Exp $
+
+  05 Nov 2010; Markos Chandras <hwoarang@gentoo.org> lablgtk-2.14.2.ebuild:
+  Stable on amd64 wrt bug #343751
 
 *lablgtk-2.14.2 (29 Sep 2010)
 



1.2                  dev-ml/lablgtk/lablgtk-2.14.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?r1=1.1&r2=1.2

Index: lablgtk-2.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lablgtk-2.14.2.ebuild	29 Sep 2010 18:01:20 -0000	1.1
+++ lablgtk-2.14.2.ebuild	5 Nov 2010 18:25:32 -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/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.1 2010/09/29 18:01:20 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.2 2010/11/05 18:25:32 hwoarang Exp $
 
 EAPI="2"
 
@@ -29,7 +29,7 @@
 	dev-util/pkgconfig"
 
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd ~x86-linux"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd ~x86-linux"
 
 src_configure() {
 	econf $(use_enable debug) \






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/lablgtk: ChangeLog lablgtk-2.14.2.ebuild
@ 2010-11-15  9:09 Thomas Kahle (tomka)
  0 siblings, 0 replies; 9+ messages in thread
From: Thomas Kahle (tomka) @ 2010-11-15  9:09 UTC (permalink / raw
  To: gentoo-commits

tomka       10/11/15 09:09:15

  Modified:             ChangeLog lablgtk-2.14.2.ebuild
  Log:
  x86 stable per bug 343751
  
  (Portage version: 2.1.9.24/cvs/Linux i686)

Revision  Changes    Path
1.86                 dev-ml/lablgtk/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?r1=1.85&r2=1.86

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	5 Nov 2010 18:25:32 -0000	1.85
+++ ChangeLog	15 Nov 2010 09:09:15 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/lablgtk
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.85 2010/11/05 18:25:32 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.86 2010/11/15 09:09:15 tomka Exp $
+
+  15 Nov 2010; Thomas Kahle <tomka@gentoo.org> lablgtk-2.14.2.ebuild:
+  x86 stable per bug 343751
 
   05 Nov 2010; Markos Chandras <hwoarang@gentoo.org> lablgtk-2.14.2.ebuild:
   Stable on amd64 wrt bug #343751



1.3                  dev-ml/lablgtk/lablgtk-2.14.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?r1=1.2&r2=1.3

Index: lablgtk-2.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- lablgtk-2.14.2.ebuild	5 Nov 2010 18:25:32 -0000	1.2
+++ lablgtk-2.14.2.ebuild	15 Nov 2010 09:09:15 -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/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.2 2010/11/05 18:25:32 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.3 2010/11/15 09:09:15 tomka Exp $
 
 EAPI="2"
 
@@ -29,7 +29,7 @@
 	dev-util/pkgconfig"
 
 SLOT="2"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd ~x86-linux"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~sparc x86 ~x86-fbsd ~x86-linux"
 
 src_configure() {
 	econf $(use_enable debug) \






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/lablgtk: ChangeLog lablgtk-2.14.2.ebuild
@ 2010-12-04 17:45 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2010-12-04 17:45 UTC (permalink / raw
  To: gentoo-commits

armin76     10/12/04 17:45:58

  Modified:             ChangeLog lablgtk-2.14.2.ebuild
  Log:
  alpha/ia64/sparc stable wrt #343751
  
  (Portage version: 2.1.9.24/cvs/Linux ia64)

Revision  Changes    Path
1.87                 dev-ml/lablgtk/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?r1=1.86&r2=1.87

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	15 Nov 2010 09:09:15 -0000	1.86
+++ ChangeLog	4 Dec 2010 17:45:58 -0000	1.87
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/lablgtk
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.86 2010/11/15 09:09:15 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.87 2010/12/04 17:45:58 armin76 Exp $
+
+  04 Dec 2010; Raúl Porcel <armin76@gentoo.org> lablgtk-2.14.2.ebuild:
+  alpha/ia64/sparc stable wrt #343751
 
   15 Nov 2010; Thomas Kahle <tomka@gentoo.org> lablgtk-2.14.2.ebuild:
   x86 stable per bug 343751



1.4                  dev-ml/lablgtk/lablgtk-2.14.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?r1=1.3&r2=1.4

Index: lablgtk-2.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- lablgtk-2.14.2.ebuild	15 Nov 2010 09:09:15 -0000	1.3
+++ lablgtk-2.14.2.ebuild	4 Dec 2010 17:45:58 -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/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.3 2010/11/15 09:09:15 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.4 2010/12/04 17:45:58 armin76 Exp $
 
 EAPI="2"
 
@@ -29,7 +29,7 @@
 	dev-util/pkgconfig"
 
 SLOT="2"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~sparc x86 ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 ia64 ~ppc sparc x86 ~x86-fbsd ~x86-linux"
 
 src_configure() {
 	econf $(use_enable debug) \






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/lablgtk: ChangeLog lablgtk-2.14.2.ebuild
@ 2010-12-09 15:42 Alexis Ballier (aballier)
  0 siblings, 0 replies; 9+ messages in thread
From: Alexis Ballier (aballier) @ 2010-12-09 15:42 UTC (permalink / raw
  To: gentoo-commits

aballier    10/12/09 15:42:04

  Modified:             ChangeLog lablgtk-2.14.2.ebuild
  Log:
  Fix dep on gnome-panel[bonobo], bug #348162 by Pacho Ramos <pacho@gentoo.org>
  
  (Portage version: 2.2.0_alpha7/cvs/Linux x86_64)

Revision  Changes    Path
1.88                 dev-ml/lablgtk/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?r1=1.87&r2=1.88

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	4 Dec 2010 17:45:58 -0000	1.87
+++ ChangeLog	9 Dec 2010 15:42:04 -0000	1.88
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/lablgtk
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.87 2010/12/04 17:45:58 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.88 2010/12/09 15:42:04 aballier Exp $
+
+  09 Dec 2010; Alexis Ballier <aballier@gentoo.org> lablgtk-2.14.2.ebuild:
+  Fix dep on gnome-panel[bonobo], bug #348162 by Pacho Ramos <pacho@gentoo.org>
 
   04 Dec 2010; Raúl Porcel <armin76@gentoo.org> lablgtk-2.14.2.ebuild:
   alpha/ia64/sparc stable wrt #343751



1.5                  dev-ml/lablgtk/lablgtk-2.14.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?r1=1.4&r2=1.5

Index: lablgtk-2.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- lablgtk-2.14.2.ebuild	4 Dec 2010 17:45:58 -0000	1.4
+++ lablgtk-2.14.2.ebuild	9 Dec 2010 15:42:04 -0000	1.5
@@ -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/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.4 2010/12/04 17:45:58 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.5 2010/12/09 15:42:04 aballier Exp $
 
 EAPI="2"
 
@@ -18,8 +18,11 @@
 	svg? ( >=gnome-base/librsvg-2.2 )
 	glade? ( >=gnome-base/libglade-2.0.1 )
 	gnomecanvas? ( >=gnome-base/libgnomecanvas-2.2 )
-	gnome? ( >=gnome-base/gnome-panel-2.4.0
-		>=gnome-base/libgnomeui-2.4.0 )
+	gnome? (
+		|| ( >=gnome-base/gnome-panel-2.32[bonobo] <gnome-base/gnome-panel-2.32 )
+		>=gnome-base/gnome-panel-2.4.0
+		>=gnome-base/libgnomeui-2.4.0
+		)
 	opengl? ( >=dev-ml/lablgl-0.98
 		>=x11-libs/gtkglarea-1.9 )
 	spell? ( app-text/gtkspell )






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/lablgtk: ChangeLog lablgtk-2.14.2.ebuild
@ 2011-01-22 23:03 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 9+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-01-22 23:03 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/01/22 23:03:51

  Modified:             ChangeLog lablgtk-2.14.2.ebuild
  Log:
  ppc stable wrt #343751
  
  (Portage version: 2.1.9.25/cvs/Linux ppc64)

Revision  Changes    Path
1.89                 dev-ml/lablgtk/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?r1=1.88&r2=1.89

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog	9 Dec 2010 15:42:04 -0000	1.88
+++ ChangeLog	22 Jan 2011 23:03:51 -0000	1.89
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/lablgtk
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.88 2010/12/09 15:42:04 aballier Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.89 2011/01/22 23:03:51 xarthisius Exp $
+
+  22 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org> lablgtk-2.14.2.ebuild:
+  ppc stable wrt #343751
 
   09 Dec 2010; Alexis Ballier <aballier@gentoo.org> lablgtk-2.14.2.ebuild:
   Fix dep on gnome-panel[bonobo], bug #348162 by Pacho Ramos <pacho@gentoo.org>



1.6                  dev-ml/lablgtk/lablgtk-2.14.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?r1=1.5&r2=1.6

Index: lablgtk-2.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- lablgtk-2.14.2.ebuild	9 Dec 2010 15:42:04 -0000	1.5
+++ lablgtk-2.14.2.ebuild	22 Jan 2011 23:03:51 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.5 2010/12/09 15:42:04 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.6 2011/01/22 23:03:51 xarthisius Exp $
 
 EAPI="2"
 
@@ -32,7 +32,7 @@
 	dev-util/pkgconfig"
 
 SLOT="2"
-KEYWORDS="alpha amd64 ia64 ~ppc sparc x86 ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~x86-fbsd ~x86-linux"
 
 src_configure() {
 	econf $(use_enable debug) \






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/lablgtk: ChangeLog lablgtk-2.14.2.ebuild
@ 2011-03-23 17:06 Gilles Dartiguelongue (eva)
  0 siblings, 0 replies; 9+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2011-03-23 17:06 UTC (permalink / raw
  To: gentoo-commits

eva         11/03/23 17:06:33

  Modified:             ChangeLog lablgtk-2.14.2.ebuild
  Log:
  Fix slot-deps on gnome libs.
  
  (Portage version: 2.2.0_alpha28/cvs/Linux x86_64, RepoMan options: --force)

Revision  Changes    Path
1.91                 dev-ml/lablgtk/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?r1=1.90&r2=1.91

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog	24 Jan 2011 09:14:18 -0000	1.90
+++ ChangeLog	23 Mar 2011 17:06:33 -0000	1.91
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/lablgtk
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.90 2011/01/24 09:14:18 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.91 2011/03/23 17:06:33 eva Exp $
+
+  23 Mar 2011; Gilles Dartiguelongue <eva@gentoo.org> lablgtk-2.14.2.ebuild:
+  Fix slot-deps on gnome libs.
 
   24 Jan 2011; Alexis Ballier <aballier@gentoo.org> -lablgtk-2.12.0.ebuild,
   -files/lablgtk-2.12.0-libgnomeui.patch, -lablgtk-2.14.1.ebuild,



1.7                  dev-ml/lablgtk/lablgtk-2.14.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?r1=1.6&r2=1.7

Index: lablgtk-2.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- lablgtk-2.14.2.ebuild	22 Jan 2011 23:03:51 -0000	1.6
+++ lablgtk-2.14.2.ebuild	23 Mar 2011 17:06:33 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.6 2011/01/22 23:03:51 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.7 2011/03/23 17:06:33 eva Exp $
 
 EAPI="2"
 
@@ -13,9 +13,9 @@
 SRC_URI="http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/dist/${P}.tar.gz"
 LICENSE="LGPL-2.1 as-is"
 
-RDEPEND=">=x11-libs/gtk+-2.10
+RDEPEND=">=x11-libs/gtk+-2.10:2
 	>=dev-lang/ocaml-3.10[ocamlopt?]
-	svg? ( >=gnome-base/librsvg-2.2 )
+	svg? ( >=gnome-base/librsvg-2.2:2 )
 	glade? ( >=gnome-base/libglade-2.0.1 )
 	gnomecanvas? ( >=gnome-base/libgnomecanvas-2.2 )
 	gnome? (
@@ -24,7 +24,7 @@
 		>=gnome-base/libgnomeui-2.4.0
 		)
 	opengl? ( >=dev-ml/lablgl-0.98
-		>=x11-libs/gtkglarea-1.9 )
+		>=x11-libs/gtkglarea-1.9:2 )
 	spell? ( app-text/gtkspell )
 	sourceview? ( x11-libs/gtksourceview:2.0 )
 	"






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

* [gentoo-commits] gentoo-x86 commit in dev-ml/lablgtk: ChangeLog lablgtk-2.14.2.ebuild
@ 2012-08-03 22:43 Alexis Ballier (aballier)
  0 siblings, 0 replies; 9+ messages in thread
From: Alexis Ballier (aballier) @ 2012-08-03 22:43 UTC (permalink / raw
  To: gentoo-commits

aballier    12/08/03 22:43:29

  Modified:             ChangeLog lablgtk-2.14.2.ebuild
  Log:
  as-is license only applies to examples, make it conditional in LICENSE
  
  (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)

Revision  Changes    Path
1.96                 dev-ml/lablgtk/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.96&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.96&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?r1=1.95&r2=1.96

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- ChangeLog	3 Aug 2012 22:41:35 -0000	1.95
+++ ChangeLog	3 Aug 2012 22:43:29 -0000	1.96
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/lablgtk
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.95 2012/08/03 22:41:35 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.96 2012/08/03 22:43:29 aballier Exp $
+
+  03 Aug 2012; Alexis Ballier <aballier@gentoo.org> lablgtk-2.14.2.ebuild:
+  as-is license only applies to examples, make it conditional in LICENSE
 
   03 Aug 2012; Alexis Ballier <aballier@gentoo.org> lablgtk-2.14.2.ebuild:
   LGPL has linking exception here, fix LICENSE



1.12                 dev-ml/lablgtk/lablgtk-2.14.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild?r1=1.11&r2=1.12

Index: lablgtk-2.14.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- lablgtk-2.14.2.ebuild	3 Aug 2012 22:41:35 -0000	1.11
+++ lablgtk-2.14.2.ebuild	3 Aug 2012 22:43:29 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.11 2012/08/03 22:41:35 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/lablgtk-2.14.2.ebuild,v 1.12 2012/08/03 22:43:29 aballier Exp $
 
 EAPI="2"
 
@@ -11,7 +11,7 @@
 DESCRIPTION="Objective CAML interface for Gtk+2"
 HOMEPAGE="http://lablgtk.forge.ocamlcore.org/"
 SRC_URI="http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/dist/${P}.tar.gz"
-LICENSE="LGPL-2.1-with-linking-exception as-is"
+LICENSE="LGPL-2.1-with-linking-exception examples? ( as-is )"
 
 RDEPEND=">=x11-libs/gtk+-2.10:2
 	>=dev-lang/ocaml-3.10[ocamlopt?]





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

* [gentoo-commits] gentoo-x86 commit in dev-ml/lablgtk: ChangeLog lablgtk-2.14.2.ebuild
@ 2013-08-19 13:29 Alexis Ballier (aballier)
  0 siblings, 0 replies; 9+ messages in thread
From: Alexis Ballier (aballier) @ 2013-08-19 13:29 UTC (permalink / raw
  To: gentoo-commits

aballier    13/08/19 13:29:13

  Modified:             ChangeLog
  Removed:              lablgtk-2.14.2.ebuild
  Log:
  remove old
  
  (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.106                dev-ml/lablgtk/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/lablgtk/ChangeLog?r1=1.105&r2=1.106

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	2 Jun 2013 15:35:03 -0000	1.105
+++ ChangeLog	19 Aug 2013 13:29:12 -0000	1.106
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ml/lablgtk
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.105 2013/06/02 15:35:03 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/lablgtk/ChangeLog,v 1.106 2013/08/19 13:29:12 aballier Exp $
+
+  19 Aug 2013; Alexis Ballier <aballier@gentoo.org> -lablgtk-2.14.2.ebuild:
+  remove old
 
   02 Jun 2013; Ulrich Müller <ulm@gentoo.org> lablgtk-2.14.2.ebuild,
   lablgtk-2.16.0.ebuild:





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

end of thread, other threads:[~2013-08-19 13:29 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-03 22:43 [gentoo-commits] gentoo-x86 commit in dev-ml/lablgtk: ChangeLog lablgtk-2.14.2.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2013-08-19 13:29 Alexis Ballier (aballier)
2011-03-23 17:06 Gilles Dartiguelongue (eva)
2011-01-22 23:03 Kacper Kowalik (xarthisius)
2010-12-09 15:42 Alexis Ballier (aballier)
2010-12-04 17:45 Raul Porcel (armin76)
2010-11-15  9:09 Thomas Kahle (tomka)
2010-11-05 18:25 Markos Chandras (hwoarang)
2010-09-29 18:01 Alexis Ballier (aballier)

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