blob: 62164c289e0884bf82da8e83ba6a279dc09ca0a3 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/normalize/normalize-0.7.6-r1.ebuild,v 1.2 2003/07/19 19:33:30 raker Exp $
IUSE="xmms mad"
DESCRIPTION="Audio file volume normalizer"
HOMEPAGE="http://www.cs.columbia.edu/~cvaill/normalize"
SRC_URI="http://www.cs.columbia.edu/~cvaill/normalize/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
RDEPEND="xmms? ( >=media-sound/xmms-1.2.7-r6 )
mad? ( >=media-sound/mad-0.14.2b )
>=media-libs/audiofile-0.2.3-r1"
src_compile() {
local myconf
myconf=""
use mad && myconf="${myconf} --with-mad"
econf \
--with-audiofile \
${myconf} || die
emake || die "emake failed"
}
src_install () {
make DESTDIR=${D} install || die
}
|