Gentoo Archives: gentoo-commits

From: "Tony Vroon (chainsaw)" <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/mp3gain: ChangeLog mp3gain-1.4.6-r3.ebuild mp3gain-1.4.6-r1.ebuild
Date: Thu, 16 Apr 2009 16:39:10
Message-Id: E1LuUcF-0000I3-VI@stork.gentoo.org
1 chainsaw 09/04/16 16:39:07
2
3 Modified: ChangeLog
4 Added: mp3gain-1.4.6-r3.ebuild
5 Removed: mp3gain-1.4.6-r1.ebuild
6 Log:
7 Patch by Joshua Rich to respect LDFLAGS, closes bug #264134. Remove old ebuild.
8 (Portage version: 2.1.6.11/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.34 media-sound/mp3gain/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mp3gain/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mp3gain/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mp3gain/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/mp3gain/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 18 Mar 2009 07:54:41 -0000 1.33
24 +++ ChangeLog 16 Apr 2009 16:39:07 -0000 1.34
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-sound/mp3gain
27 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3gain/ChangeLog,v 1.33 2009/03/18 07:54:41 josejx Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3gain/ChangeLog,v 1.34 2009/04/16 16:39:07 chainsaw Exp $
30 +
31 +*mp3gain-1.4.6-r3 (16 Apr 2009)
32 +
33 + 16 Apr 2009; <chainsaw@g.o> -mp3gain-1.4.6-r1.ebuild,
34 + +mp3gain-1.4.6-r3.ebuild:
35 + Patch by Joshua Rich to respect LDFLAGS, closes bug #264134. Remove old
36 + ebuild.
37
38 18 Mar 2009; Joseph Jezak <josejx@g.o> mp3gain-1.4.6-r2.ebuild:
39 Marked ppc stable for bug #255516.
40
41
42
43 1.1 media-sound/mp3gain/mp3gain-1.4.6-r3.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mp3gain/mp3gain-1.4.6-r3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mp3gain/mp3gain-1.4.6-r3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: mp3gain-1.4.6-r3.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-sound/mp3gain/mp3gain-1.4.6-r3.ebuild,v 1.1 2009/04/16 16:39:07 chainsaw Exp $
53
54 inherit eutils flag-o-matic toolchain-funcs
55
56 IUSE=""
57
58 MY_P=${P//./_}
59 S=${WORKDIR}
60
61 DESCRIPTION="MP3Gain automatically adjusts mp3s so that they all have the same volume"
62 HOMEPAGE="http://mp3gain.sourceforge.net"
63 SRC_URI="mirror://sourceforge/${PN}/${MY_P}-src.zip"
64
65 SLOT="0"
66 LICENSE="LGPL-2.1"
67 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
68
69 DEPEND="app-arch/unzip"
70 RDEPEND=""
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75
76 filter-flags -O*
77 sed -i -e "s:CC=.*:CC=$(tc-getCC):" \
78 -e "s:CFLAGS= -Wall -O3 -DHAVE_MEMCPY:CFLAGS+= -Wall -DHAVE_MEMCPY:" \
79 -e "s:LIBS=.*:LIBS= ${LDFLAGS} -lm:" \
80 "${S}"/Makefile \
81 || die "Unable to adjust build system compiler/flags."
82 epatch "${FILESDIR}"/${PV}-option-parser.patch
83 }
84
85 src_install () {
86 dobin mp3gain
87 }