blob: 3a26d6b6b66aa7e1a0a6ae723776106c772425bb (
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-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
RESTRICT=mirror
DESCRIPTION="A vocoder is a sound effect that can make a human voice sound
synthetic"
HOMEPAGE="http://www.sirlab.de/linux/descr_vocoder.html"
SRC_URI="http://www.sirlab.de/linux/download/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="media-libs/ladspa-sdk"
MY_P="${P/-ladspa/}"
S=${WORKDIR}/${MY_P}
src_unpack(){
unpack "${A}"
cd "${S}"
}
src_compile() {
emake || die
}
src_install() {
dodoc COPYRIGHT README
insinto /usr/$(get_libdir)/ladspa
insopts -m0755
doins vocoder.so
}
|