blob: 9edf45d03ca4c401ffd458ab5589e311f843e124 (
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
|
# Copyright 2008 Daniel Gryniewciz
# Distributed under the terms of the GNU General Public License v2
inherit distutils python
DESCRIPTION="Good plugins for the Elisa "
HOMEPAGE="http://elisa.fluendo.com/"
SRC_URI="http://elisa.fluendo.com/static/download/elisa/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~amd64 ~ppc ~x86"
IUSE=""
MAKEOPTS="-j1"
RDEPEND="=media-video/elisa-${PV}
=media-plugins/elisa-plugins-good-${PV}"
DEPEND="${DEPEND}
>=dev-util/pkgconfig-0.9"
DOCS="AUTHORS ChangeLog COPYING NEWS"
src_install() {
distutils_src_install
# __init__.py is provided by elisa-plugins-good
rm ${D}/usr/$(get_libdir)/python${PYVER}/site-packages/elisa/plugins/__init__.py
}
|