blob: 71a5fee54af55ee41e48ee5b3c4a0a0e51e60548 (
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/dev-java/netcomponents-bin/netcomponents-bin-1.3.8.ebuild,v 1.2 2004/10/16 17:31:14 axxo Exp $
inherit java-pkg
DESCRIPTION="An Internet protocol suite Java library from OROa"
HOMEPAGE="http://www.savarese.org/oro/"
SRC_URI="http://www.savarese.org/oro/downloads/NetComponents-${PV}.tar.gz"
LICENSE="netcomponents"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="doc"
DEPEND="virtual/jdk"
S=${WORKDIR}/NetComponents-${PV}a
src_compile() { :; }
src_install() {
java-pkg_dojar NetComponents.jar
use doc && java-pkg_dohtml -r doc/
}
|