blob: 329cdf4edac934fcd63edd12a66d4460ef8b0421 (
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-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit toolchain-funcs
DESCRIPTION="Streaming media plugin for Mozilla, based on netscape-plugger"
HOMEPAGE="http://mozplugger.mozdev.org/"
SRC_URI="http://${PN}.mozdev.org/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="x11-libs/libX11"
DEPEND="${RDEPEND}"
src_install() {
dobin ${PN}-{helper,controller,linker,update}
insinto /etc
doins ${PN}rc
insinto /usr/$(get_libdir)/nsbrowser/plugins
doins ${PN}.so
doman ${PN}.7
dodoc ChangeLog README
}
|