Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@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: Sun, 20 Apr 2008 21:09:58
Message-Id: E1JngnL-00010o-1W@stork.gentoo.org
1 vapier 08/04/20 21:09:55
2
3 Modified: ChangeLog
4 Added: sdl-sound-1.0.3.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_pre5)
8
9 Revision Changes Path
10 1.34 media-libs/sdl-sound/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/sdl-sound/ChangeLog?rev=1.34&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/sdl-sound/ChangeLog?rev=1.34&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/sdl-sound/ChangeLog?r1=1.33&r2=1.34
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-sound/ChangeLog,v
19 retrieving revision 1.33
20 retrieving revision 1.34
21 diff -u -r1.33 -r1.34
22 --- ChangeLog 17 Apr 2008 21:37:24 -0000 1.33
23 +++ ChangeLog 20 Apr 2008 21:09:54 -0000 1.34
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/sdl-sound
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-sound/ChangeLog,v 1.33 2008/04/17 21:37:24 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-sound/ChangeLog,v 1.34 2008/04/20 21:09:54 vapier Exp $
29 +
30 +*sdl-sound-1.0.3 (20 Apr 2008)
31 +
32 + 20 Apr 2008; Mike Frysinger <vapier@g.o> +sdl-sound-1.0.3.ebuild:
33 + Version bump.
34
35 *sdl-sound-1.0.2 (17 Apr 2008)
36
37
38
39
40 1.1 media-libs/sdl-sound/sdl-sound-1.0.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/sdl-sound/sdl-sound-1.0.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/sdl-sound/sdl-sound-1.0.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: sdl-sound-1.0.3.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-sound/sdl-sound-1.0.3.ebuild,v 1.1 2008/04/20 21:09:54 vapier Exp $
50
51 MY_P="${P/sdl-/SDL_}"
52 DESCRIPTION="A library that handles the decoding of sound file formats"
53 HOMEPAGE="http://icculus.org/SDL_sound/"
54 SRC_URI="http://icculus.org/SDL_sound/downloads/${MY_P}.tar.gz"
55
56 LICENSE="LGPL-2.1"
57 SLOT="0"
58 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
59 IUSE="flac mikmod vorbis speex physfs mp3 mpeg"
60
61 RDEPEND=">=media-libs/libsdl-1.2
62 flac? ( media-libs/flac )
63 mikmod? ( >=media-libs/libmikmod-3.1.9 media-libs/libmodplug )
64 vorbis? ( >=media-libs/libvorbis-1.0_beta4 )
65 speex? ( media-libs/speex media-libs/libogg )
66 physfs? ( dev-games/physfs )
67 mpeg? ( media-libs/smpeg )"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig"
70
71 S=${WORKDIR}/${MY_P}
72
73 src_compile() {
74 econf \
75 --disable-dependency-tracking \
76 --enable-midi \
77 $(use_enable mpeg smpeg) \
78 $(use_enable mp3 mpglib) \
79 $(use_enable flac) \
80 $(use_enable speex) \
81 $(use_enable mikmod) \
82 $(use_enable mikmod modplug) \
83 $(use_enable physfs) \
84 $(use_enable vorbis ogg) \
85 || die
86 emake || die "emake failed"
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die "make install failed"
91 dodoc CHANGELOG CREDITS README TODO
92 }
93
94
95
96 --
97 gentoo-commits@l.g.o mailing list