blob: 84ac1af317a25e18b1ba790cb135850df4741f30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2004 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.0.ebuild,v 1.3 2004/06/25 01:07:47 agriffis Exp $
MY_P=${P/netscape-/}
DESCRIPTION="Plugger streaming media plugin"
SRC_URI="http://fredrik.hubbe.net/plugger/${MY_P}.tar.gz"
HOMEPAGE="http://fredrik.hubbe.net/plugger.html"
SLOT="0"
DEPEND="net-www/mozilla"
KEYWORDS="~x86 ~ppc ~sparc"
LICENSE="GPL-2"
S=${WORKDIR}/${MY_P}
src_compile () {
emake linux || die
}
src_install () {
dodir /etc
make root=${D} prefix="/usr" install || die
}
|