blob: c22785db61531609bf43fc1f946e6c67a40f26c6 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/gnu-activation/gnu-activation-20040331.ebuild,v 1.2 2004/04/28 23:09:14 karltk Exp $
inherit java-pkg
DESCRIPTION="GNU implementation of the Java Activation Framework"
HOMEPAGE="http://www.gnu.org/software/classpathx/jaf/"
SRC_URI="http://www.gentoo.org/~karltk/java/distfiles/activation-20040331-gentoo.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"
RDEPEND=">=virtual/jre-1.4"
DEPEND=">=virtual/jdk-1.4"
S=${WORKDIR}/activation-${PV}
src_compile() {
econf || die
# package fails in parallel builds
MAKEOPTS="-j1" emake || die
if use doc ; then
MAKEOPTS="-j1" emake javadoc || die
fi
}
src_install() {
java-pkg_dojar activation.jar
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
use doc && dohtml -r docs/*
}
|