diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2008-10-11 23:28:06 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2008-10-11 23:28:06 +0000 |
commit | 4a872b089fe71af6855fa9779cb1720c16dae2e8 (patch) | |
tree | 872be10069a21022b8cebe2666aa40ba5f115a2f /media-sound/mp3gain | |
parent | imlib2 is required even with USE=-X. (diff) | |
download | gentoo-2-4a872b089fe71af6855fa9779cb1720c16dae2e8.tar.gz gentoo-2-4a872b089fe71af6855fa9779cb1720c16dae2e8.tar.bz2 gentoo-2-4a872b089fe71af6855fa9779cb1720c16dae2e8.zip |
Do not set CFLAGS in stone during src_unpack stage to avoid triggering the mass CFLAGS bug filing framework. Use toolchain-funcs eclass to set CC. Closes bug #240808 by Diego "Flameeyes" Pettenò <flameeyes@gentoo.org>.
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-rc8-dirty x86_64)
Diffstat (limited to 'media-sound/mp3gain')
-rw-r--r-- | media-sound/mp3gain/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/mp3gain/mp3gain-1.4.6-r2.ebuild | 39 |
2 files changed, 47 insertions, 1 deletions
diff --git a/media-sound/mp3gain/ChangeLog b/media-sound/mp3gain/ChangeLog index 4cb5992dccff..4b4ccad89276 100644 --- a/media-sound/mp3gain/ChangeLog +++ b/media-sound/mp3gain/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-sound/mp3gain # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3gain/ChangeLog,v 1.26 2008/09/10 14:48:42 loki_val Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3gain/ChangeLog,v 1.27 2008/10/11 23:28:06 chainsaw Exp $ + +*mp3gain-1.4.6-r2 (11 Oct 2008) + + 11 Oct 2008; <chainsaw@gentoo.org> +mp3gain-1.4.6-r2.ebuild: + Do not set CFLAGS in stone during src_unpack stage to avoid triggering the + mass CFLAGS bug filing framework. Use toolchain-funcs eclass to set CC. + Closes bug #240808 by Diego "Flameeyes" Pettenò <flameeyes@gentoo.org>. 10 Sep 2008; Peter Alfredsen <loki_val@gentoo.org> mp3gain-1.4.6-r1.ebuild: diff --git a/media-sound/mp3gain/mp3gain-1.4.6-r2.ebuild b/media-sound/mp3gain/mp3gain-1.4.6-r2.ebuild new file mode 100644 index 000000000000..62aae6389169 --- /dev/null +++ b/media-sound/mp3gain/mp3gain-1.4.6-r2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mp3gain/mp3gain-1.4.6-r2.ebuild,v 1.1 2008/10/11 23:28:06 chainsaw Exp $ + +inherit eutils flag-o-matic toolchain-funcs + +IUSE="" + +MY_P=${P//./_} +S=${WORKDIR} + +DESCRIPTION="MP3Gain automatically adjusts mp3s so that they all have the same volume" +HOMEPAGE="http://mp3gain.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}-src.zip" + +SLOT="0" +LICENSE="LGPL-2.1" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" + +DEPEND="app-arch/unzip" + +src_unpack() { + unpack ${A} + cd "${S}" + + filter-flags -O* + sed -i -e "s:CC=.*:CC=$(tc-getCC):" "${S}"/Makefile || die "Unable to override compiler selection" + sed -i -e "s:CFLAGS= -Wall -O3 -DHAVE_MEMCPY:CFLAGS+= -Wall -DHAVE_MEMCPY:" "${S}"/Makefile || + die "Unable to convince build system to respect CFLAGS" + epatch "${FILESDIR}"/${PV}-option-parser.patch +} + +src_compile() { + emake CC="$(tc-getCC)" || die "Compile failed" +} + +src_install () { + dobin mp3gain +} |