Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/bristol: ChangeLog bristol-0.20.5.ebuild bristol-0.20.1.ebuild
Date: Thu, 01 May 2008 20:36:56
Message-Id: E1JrfWP-0005B0-Ni@stork.gentoo.org
1 aballier 08/05/01 20:36:53
2
3 Modified: ChangeLog
4 Added: bristol-0.20.5.ebuild
5 Removed: bristol-0.20.1.ebuild
6 Log:
7 Version bump, add some patches to respect user set cflags/ldflags and not fail with asneeded, plus some useflags that can now do something
8 (Portage version: 2.1.5_rc6)
9
10 Revision Changes Path
11 1.2 media-sound/bristol/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/bristol/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/bristol/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/bristol/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/bristol/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 27 Jan 2008 09:50:22 -0000 1.1
24 +++ ChangeLog 1 May 2008 20:36:53 -0000 1.2
25 @@ -1,6 +1,14 @@
26 # ChangeLog for media-sound/bristol
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/bristol/ChangeLog,v 1.1 2008/01/27 09:50:22 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/bristol/ChangeLog,v 1.2 2008/05/01 20:36:53 aballier Exp $
30 +
31 +*bristol-0.20.5 (01 May 2008)
32 +
33 + 01 May 2008; Alexis Ballier <aballier@g.o>
34 + +files/bristol-0.20.5-asneeded.patch, +files/bristol-0.20.5-cflags.patch,
35 + -bristol-0.20.1.ebuild, +bristol-0.20.5.ebuild:
36 + Version bump, add some patches to respect user set cflags/ldflags and not
37 + fail with asneeded, plus some useflags that can now do something
38
39 *bristol-0.20.1 (27 Jan 2008)
40
41
42
43
44 1.1 media-sound/bristol/bristol-0.20.5.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/bristol/bristol-0.20.5.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/bristol/bristol-0.20.5.ebuild?rev=1.1&content-type=text/plain
48
49 Index: bristol-0.20.5.ebuild
50 ===================================================================
51 # Copyright 1999-2008 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-sound/bristol/bristol-0.20.5.ebuild,v 1.1 2008/05/01 20:36:53 aballier Exp $
54
55 inherit autotools eutils
56
57 DESCRIPTION="Synthesizer keyboard emulation package: Moog, Hammond and others"
58 HOMEPAGE="http://sourceforge.net/projects/bristol"
59 SRC_URI="mirror://sourceforge/bristol/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64"
64 IUSE="alsa jack"
65
66 RDEPEND="jack? ( >=media-sound/jack-audio-connection-kit-0.99.0 )
67 alsa? ( >=media-libs/alsa-lib-1.0.0 )
68 x11-libs/libX11"
69 DEPEND="${RDEPEND}
70 x11-proto/xproto
71 dev-util/pkgconfig"
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 epatch "${FILESDIR}/${P}-cflags.patch"
77 epatch "${FILESDIR}/${P}-asneeded.patch"
78 eautoreconf
79 }
80
81 src_compile() {
82 econf \
83 $(use_enable alsa) \
84 $(use_enable jack)
85 emake || die "make failed"
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die "make install failed"
90 dodoc AUTHORS ChangeLog NEWS README
91 }
92
93
94
95 --
96 gentoo-commits@l.g.o mailing list