blob: a83520865d9fd83e2c5b43731cb6a95966ec7f77 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/fil-plugins/fil-plugins-0.1.0.ebuild,v 1.1 2006/05/08 23:21:33 fvdpol Exp $
#
MY_P=${P/fil/FIL}
DESCRIPTION="FIL-plugins ladspa plugin package. Filters by Fons Adriaensen"
HOMEPAGE="http://users.skynet.be/solaris/linuxaudio/"
SRC_URI="http://users.skynet.be/solaris/linuxaudio/downloads/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE=""
DEPEND="media-libs/ladspa-sdk"
S=${WORKDIR}/${MY_P}
src_compile() {
emake || die
}
src_install() {
dodoc AUTHORS COPYING README
insinto /usr/lib/ladspa
insopts -m0755
doins *.so
}
|