blob: 70c6dfadfff0d08f80e9bc35bc718cab4b83d253 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-plugger/netscape-plugger-5.1.3.ebuild,v 1.3 2005/10/11 03:12:04 morfic Exp $
inherit eutils nsplugins
MY_P=${P/netscape-/}
DESCRIPTION="Plugger streaming media plugin"
HOMEPAGE="http://fredrik.hubbe.net/plugger.html"
SRC_URI="http://fredrik.hubbe.net/plugger/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
IUSE=""
DEPEND="www-client/mozilla"
S="${WORKDIR}/${MY_P}"
src_compile () {
./configure \
--x-include=/usr/X11R6/include \
--x-libraries=/usr/X11R6/lib \
emake
}
src_install () {
#plugger plugin isntallation and symlinking
exeinto /opt/netscape/plugins
doexe plugger.so
inst_plugin /opt/netscape/plugins/gxineplugin.so
# plugger docs
doman plugger.7
dodoc README
# plugger helper applications
exeinto /usr/bin
doexe plugger-5.1.3
doexe plugger-oohelper
doexe plugger-controller
# install etc file
insinto /etc
doins pluggerrc
}
|