blob: 67df860d7d072d1ff1c374289942ce1ad83a62b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2009 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-r3.ebuild,v 1.7 2009/06/25 17:54:54 armin76 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"
RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
filter-flags -O*
sed -i -e "s:CC=.*:CC=$(tc-getCC):" \
-e "s:CFLAGS= -Wall -O3 -DHAVE_MEMCPY:CFLAGS+= -Wall -DHAVE_MEMCPY:" \
-e "s:LIBS=.*:LIBS= ${LDFLAGS} -lm:" \
"${S}"/Makefile \
|| die "Unable to adjust build system compiler/flags."
epatch "${FILESDIR}"/${PV}-option-parser.patch
}
src_install () {
dobin mp3gain
}
|