blob: a73580ddc441005c08672b29b0188bfa350990e5 (
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
39
40
41
42
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/vlevel/vlevel-0.5.ebuild,v 1.5 2004/10/07 02:33:22 eradicator Exp $
IUSE=""
inherit eutils
DESCRIPTION="VLevel is a dynamic compressor which amplifies the quiet parts of music. It's currently a LADSPA plugin and a command-line filter."
HOMEPAGE="http://vlevel.sourceforge.net/"
SRC_URI="mirror://sourceforge/vlevel/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="media-libs/ladspa-sdk"
DEPEND="${RDEPEND}
app-arch/gzip"
src_compile() {
emake CXXFLAGS="$CXXFLAGS -fPIC -DPIC" || die "emake failed"
}
src_install() {
dodir "/usr/bin" || die
einstall PREFIX="${D}/usr/bin/" LADSPA_PREFIX="${D}/usr/$(get_libdir)/ladspa/" || die
dodoc COPYING INSTALL README TODO docs/notes.txt docs/technical.txt || die
dodir "/usr/share/doc/${P}/examples" || die
cp utils/* "${D}/usr/share/doc/${P}/examples/" || die
for file in levelplay raw2wav vlevel-dir README; do
fperms 644 /usr/share/doc/${P}/examples/${file} || die
done
gzip -9 "${D}/usr/share/doc/${P}/examples/README" || die
}
|