blob: 1d439c19f249da44e138644f83b12196dceac3bb (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/kaffeine-mozilla-plugin/kaffeine-mozilla-plugin-0.2.ebuild,v 1.6 2005/03/23 16:19:04 seemant Exp $
inherit nsplugins
MY_P=${P/-plugin/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="The Kaffeine Mozilla starter plugin."
HOMEPAGE="http://kaffeine.sourceforge.net/"
SRC_URI="mirror://sourceforge/kaffeine/${MY_P}.tar.bz2"
SLOT="0"
KEYWORDS="x86 ~ppc"
LICENSE="GPL-2"
IUSE=""
DEPEND=">=media-video/kaffeine-0.4.3b"
RDEPEND=">=media-video/kaffeine-0.4.3b
|| ( >=www-client/mozilla-1.6-r1 >=www-client/mozilla-firefox-0.8 )"
src_compile() {
econf --prefix=/usr/lib/${PLUGINS_DIR} || die
emake || die
}
src_install() {
einstall prefix=${D}/usr/lib/${PLUGINS_DIR%plugins} || die
dodoc AUTHORS COPYING ChangeLog INSTALL README
}
|