blob: 22cc4566d3c7d2f78e9b7c074015a9f5b25226fe (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-plugins/diamondx/diamondx-0.1.ebuild,v 1.1 2009/04/10 22:35:29 jer Exp $
DESCRIPTION="A simple NPAPI plugin built to run on Unix platforms
and exercise the XEmbed browser extension."
HOMEPAGE="http://multimedia.cx/diamondx/"
SRC_URI="http://multimedia.cx/${PN}/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~hppa ~x86"
IUSE=""
DEPEND="=x11-libs/gtk+-2*
dev-libs/nspr"
RDEPEND=""
RESTRICT="test"
src_install() {
insinto /usr/lib/nsbrowser/plugins/
doins .libs/libdiamondx.so
insinto /usr/share/doc/${P}/examples
doins test/index.htm test/a.diamondx
dohtml doc/index.html doc/*.png
dodoc ChangeLog AUTHORS NEWS README
}
|