blob: 712646af6ba1213cd935e2044ce8227eb376e77d (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/netscape-plugger/netscape-plugger-4.0-r2.ebuild,v 1.3 2003/02/13 15:40:15 vapier Exp $
inherit nsplugins
MYP=${P#netscape-}-linux-x86-glibc
S=${WORKDIR}/plugger-4.0
DESCRIPTION="Plugger 4.0 streaming media plugin"
SRC_URI="http://fredrik.hubbe.net/plugger/"${MYP}.tar.gz
HOMEPAGE="http://fredrik.hubbe.net/plugger.html"
SLOT="0"
KEYWORDS="~x86 -ppc ~sparc "
LICENSE="GPL-2"
DEPEND="virtual/glibc"
IUSE=""
src_install() {
cd ${S}
dodir /opt/netscape/plugins /etc
insinto /opt/netscape/plugins
doins plugger.so
insinto /etc
doins pluggerrc
dodoc README COPYING
doman plugger.7
insinto /usr/bin
dobin plugger-4.0
dosym plugger-4.0 /usr/bin/plugger
inst_plugin /opt/netscape/plugins/plugger.so
dodoc README
}
|