Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/bristol: ChangeLog bristol-0.60.9.ebuild
Date: Mon, 28 Nov 2011 02:04:46
Message-Id: 20111128020425.DF5A42004B@flycatcher.gentoo.org
1 radhermit 11/11/28 02:04:25
2
3 Modified: ChangeLog bristol-0.60.9.ebuild
4 Log:
5 Fix autotools-utils usage (bug #392185).
6
7 (Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.11 media-sound/bristol/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/bristol/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/bristol/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/bristol/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/bristol/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 27 Nov 2011 06:05:02 -0000 1.10
23 +++ ChangeLog 28 Nov 2011 02:04:25 -0000 1.11
24 @@ -1,6 +1,9 @@
25 # ChangeLog for media-sound/bristol
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/bristol/ChangeLog,v 1.10 2011/11/27 06:05:02 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/bristol/ChangeLog,v 1.11 2011/11/28 02:04:25 radhermit Exp $
29 +
30 + 28 Nov 2011; Tim Harder <radhermit@g.o> bristol-0.60.9.ebuild:
31 + Fix autotools-utils usage (bug #392185).
32
33 27 Nov 2011; Tim Harder <radhermit@g.o> bristol-0.60.9.ebuild:
34 Ignore currently installed versions (bug #390731 by suchtmonster).
35
36
37
38 1.4 media-sound/bristol/bristol-0.60.9.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/bristol/bristol-0.60.9.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/bristol/bristol-0.60.9.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/bristol/bristol-0.60.9.ebuild?r1=1.3&r2=1.4
43
44 Index: bristol-0.60.9.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-sound/bristol/bristol-0.60.9.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- bristol-0.60.9.ebuild 27 Nov 2011 06:05:02 -0000 1.3
51 +++ bristol-0.60.9.ebuild 28 Nov 2011 02:04:25 -0000 1.4
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-sound/bristol/bristol-0.60.9.ebuild,v 1.3 2011/11/27 06:05:02 radhermit Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-sound/bristol/bristol-0.60.9.ebuild,v 1.4 2011/11/28 02:04:25 radhermit Exp $
57
58 EAPI="4"
59
60 @@ -27,18 +27,19 @@
61
62 DOCS=( AUTHORS ChangeLog HOWTO NEWS README )
63
64 -AUTOTOOLS_IN_SOURCE_BUILD=1
65 +PATCHES=( "${FILESDIR}"/${P}-cflags.patch )
66
67 src_prepare() {
68 - epatch "${FILESDIR}"/${P}-cflags.patch
69 + autotools-utils_src_prepare
70 eautoreconf
71 }
72
73 src_configure() {
74 - econf \
75 - --disable-version-check \
76 - $(use_enable alsa) \
77 - $(use_enable oss) \
78 - $(use_enable static-libs static)
79 -# $(use_enable osc liblo)
80 + myeconfargs=(
81 + --disable-version-check
82 + $(use_enable alsa)
83 + $(use_enable oss)
84 + #$(use_enable osc liblo)
85 + )
86 + autotools-utils_src_configure
87 }