* [gentoo-commits] gentoo-x86 commit in media-sound/beast: ChangeLog beast-0.7.1-r1.ebuild
@ 2008-06-01 21:21 Gilles Dartiguelongue (eva)
0 siblings, 0 replies; 7+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2008-06-01 21:21 UTC (permalink / raw
To: gentoo-commits
eva 08/06/01 21:21:48
Modified: ChangeLog
Added: beast-0.7.1-r1.ebuild
Log:
Fix compilation with newer glib, bug #223291.
(Portage version: 2.1.5.2)
Revision Changes Path
1.31 media-sound/beast/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?r1=1.30&r2=1.31
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog 19 Jun 2007 18:14:17 -0000 1.30
+++ ChangeLog 1 Jun 2008 21:21:47 -0000 1.31
@@ -1,6 +1,13 @@
# ChangeLog for media-sound/beast
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.30 2007/06/19 18:14:17 aballier Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.31 2008/06/01 21:21:47 eva Exp $
+
+*beast-0.7.1-r1 (01 Jun 2008)
+
+ 01 Jun 2008; Gilles Dartiguelongue <eva@gentoo.org>
+ +files/beast-0.7.1-configure.patch, +files/beast-0.7.1-glib.patch,
+ files/beast-0.7.1-noinstalltest.patch, +beast-0.7.1-r1.ebuild:
+ Fix compilation with newer glib, bug #223291.
19 Jun 2007; Alexis Ballier <aballier@gentoo.org> -beast-0.6.4.ebuild,
-beast-0.6.5.ebuild, -beast-0.6.6.ebuild:
1.1 media-sound/beast/beast-0.7.1-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.1&content-type=text/plain
Index: beast-0.7.1-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v 1.1 2008/06/01 21:21:47 eva Exp $
inherit autotools eutils flag-o-matic fdo-mime
IUSE="debug mad static"
DESCRIPTION="BEAST - the Bedevilled Sound Engine"
HOMEPAGE="http://beast.gtk.org"
SRC_URI="ftp://beast.gtk.org/pub/beast/v${PV%.[0-9]}/${P}.tar.bz2
mirror://gentoo/${P}-guile-1.8.diff.bz2"
LICENSE="GPL-2 LGPL-2.1"
KEYWORDS="~amd64 ~ppc ~x86"
SLOT="0"
RDEPEND=">=dev-libs/glib-2.0
>=x11-libs/gtk+-2.4.11
>=sys-libs/zlib-1.1.3
dev-scheme/guile
>=media-libs/libart_lgpl-2.3.8
>=gnome-base/libgnomecanvas-2.0
>=media-libs/libogg-1.0
>=media-libs/libvorbis-1.0
mad? ( media-sound/madplay )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-lang/perl
media-libs/ladspa-cmt
media-libs/ladspa-sdk
>=dev-util/intltool-0.35"
pkg_setup() {
if has_version =dev-scheme/guile-1.8*; then
local flags="deprecated"
built_with_use dev-scheme/guile ${flags} \
|| die "guile must be built with \"${flags}\" use flags"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${WORKDIR}/${P}-guile-1.8.diff"
epatch "${FILESDIR}/${P}-noinstalltest.patch"
epatch "${FILESDIR}/${P}-signalheader.patch"
# Remove G_DISABLE_DEPRECATED, bug #223291
epatch "${FILESDIR}/${P}-glib.patch"
epatch "${FILESDIR}/${P}-configure.patch"
eautoreconf
intltoolize --force || die "intltoolize failed"
}
src_compile() {
# avoid suid related security issues.
append-ldflags $(bindnow-flags)
#for some weird reasons there is no doxer in this release
econf $(use_enable debug) \
$(use_enable static) \
|| die "configure failed"
emake || die "make failed"
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
# dont install new mime files !
for i in subclasses XMLnamespaces aliases globs magic mime.cache\
audio/x-bsewave.xml audio/x-bse.xml; do
rm -f "${D}/usr/share/mime/${i}"
done
dodoc AUTHORS ChangeLog NEWS README TODO
}
pkg_postinst() {
fdo-mime_mime_database_update
}
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/beast: ChangeLog beast-0.7.1-r1.ebuild
@ 2008-06-15 12:45 Gilles Dartiguelongue (eva)
0 siblings, 0 replies; 7+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2008-06-15 12:45 UTC (permalink / raw
To: gentoo-commits
eva 08/06/15 12:45:59
Modified: ChangeLog beast-0.7.1-r1.ebuild
Log:
remove calls to append-ldflags, bug #226977.
(Portage version: 2.1.5.4)
Revision Changes Path
1.32 media-sound/beast/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?r1=1.31&r2=1.32
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog 1 Jun 2008 21:21:47 -0000 1.31
+++ ChangeLog 15 Jun 2008 12:45:59 -0000 1.32
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/beast
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.31 2008/06/01 21:21:47 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.32 2008/06/15 12:45:59 eva Exp $
+
+ 15 Jun 2008; Gilles Dartiguelongue <eva@gentoo.org> beast-0.7.1-r1.ebuild:
+ remove calls to append-ldflags, bug #226977.
*beast-0.7.1-r1 (01 Jun 2008)
1.2 media-sound/beast/beast-0.7.1-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?r1=1.1&r2=1.2
Index: beast-0.7.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- beast-0.7.1-r1.ebuild 1 Jun 2008 21:21:47 -0000 1.1
+++ beast-0.7.1-r1.ebuild 15 Jun 2008 12:45:59 -0000 1.2
@@ -1,8 +1,8 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v 1.1 2008/06/01 21:21:47 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v 1.2 2008/06/15 12:45:59 eva Exp $
-inherit autotools eutils flag-o-matic fdo-mime
+inherit autotools eutils fdo-mime
IUSE="debug mad static"
@@ -57,9 +57,6 @@
}
src_compile() {
- # avoid suid related security issues.
- append-ldflags $(bindnow-flags)
-
#for some weird reasons there is no doxer in this release
econf $(use_enable debug) \
$(use_enable static) \
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/beast: ChangeLog beast-0.7.1-r1.ebuild
@ 2008-06-17 0:39 Mart Raudsepp (leio)
0 siblings, 0 replies; 7+ messages in thread
From: Mart Raudsepp (leio) @ 2008-06-17 0:39 UTC (permalink / raw
To: gentoo-commits
leio 08/06/17 00:39:06
Modified: ChangeLog beast-0.7.1-r1.ebuild
Log:
Call intltoolize before eautoreconf as it is safer, not vice-versa
(Portage version: 2.1.5.4)
Revision Changes Path
1.33 media-sound/beast/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?r1=1.32&r2=1.33
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog 15 Jun 2008 12:45:59 -0000 1.32
+++ ChangeLog 17 Jun 2008 00:39:05 -0000 1.33
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/beast
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.32 2008/06/15 12:45:59 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.33 2008/06/17 00:39:05 leio Exp $
+
+ 17 Jun 2008; Mart Raudsepp <leio@gentoo.org> beast-0.7.1-r1.ebuild:
+ Call intltoolize before eautoreconf as it is safer, not vice-versa
15 Jun 2008; Gilles Dartiguelongue <eva@gentoo.org> beast-0.7.1-r1.ebuild:
remove calls to append-ldflags, bug #226977.
1.3 media-sound/beast/beast-0.7.1-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?r1=1.2&r2=1.3
Index: beast-0.7.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- beast-0.7.1-r1.ebuild 15 Jun 2008 12:45:59 -0000 1.2
+++ beast-0.7.1-r1.ebuild 17 Jun 2008 00:39:05 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v 1.2 2008/06/15 12:45:59 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v 1.3 2008/06/17 00:39:05 leio Exp $
inherit autotools eutils fdo-mime
@@ -52,8 +52,8 @@
epatch "${FILESDIR}/${P}-configure.patch"
+ intltoolize --force --automake --copy || die "intltoolize failed"
eautoreconf
- intltoolize --force || die "intltoolize failed"
}
src_compile() {
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/beast: ChangeLog beast-0.7.1-r1.ebuild
@ 2008-06-20 10:40 Christian Faulhammer (opfer)
0 siblings, 0 replies; 7+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-06-20 10:40 UTC (permalink / raw
To: gentoo-commits
opfer 08/06/20 10:40:41
Modified: ChangeLog beast-0.7.1-r1.ebuild
Log:
stable x86, bug 227679
(Portage version: 2.1.4.4)
Revision Changes Path
1.34 media-sound/beast/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?r1=1.33&r2=1.34
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog 17 Jun 2008 00:39:05 -0000 1.33
+++ ChangeLog 20 Jun 2008 10:40:40 -0000 1.34
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/beast
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.33 2008/06/17 00:39:05 leio Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.34 2008/06/20 10:40:40 opfer Exp $
+
+ 20 Jun 2008; Christian Faulhammer <opfer@gentoo.org>
+ beast-0.7.1-r1.ebuild:
+ stable x86, bug 227679
17 Jun 2008; Mart Raudsepp <leio@gentoo.org> beast-0.7.1-r1.ebuild:
Call intltoolize before eautoreconf as it is safer, not vice-versa
1.4 media-sound/beast/beast-0.7.1-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?r1=1.3&r2=1.4
Index: beast-0.7.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- beast-0.7.1-r1.ebuild 17 Jun 2008 00:39:05 -0000 1.3
+++ beast-0.7.1-r1.ebuild 20 Jun 2008 10:40:40 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v 1.3 2008/06/17 00:39:05 leio Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v 1.4 2008/06/20 10:40:40 opfer Exp $
inherit autotools eutils fdo-mime
@@ -12,7 +12,7 @@
mirror://gentoo/${P}-guile-1.8.diff.bz2"
LICENSE="GPL-2 LGPL-2.1"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
SLOT="0"
RDEPEND=">=dev-libs/glib-2.0
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/beast: ChangeLog beast-0.7.1-r1.ebuild
@ 2008-06-21 13:12 Gysbert Wassenaar (nixnut)
0 siblings, 0 replies; 7+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-06-21 13:12 UTC (permalink / raw
To: gentoo-commits
nixnut 08/06/21 13:12:09
Modified: ChangeLog beast-0.7.1-r1.ebuild
Log:
Stable on ppc wrt bug 227679
(Portage version: 2.1.4.4)
Revision Changes Path
1.35 media-sound/beast/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?r1=1.34&r2=1.35
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog 20 Jun 2008 10:40:40 -0000 1.34
+++ ChangeLog 21 Jun 2008 13:12:08 -0000 1.35
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/beast
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.34 2008/06/20 10:40:40 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.35 2008/06/21 13:12:08 nixnut Exp $
+
+ 21 Jun 2008; nixnut <nixnut@gentoo.org> beast-0.7.1-r1.ebuild:
+ Stable on ppc wrt bug 227679
20 Jun 2008; Christian Faulhammer <opfer@gentoo.org>
beast-0.7.1-r1.ebuild:
1.5 media-sound/beast/beast-0.7.1-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?r1=1.4&r2=1.5
Index: beast-0.7.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- beast-0.7.1-r1.ebuild 20 Jun 2008 10:40:40 -0000 1.4
+++ beast-0.7.1-r1.ebuild 21 Jun 2008 13:12:08 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v 1.4 2008/06/20 10:40:40 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v 1.5 2008/06/21 13:12:08 nixnut Exp $
inherit autotools eutils fdo-mime
@@ -12,7 +12,7 @@
mirror://gentoo/${P}-guile-1.8.diff.bz2"
LICENSE="GPL-2 LGPL-2.1"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="~amd64 ppc x86"
SLOT="0"
RDEPEND=">=dev-libs/glib-2.0
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/beast: ChangeLog beast-0.7.1-r1.ebuild
@ 2008-06-22 22:10 Gilles Dartiguelongue (eva)
0 siblings, 0 replies; 7+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2008-06-22 22:10 UTC (permalink / raw
To: gentoo-commits
eva 08/06/22 22:10:01
Modified: ChangeLog beast-0.7.1-r1.ebuild
Log:
fix intltool tests
(Portage version: 2.1.5.5)
Revision Changes Path
1.36 media-sound/beast/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?r1=1.35&r2=1.36
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog 21 Jun 2008 13:12:08 -0000 1.35
+++ ChangeLog 22 Jun 2008 22:10:00 -0000 1.36
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/beast
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.35 2008/06/21 13:12:08 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.36 2008/06/22 22:10:00 eva Exp $
+
+ 22 Jun 2008; Gilles Dartiguelongue <eva@gentoo.org>
+ +files/beast-0.7.1-potfiles.patch, beast-0.7.1-r1.ebuild:
+ fix intltool tests
21 Jun 2008; nixnut <nixnut@gentoo.org> beast-0.7.1-r1.ebuild:
Stable on ppc wrt bug 227679
1.6 media-sound/beast/beast-0.7.1-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?r1=1.5&r2=1.6
Index: beast-0.7.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- beast-0.7.1-r1.ebuild 21 Jun 2008 13:12:08 -0000 1.5
+++ beast-0.7.1-r1.ebuild 22 Jun 2008 22:10:00 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v 1.5 2008/06/21 13:12:08 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v 1.6 2008/06/22 22:10:00 eva Exp $
inherit autotools eutils fdo-mime
@@ -50,8 +50,15 @@
# Remove G_DISABLE_DEPRECATED, bug #223291
epatch "${FILESDIR}/${P}-glib.patch"
+ # Fix macro definition to properly use intltool
epatch "${FILESDIR}/${P}-configure.patch"
+ # Fix po tests
+ epatch "${FILESDIR}/${P}-potfiles.patch"
+
+ # Remove useless dist check that makes tests fail
+ sed -i "s/\.PHONY:.*/.PHONY:/" Makefile.decl || die "sed failed"
+
intltoolize --force --automake --copy || die "intltoolize failed"
eautoreconf
}
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 7+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/beast: ChangeLog beast-0.7.1-r1.ebuild
@ 2008-11-02 14:59 Peter Alfredsen (loki_val)
0 siblings, 0 replies; 7+ messages in thread
From: Peter Alfredsen (loki_val) @ 2008-11-02 14:59 UTC (permalink / raw
To: gentoo-commits
loki_val 08/11/02 14:59:30
Modified: ChangeLog beast-0.7.1-r1.ebuild
Log:
Fix bug 240616 (gcc-4.3), thanks to Francisco José Cañizares Santofimia <telefrancisco@gmail.com> and bug 243000 (update-mime-database collision).
(Portage version: 2.2_rc13/cvs/Linux 2.6.27 x86_64)
Revision Changes Path
1.38 media-sound/beast/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/ChangeLog?r1=1.37&r2=1.38
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog 29 Jun 2008 17:46:18 -0000 1.37
+++ ChangeLog 2 Nov 2008 14:59:30 -0000 1.38
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/beast
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.37 2008/06/29 17:46:18 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/ChangeLog,v 1.38 2008/11/02 14:59:30 loki_val Exp $
+
+ 02 Nov 2008; Peter Alfredsen <loki_val@gentoo.org>
+ +files/beast-0.7.1-gcc43.patch, beast-0.7.1-r1.ebuild:
+ Fix bug 240616 (gcc-4.3), thanks to Francisco José Cañizares Santofimia
+ <telefrancisco@gmail.com> and bug 243000 (update-mime-database collision).
29 Jun 2008; Gilles Dartiguelongue <eva@gentoo.org> -beast-0.7.1.ebuild:
clean up old broken revision, fix bug #226761.
1.7 media-sound/beast/beast-0.7.1-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild?r1=1.6&r2=1.7
Index: beast-0.7.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- beast-0.7.1-r1.ebuild 22 Jun 2008 22:10:00 -0000 1.6
+++ beast-0.7.1-r1.ebuild 2 Nov 2008 14:59:30 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v 1.6 2008/06/22 22:10:00 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.7.1-r1.ebuild,v 1.7 2008/11/02 14:59:30 loki_val Exp $
inherit autotools eutils fdo-mime
@@ -56,6 +56,9 @@
# Fix po tests
epatch "${FILESDIR}/${P}-potfiles.patch"
+ # Fix gcc 4.3.x
+ epatch "${FILESDIR}/${P}-gcc43.patch"
+
# Remove useless dist check that makes tests fail
sed -i "s/\.PHONY:.*/.PHONY:/" Makefile.decl || die "sed failed"
@@ -64,6 +67,9 @@
}
src_compile() {
+ #kluge to work-around update-mime-database collision
+ export UPDATE_MIME_DATABASE="/bin/true"
+
#for some weird reasons there is no doxer in this release
econf $(use_enable debug) \
$(use_enable static) \
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2008-11-02 14:59 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-02 14:59 [gentoo-commits] gentoo-x86 commit in media-sound/beast: ChangeLog beast-0.7.1-r1.ebuild Peter Alfredsen (loki_val)
-- strict thread matches above, loose matches on Subject: below --
2008-06-22 22:10 Gilles Dartiguelongue (eva)
2008-06-21 13:12 Gysbert Wassenaar (nixnut)
2008-06-20 10:40 Christian Faulhammer (opfer)
2008-06-17 0:39 Mart Raudsepp (leio)
2008-06-15 12:45 Gilles Dartiguelongue (eva)
2008-06-01 21:21 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