blob: e17add56707bbb0223bbfc1bed0aaa131bd61359 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/tap-plugins/tap-plugins-0.6.0.ebuild,v 1.1 2004/07/04 21:37:08 fvdpol Exp $
#
DESCRIPTION="TAP ladspa plugins package. Contains DeEsser, Dynamics, Equalizer, Reverb, Stereo Echo, Tremolo"
HOMEPAGE="http://tap-plugins.sourceforge.net"
SRC_URI="mirror://sourceforge/tap-plugins/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE=""
DEPEND="media-libs/ladspa-sdk"
src_compile() {
emake || die
}
src_install() {
dodoc COPYING README CREDITS
dohtml ${S}/doc/*
insinto /usr/lib/ladspa
insopts -m0755
doins *.so
insinto /usr/share/ladspa/rdf
insopts -m0644
doins *.rdf
}
|