public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/libcanberra: libcanberra-0.14.ebuild ChangeLog
@ 2009-07-08 15:47 Nirbheek Chauhan (nirbheek)
  0 siblings, 0 replies; 5+ messages in thread
From: Nirbheek Chauhan (nirbheek) @ 2009-07-08 15:47 UTC (permalink / raw
  To: gentoo-commits

nirbheek    09/07/08 15:47:03

  Modified:             ChangeLog
  Added:                libcanberra-0.14.ebuild
  Log:
  Bump to 0.14, fixes bug 276931 and bug 275634
  (Portage version: 2.2_rc33/cvs/Linux i686)

Revision  Changes    Path
1.21                 media-libs/libcanberra/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	28 Apr 2009 11:49:31 -0000	1.20
+++ ChangeLog	8 Jul 2009 15:47:03 -0000	1.21
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/libcanberra
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v 1.20 2009/04/28 11:49:31 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v 1.21 2009/07/08 15:47:03 nirbheek Exp $
+
+*libcanberra-0.14 (08 Jul 2009)
+
+  08 Jul 2009; <nirbheek@gentoo.org> +libcanberra-0.14.ebuild:
+  Bump to 0.14, fixes bug 276931 and bug 275634
 
   28 Apr 2009; Raúl Porcel <armin76@gentoo.org> libcanberra-0.11.ebuild:
   arm/sh stable



1.1                  media-libs/libcanberra/libcanberra-0.14.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?rev=1.1&content-type=text/plain

Index: libcanberra-0.14.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild,v 1.1 2009/07/08 15:47:03 nirbheek Exp $

EAPI="1"

inherit eutils gnome2-utils

DESCRIPTION="Portable Sound Event Library"
HOMEPAGE="http://0pointer.de/lennart/projects/libcanberra/"
SRC_URI="http://0pointer.de/lennart/projects/${PN}/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="alsa doc gstreamer +gtk oss pulseaudio"

RDEPEND="media-libs/libvorbis
	sys-devel/libtool
	alsa? ( media-libs/alsa-lib )
	pulseaudio? ( >=media-sound/pulseaudio-0.9.11 )
	gstreamer? ( >=media-libs/gstreamer-0.10.15 )
	gtk? ( dev-libs/glib:2
		>=x11-libs/gtk+-2.13.4:2
		>=gnome-base/gconf-2 )"
DEPEND="${RDEPEND}
	>=dev-util/pkgconfig-0.17
	doc? ( >=dev-util/gtk-doc-1.9 )"

src_compile() {
	econf --disable-static \
		$(use_enable alsa) \
		$(use_enable gstreamer) \
		$(use_enable gtk) \
		$(use_enable oss) \
		$(use_enable pulseaudio pulse) \
		$(use_enable doc gtk-doc) \
		--disable-tdb \
		--disable-lynx
	# tdb support would need a split-out from samba before we can use it

	emake || die "emake failed."
}

src_install() {
	# we must delay gconf schema installation due to sandbox
	#export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1"

	emake DESTDIR="${D}" install || die "emake install failed."

	#unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL

	rm "${D}/usr/share/doc/${PN}/README"
	# If the rmdir errors, you probably need to add a file to dodoc
	# and remove the package installed above
	rmdir "${D}/usr/share/doc/${PN}"
	dodoc README
}

pkg_preinst() {
	gnome2_gconf_savelist
}

pkg_postinst() {
	gnome2_gconf_install
}

#pkg_prerm() {
#	gnome2_gconf_uninstall
#}






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

* [gentoo-commits] gentoo-x86 commit in media-libs/libcanberra: libcanberra-0.14.ebuild ChangeLog
@ 2009-07-16 11:01 Romain Perier (mrpouet)
  0 siblings, 0 replies; 5+ messages in thread
From: Romain Perier (mrpouet) @ 2009-07-16 11:01 UTC (permalink / raw
  To: gentoo-commits

mrpouet     09/07/16 11:01:07

  Modified:             libcanberra-0.14.ebuild ChangeLog
  Log:
  Fix bug #277739. Moved sys-devel/libtool to >=sys-devel/libtool-2.2 into RDEPEND due to missing API symbol which was added from libtool-2.2
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  media-libs/libcanberra/libcanberra-0.14.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?r1=1.1&r2=1.2

Index: libcanberra-0.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libcanberra-0.14.ebuild	8 Jul 2009 15:47:03 -0000	1.1
+++ libcanberra-0.14.ebuild	16 Jul 2009 11:01:07 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild,v 1.1 2009/07/08 15:47:03 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild,v 1.2 2009/07/16 11:01:07 mrpouet Exp $
 
 EAPI="1"
 
@@ -16,7 +16,7 @@
 IUSE="alsa doc gstreamer +gtk oss pulseaudio"
 
 RDEPEND="media-libs/libvorbis
-	sys-devel/libtool
+	>=sys-devel/libtool-2.2
 	alsa? ( media-libs/alsa-lib )
 	pulseaudio? ( >=media-sound/pulseaudio-0.9.11 )
 	gstreamer? ( >=media-libs/gstreamer-0.10.15 )



1.22                 media-libs/libcanberra/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	8 Jul 2009 15:47:03 -0000	1.21
+++ ChangeLog	16 Jul 2009 11:01:07 -0000	1.22
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/libcanberra
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v 1.21 2009/07/08 15:47:03 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v 1.22 2009/07/16 11:01:07 mrpouet Exp $
+
+  16 Jul 2009; Romain Perier <mrpouet@gentoo.org> libcanberra-0.14.ebuild:
+  Fix bug #277739. Moved sys-devel/libtool to >=sys-devel/libtool-2.2 into
+  RDEPEND due to missing API symbol which was added from libtool-2.2
 
 *libcanberra-0.14 (08 Jul 2009)
 






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

* [gentoo-commits] gentoo-x86 commit in media-libs/libcanberra: libcanberra-0.14.ebuild ChangeLog
@ 2009-07-17 10:52 Romain Perier (mrpouet)
  0 siblings, 0 replies; 5+ messages in thread
From: Romain Perier (mrpouet) @ 2009-07-17 10:52 UTC (permalink / raw
  To: gentoo-commits

mrpouet     09/07/17 10:52:03

  Modified:             libcanberra-0.14.ebuild ChangeLog
  Log:
  Fix correctly bug #277739, remove template fix, replaced LT_* macros by AC_LIBTOOL* (equivalent for old version) for backward compatibility with < sys-devel/libtool-2.2
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  media-libs/libcanberra/libcanberra-0.14.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?r1=1.2&r2=1.3

Index: libcanberra-0.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libcanberra-0.14.ebuild	16 Jul 2009 11:01:07 -0000	1.2
+++ libcanberra-0.14.ebuild	17 Jul 2009 10:52:03 -0000	1.3
@@ -1,10 +1,10 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild,v 1.2 2009/07/16 11:01:07 mrpouet Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild,v 1.3 2009/07/17 10:52:03 mrpouet Exp $
 
 EAPI="1"
 
-inherit eutils gnome2-utils
+inherit eutils gnome2-utils autotools
 
 DESCRIPTION="Portable Sound Event Library"
 HOMEPAGE="http://0pointer.de/lennart/projects/libcanberra/"
@@ -16,7 +16,7 @@
 IUSE="alsa doc gstreamer +gtk oss pulseaudio"
 
 RDEPEND="media-libs/libvorbis
-	>=sys-devel/libtool-2.2
+	sys-devel/libtool
 	alsa? ( media-libs/alsa-lib )
 	pulseaudio? ( >=media-sound/pulseaudio-0.9.11 )
 	gstreamer? ( >=media-libs/gstreamer-0.10.15 )
@@ -27,6 +27,19 @@
 	>=dev-util/pkgconfig-0.17
 	doc? ( >=dev-util/gtk-doc-1.9 )"
 
+src_unpack() {
+	unpack ${A}
+	cd "${S}"
+
+	epatch "${FILESDIR}/${P}-backward-compatibility-libtool.patch"
+
+	rm "${S}/lt*"    || die "clean-up ltmain.sh failed"
+	rm "${S}/m4/lt*" || die "clean-up lt scripts failed"
+	rm "${S}/m4/libtool*" || die "clean-up libtool script failed"
+
+	eautoreconf
+}
+
 src_compile() {
 	econf --disable-static \
 		$(use_enable alsa) \



1.23                 media-libs/libcanberra/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	16 Jul 2009 11:01:07 -0000	1.22
+++ ChangeLog	17 Jul 2009 10:52:03 -0000	1.23
@@ -1,6 +1,12 @@
 # ChangeLog for media-libs/libcanberra
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v 1.22 2009/07/16 11:01:07 mrpouet Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v 1.23 2009/07/17 10:52:03 mrpouet Exp $
+
+  17 Jul 2009; Romain Perier <mrpouet@gentoo.org> libcanberra-0.14.ebuild,
+  +files/libcanberra-0.14-backward-compatibility-libtool.patch:
+  Fix correctly bug #277739, remove template fix, replaced LT_* by
+  AC_LIBTOOL* macros (equivalent for old version) for backward compatibility 
+  with < sys-devel/libtool-2.2
 
   16 Jul 2009; Romain Perier <mrpouet@gentoo.org> libcanberra-0.14.ebuild:
   Fix bug #277739. Moved sys-devel/libtool to >=sys-devel/libtool-2.2 into






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

* [gentoo-commits] gentoo-x86 commit in media-libs/libcanberra: libcanberra-0.14.ebuild ChangeLog
@ 2009-07-19 17:29 Romain Perier (mrpouet)
  0 siblings, 0 replies; 5+ messages in thread
From: Romain Perier (mrpouet) @ 2009-07-19 17:29 UTC (permalink / raw
  To: gentoo-commits

mrpouet     09/07/19 17:29:45

  Modified:             libcanberra-0.14.ebuild ChangeLog
  Log:
  Fix bug #278269, src_unpack() failed due to unnecessary quotes around rm commands, * was not matched
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  media-libs/libcanberra/libcanberra-0.14.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?r1=1.3&r2=1.4

Index: libcanberra-0.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libcanberra-0.14.ebuild	17 Jul 2009 10:52:03 -0000	1.3
+++ libcanberra-0.14.ebuild	19 Jul 2009 17:29:45 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild,v 1.3 2009/07/17 10:52:03 mrpouet Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild,v 1.4 2009/07/19 17:29:45 mrpouet Exp $
 
 EAPI="1"
 
@@ -33,9 +33,9 @@
 
 	epatch "${FILESDIR}/${P}-backward-compatibility-libtool.patch"
 
-	rm "${S}/lt*"    || die "clean-up ltmain.sh failed"
-	rm "${S}/m4/lt*" || die "clean-up lt scripts failed"
-	rm "${S}/m4/libtool*" || die "clean-up libtool script failed"
+	rm lt*    || die "clean-up ltmain.sh failed"
+	rm m4/lt* || die "clean-up lt scripts failed"
+	rm m4/libtool* || die "clean-up libtool script failed"
 
 	eautoreconf
 }



1.24                 media-libs/libcanberra/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	17 Jul 2009 10:52:03 -0000	1.23
+++ ChangeLog	19 Jul 2009 17:29:45 -0000	1.24
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/libcanberra
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v 1.23 2009/07/17 10:52:03 mrpouet Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v 1.24 2009/07/19 17:29:45 mrpouet Exp $
+
+  20 Jul 2009; Romain Perier <mrpouet@gentoo.org> libcanberra-0.14.ebuild:
+  Fix bug #278269, src_unpack() failed due to unnecessary quotes around rm
+  commands, * was not matched
 
   17 Jul 2009; Romain Perier <mrpouet@gentoo.org> libcanberra-0.14.ebuild,
   +files/libcanberra-0.14-backward-compatibility-libtool.patch:






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

* [gentoo-commits] gentoo-x86 commit in media-libs/libcanberra: libcanberra-0.14.ebuild ChangeLog
@ 2009-07-21  6:17 Romain Perier (mrpouet)
  0 siblings, 0 replies; 5+ messages in thread
From: Romain Perier (mrpouet) @ 2009-07-21  6:17 UTC (permalink / raw
  To: gentoo-commits

mrpouet     09/07/21 06:17:23

  Modified:             libcanberra-0.14.ebuild ChangeLog
  Log:
  Fix bug #278354, backport gconf-2.m4 from aclocal system dir to m4/ source directory, in case where gconf is not installed on the system
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  media-libs/libcanberra/libcanberra-0.14.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild?r1=1.4&r2=1.5

Index: libcanberra-0.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libcanberra-0.14.ebuild	19 Jul 2009 17:29:45 -0000	1.4
+++ libcanberra-0.14.ebuild	21 Jul 2009 06:17:23 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild,v 1.4 2009/07/19 17:29:45 mrpouet Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.14.ebuild,v 1.5 2009/07/21 06:17:23 mrpouet Exp $
 
 EAPI="1"
 
@@ -31,8 +31,16 @@
 	unpack ${A}
 	cd "${S}"
 
+	# Fix bug 277739, replace LT_PREREQ and LT_INIT by AC_LIBTOOL*
+	# macros (equivalent for earlier version), preserve backward
+	# compatibility with libtool-1
 	epatch "${FILESDIR}/${P}-backward-compatibility-libtool.patch"
 
+	# Fix bug 278354, Backport AM_GCONF_SOURCE_2 macro to m4/ dir
+	# in case where gconf isn't installed on the system
+	# (eautoconf could fail)
+	epatch "${FILESDIR}/${P}-am-gconf-source-2-m4.patch"
+
 	rm lt*    || die "clean-up ltmain.sh failed"
 	rm m4/lt* || die "clean-up lt scripts failed"
 	rm m4/libtool* || die "clean-up libtool script failed"



1.25                 media-libs/libcanberra/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libcanberra/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	19 Jul 2009 17:29:45 -0000	1.24
+++ ChangeLog	21 Jul 2009 06:17:23 -0000	1.25
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/libcanberra
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v 1.24 2009/07/19 17:29:45 mrpouet Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/ChangeLog,v 1.25 2009/07/21 06:17:23 mrpouet Exp $
+
+  21 Jul 2009; Romain Perier <mrpouet@gentoo.org> libcanberra-0.14.ebuild,
+  +files/libcanberra-0.14-am-gconf-source-2-m4.patch:
+  Fix bug #278354, backport gconf-2.m4 from aclocal system dir to m4/ source
+  directory, in case where gconf is not installed on the system
 
   20 Jul 2009; Romain Perier <mrpouet@gentoo.org> libcanberra-0.14.ebuild:
   Fix bug #278269, src_unpack() failed due to unnecessary quotes around rm






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

end of thread, other threads:[~2009-07-21  6:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-19 17:29 [gentoo-commits] gentoo-x86 commit in media-libs/libcanberra: libcanberra-0.14.ebuild ChangeLog Romain Perier (mrpouet)
  -- strict thread matches above, loose matches on Subject: below --
2009-07-21  6:17 Romain Perier (mrpouet)
2009-07-17 10:52 Romain Perier (mrpouet)
2009-07-16 11:01 Romain Perier (mrpouet)
2009-07-08 15:47 Nirbheek Chauhan (nirbheek)

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