public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: gtkmathview-0.8.0-r2.ebuild ChangeLog
@ 2012-05-13 12:24 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2012-05-13 12:24 UTC (permalink / raw
  To: gentoo-commits

pacho       12/05/13 12:24:20

  Modified:             ChangeLog
  Added:                gtkmathview-0.8.0-r2.ebuild
  Log:
  Drop gmetadom support because it's dead, other distributions are not providing it fore years and I have confirmed none of gtkmathview consumers need this old stuff.
  
  (Portage version: 2.1.10.59/cvs/Linux x86_64)

Revision  Changes    Path
1.43                 x11-libs/gtkmathview/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?r1=1.42&r2=1.43

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	5 May 2012 03:52:29 -0000	1.42
+++ ChangeLog	13 May 2012 12:24:20 -0000	1.43
@@ -1,6 +1,13 @@
 # ChangeLog for x11-libs/gtkmathview
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.42 2012/05/05 03:52:29 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.43 2012/05/13 12:24:20 pacho Exp $
+
+*gtkmathview-0.8.0-r2 (13 May 2012)
+
+  13 May 2012; Pacho Ramos <pacho@gentoo.org> +gtkmathview-0.8.0-r2.ebuild:
+  Drop gmetadom support because it's dead, other distributions are not providing
+  it fore years and I have confirmed none of gtkmathview consumers need this old
+  stuff.
 
   05 May 2012; Jeff Horelick <jdhore@gentoo.org> gtkmathview-0.8.0.ebuild,
   gtkmathview-0.8.0-r1.ebuild:



1.1                  x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?rev=1.1&content-type=text/plain

Index: gtkmathview-0.8.0-r2.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild,v 1.1 2012/05/13 12:24:20 pacho Exp $

EAPI="4"

inherit autotools eutils

DESCRIPTION="Rendering engine for MathML documents"
HOMEPAGE="http://helm.cs.unibo.it/mml-widget/"
SRC_URI="http://helm.cs.unibo.it/mml-widget/sources/${P}.tar.gz"

LICENSE="LGPL-3"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="gtk mathml svg t1lib"

RDEPEND=">=dev-libs/glib-2.2.1:2
	>=dev-libs/popt-1.7
	>=dev-libs/libxml2-2.6.7:2
	gtk? ( >=x11-libs/gtk+-2.2.1:2
		>=media-libs/t1lib-5:5
		x11-libs/pango )
	mathml? ( media-fonts/texcm-ttf )
	t1lib?	( >=media-libs/t1lib-5:5 )"
DEPEND="${RDEPEND}
	dev-libs/libxslt
	virtual/pkgconfig"

pkg_setup() {
	DOCS="ANNOUNCEMENT AUTHORS BUGS ChangeLog CONTRIBUTORS HISTORY NEWS README TODO"
}

src_prepare() {
	epatch "${FILESDIR}"/${P}-gcc43.patch \
		"${FILESDIR}"/${P}-gcc44.patch \
		"${FILESDIR}"/${P}-cond-t1.patch

	# Fix building against libxml2[icu], bug #356095
	epatch "${FILESDIR}"/${P}-fix-template.patch

	# Fix building with gold, bug #369117; requires eautoreconf
	epatch "${FILESDIR}/${P}-underlinking.patch"

	# m4 macros from upstream git, required for eautoreconf
	if [[ ! -d ac-helpers ]]; then
		mkdir ac-helpers || die "mkdir failed"
		cp "${FILESDIR}/binreloc.m4" ac-helpers || die "cp failed"
	fi

	AT_M4DIR=ac-helpers eautoreconf
}

src_configure() {
	# --disable-popt will build only the library and not the frontend
	# TFM is needed for SVG, default value is 2
	econf $(use_enable gtk) \
		$(use_enable svg) \
		$(use_with t1lib) \
		--with-popt \
		--enable-libxml2 \
		--enable-libxml2-reader \
		--enable-ps \
		--enable-tfm=2 \
		--enable-builder-cache \
		--enable-breaks \
		--enable-boxml \
		--disable-gmetadom \
		--disable-static
}

src_install() {
	default
	find "${D}" -name '*.la' -exec rm -f {} +
}






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: gtkmathview-0.8.0-r2.ebuild ChangeLog
@ 2012-10-14 13:06 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 5+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-10-14 13:06 UTC (permalink / raw
  To: gentoo-commits

blueness    12/10/14 13:06:50

  Modified:             gtkmathview-0.8.0-r2.ebuild ChangeLog
  Log:
  stable ppc64, bug #427544
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?r1=1.7&r2=1.8

Index: gtkmathview-0.8.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gtkmathview-0.8.0-r2.ebuild	4 Oct 2012 15:04:50 -0000	1.7
+++ gtkmathview-0.8.0-r2.ebuild	14 Oct 2012 13:06:50 -0000	1.8
@@ -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/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild,v 1.7 2012/10/04 15:04:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild,v 1.8 2012/10/14 13:06:50 blueness Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 LICENSE="LGPL-3"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86"
 IUSE="gtk mathml svg t1lib"
 
 RDEPEND=">=dev-libs/glib-2.2.1:2



1.53                 x11-libs/gtkmathview/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?r1=1.52&r2=1.53

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog	4 Oct 2012 15:04:50 -0000	1.52
+++ ChangeLog	14 Oct 2012 13:06:50 -0000	1.53
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/gtkmathview
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.52 2012/10/04 15:04:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.53 2012/10/14 13:06:50 blueness Exp $
+
+  14 Oct 2012; Anthony G. Basile <blueness@gentoo.org>
+  gtkmathview-0.8.0-r2.ebuild:
+  stable ppc64, bug #427544
 
   04 Oct 2012; Agostino Sarubbo <ago@gentoo.org> gtkmathview-0.8.0-r2.ebuild:
   Stable for amd64, wrt bug #427544





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: gtkmathview-0.8.0-r2.ebuild ChangeLog
@ 2012-10-15  3:12 Matt Turner (mattst88)
  0 siblings, 0 replies; 5+ messages in thread
From: Matt Turner (mattst88) @ 2012-10-15  3:12 UTC (permalink / raw
  To: gentoo-commits

mattst88    12/10/15 03:12:12

  Modified:             gtkmathview-0.8.0-r2.ebuild ChangeLog
  Log:
  Stable on alpha, bug 427544.
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?r1=1.8&r2=1.9

Index: gtkmathview-0.8.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- gtkmathview-0.8.0-r2.ebuild	14 Oct 2012 13:06:50 -0000	1.8
+++ gtkmathview-0.8.0-r2.ebuild	15 Oct 2012 03:12:11 -0000	1.9
@@ -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/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild,v 1.8 2012/10/14 13:06:50 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild,v 1.9 2012/10/15 03:12:11 mattst88 Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 LICENSE="LGPL-3"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86"
 IUSE="gtk mathml svg t1lib"
 
 RDEPEND=">=dev-libs/glib-2.2.1:2



1.54                 x11-libs/gtkmathview/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	14 Oct 2012 13:06:50 -0000	1.53
+++ ChangeLog	15 Oct 2012 03:12:11 -0000	1.54
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/gtkmathview
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.53 2012/10/14 13:06:50 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.54 2012/10/15 03:12:11 mattst88 Exp $
+
+  15 Oct 2012; Matt Turner <mattst88@gentoo.org> gtkmathview-0.8.0-r2.ebuild:
+  Stable on alpha, bug 427544.
 
   14 Oct 2012; Anthony G. Basile <blueness@gentoo.org>
   gtkmathview-0.8.0-r2.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: gtkmathview-0.8.0-r2.ebuild ChangeLog
@ 2012-10-16  4:54 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 5+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-10-16  4:54 UTC (permalink / raw
  To: gentoo-commits

blueness    12/10/16 04:54:11

  Modified:             gtkmathview-0.8.0-r2.ebuild ChangeLog
  Log:
  stable ppc, bug #427544
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?r1=1.9&r2=1.10

Index: gtkmathview-0.8.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gtkmathview-0.8.0-r2.ebuild	15 Oct 2012 03:12:11 -0000	1.9
+++ gtkmathview-0.8.0-r2.ebuild	16 Oct 2012 04:54:11 -0000	1.10
@@ -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/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild,v 1.9 2012/10/15 03:12:11 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild,v 1.10 2012/10/16 04:54:11 blueness Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 LICENSE="LGPL-3"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="gtk mathml svg t1lib"
 
 RDEPEND=">=dev-libs/glib-2.2.1:2



1.55                 x11-libs/gtkmathview/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/ChangeLog?r1=1.54&r2=1.55

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog	15 Oct 2012 03:12:11 -0000	1.54
+++ ChangeLog	16 Oct 2012 04:54:11 -0000	1.55
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/gtkmathview
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.54 2012/10/15 03:12:11 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.55 2012/10/16 04:54:11 blueness Exp $
+
+  16 Oct 2012; Anthony G. Basile <blueness@gentoo.org>
+  gtkmathview-0.8.0-r2.ebuild:
+  stable ppc, bug #427544
 
   15 Oct 2012; Matt Turner <mattst88@gentoo.org> gtkmathview-0.8.0-r2.ebuild:
   Stable on alpha, bug 427544.





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: gtkmathview-0.8.0-r2.ebuild ChangeLog
@ 2013-09-29  9:04 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2013-09-29  9:04 UTC (permalink / raw
  To: gentoo-commits

pacho       13/09/29 09:04:22

  Modified:             gtkmathview-0.8.0-r2.ebuild ChangeLog
  Log:
  Fix compile with latest automake (#469406)
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.13                 x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild?r1=1.12&r2=1.13

Index: gtkmathview-0.8.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- gtkmathview-0.8.0-r2.ebuild	19 Dec 2012 16:46:43 -0000	1.12
+++ gtkmathview-0.8.0-r2.ebuild	29 Sep 2013 09:04:22 -0000	1.13
@@ -1,9 +1,8 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild,v 1.12 2012/12/19 16:46:43 tetromino Exp $
-
-EAPI="4"
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/gtkmathview-0.8.0-r2.ebuild,v 1.13 2013/09/29 09:04:22 pacho Exp $
 
+EAPI=5
 inherit autotools eutils
 
 DESCRIPTION="Rendering engine for MathML documents"
@@ -29,9 +28,7 @@
 	dev-libs/libxslt
 	virtual/pkgconfig"
 
-pkg_setup() {
-	DOCS="ANNOUNCEMENT AUTHORS BUGS ChangeLog CONTRIBUTORS HISTORY NEWS README TODO"
-}
+DOCS="ANNOUNCEMENT AUTHORS BUGS ChangeLog CONTRIBUTORS HISTORY NEWS README TODO"
 
 src_prepare() {
 	epatch "${FILESDIR}"/${P}-gcc43.patch \
@@ -52,6 +49,8 @@
 		cp "${FILESDIR}/binreloc.m4" ac-helpers || die "cp failed"
 	fi
 
+	sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die
+
 	AT_M4DIR=ac-helpers eautoreconf
 }
 
@@ -75,5 +74,5 @@
 
 src_install() {
 	default
-	find "${D}" -name '*.la' -exec rm -f {} +
+	prune_libtool_files
 }



1.59                 x11-libs/gtkmathview/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog	30 Mar 2013 17:18:44 -0000	1.58
+++ ChangeLog	29 Sep 2013 09:04:22 -0000	1.59
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/gtkmathview
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.58 2013/03/30 17:18:44 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmathview/ChangeLog,v 1.59 2013/09/29 09:04:22 pacho Exp $
+
+  29 Sep 2013; Pacho Ramos <pacho@gentoo.org> gtkmathview-0.8.0-r2.ebuild:
+  Fix compile with latest automake (#469406)
 
   30 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org>
   -gtkmathview-0.8.0.ebuild, -gtkmathview-0.8.0-r1.ebuild:





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

end of thread, other threads:[~2013-09-29  9:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-15  3:12 [gentoo-commits] gentoo-x86 commit in x11-libs/gtkmathview: gtkmathview-0.8.0-r2.ebuild ChangeLog Matt Turner (mattst88)
  -- strict thread matches above, loose matches on Subject: below --
2013-09-29  9:04 Pacho Ramos (pacho)
2012-10-16  4:54 Anthony G. Basile (blueness)
2012-10-14 13:06 Anthony G. Basile (blueness)
2012-05-13 12:24 Pacho Ramos (pacho)

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