blob: 433052c20e87f97c8b3a6a398af133d2381e4cdd (
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
|
# 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.4.ebuild,v 1.8 2003/09/07 00:06:06 msterret Exp $
IUSE="xmms"
DESCRIPTION="Audio file volume normalizer"
HOMEPAGE="http://www.cs.columbia.edu/~cvaill/normalize"
SRC_URI="http://www.cs.columbia.edu/~cvaill/${PN}/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc"
RDEPEND="xmms? ( >=media-sound/xmms-1.2.7-r6 )
>=media-libs/audiofile-0.2.3-r1
>=media-sound/mad-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
}
|