Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/sdl-sound: ChangeLog sdl-sound-1.0.3.ebuild
Date: Tue, 21 Aug 2012 19:47:47
Message-Id: 20120821194733.3037F20274@flycatcher.gentoo.org
1 hasufell 12/08/21 19:47:33
2
3 Modified: ChangeLog sdl-sound-1.0.3.ebuild
4 Log:
5 fix underlinking issues wrt #432192
6
7 (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.42 media-libs/sdl-sound/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-sound/ChangeLog?rev=1.42&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-sound/ChangeLog?rev=1.42&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-sound/ChangeLog?r1=1.41&r2=1.42
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-sound/ChangeLog,v
19 retrieving revision 1.41
20 retrieving revision 1.42
21 diff -u -r1.41 -r1.42
22 --- ChangeLog 5 May 2012 08:02:44 -0000 1.41
23 +++ ChangeLog 21 Aug 2012 19:47:33 -0000 1.42
24 @@ -1,6 +1,10 @@
25 # ChangeLog for media-libs/sdl-sound
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-sound/ChangeLog,v 1.41 2012/05/05 08:02:44 jdhore Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-sound/ChangeLog,v 1.42 2012/08/21 19:47:33 hasufell Exp $
29 +
30 + 21 Aug 2012; Julian Ospald <hasufell@g.o> sdl-sound-1.0.3.ebuild,
31 + +files/sdl-sound-1.0.3-underlinking.patch:
32 + fix underlinking issues wrt #432192
33
34 05 May 2012; Jeff Horelick <jdhore@g.o> sdl-sound-1.0.3.ebuild:
35 dev-util/pkgconfig -> virtual/pkgconfig
36
37
38
39 1.9 media-libs/sdl-sound/sdl-sound-1.0.3.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-sound/sdl-sound-1.0.3.ebuild?rev=1.9&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-sound/sdl-sound-1.0.3.ebuild?rev=1.9&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-sound/sdl-sound-1.0.3.ebuild?r1=1.8&r2=1.9
44
45 Index: sdl-sound-1.0.3.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-sound/sdl-sound-1.0.3.ebuild,v
48 retrieving revision 1.8
49 retrieving revision 1.9
50 diff -u -r1.8 -r1.9
51 --- sdl-sound-1.0.3.ebuild 5 May 2012 08:02:44 -0000 1.8
52 +++ sdl-sound-1.0.3.ebuild 21 Aug 2012 19:47:33 -0000 1.9
53 @@ -1,8 +1,10 @@
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-sound/sdl-sound-1.0.3.ebuild,v 1.8 2012/05/05 08:02:44 jdhore Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-sound/sdl-sound-1.0.3.ebuild,v 1.9 2012/08/21 19:47:33 hasufell Exp $
58
59 EAPI=2
60 +inherit autotools eutils
61 +
62 MY_P="${P/sdl-/SDL_}"
63 DESCRIPTION="A library that handles the decoding of sound file formats"
64 HOMEPAGE="http://icculus.org/SDL_sound/"
65 @@ -26,6 +28,11 @@
66
67 S=${WORKDIR}/${MY_P}
68
69 +src_prepare() {
70 + epatch "${FILESDIR}"/${P}-underlinking.patch
71 + eautoreconf
72 +}
73 +
74 src_configure() {
75 econf \
76 --disable-dependency-tracking \