blob: 7be69e55aca63c454e9db713204e385d18ddc26b (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/normalize/normalize-0.7.4.ebuild,v 1.14 2006/11/26 10:54:46 aballier Exp $
IUSE=""
DESCRIPTION="Audio file volume normalizer"
HOMEPAGE="http://normalize.nongnu.org/"
SRC_URI="http://www.cs.columbia.edu/~cvaill/${PN}/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc"
RDEPEND=">=media-libs/audiofile-0.2.3-r1
>=media-sound/madplay-0.14.2b-r1"
# NOTE: the "audiofile" and "mad" dependencies are NOT
# actually *required*, they are optional, but there are no
# appropriate USE variables.
#
# The libraries are quite small, so it does not seem to be that
# big a deal to force installation of them.
#
src_compile() {
econf \
--with-audiofile \
--with-mad || die
emake || die "emake failed"
}
src_install () {
make DESTDIR=${D} install || die
}
|