blob: 066a0f07884d537b14cd3fee9971f6287535a551 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/log4j/log4j-1.2.8.ebuild,v 1.12 2004/10/16 17:29:18 axxo Exp $
inherit java-pkg
DESCRIPTION="A low-overhead robust logging package for Java"
SRC_URI="http://jakarta.apache.org/log4j/jakarta-${P}.tar.gz"
HOMEPAGE="http://jakarta.apache.org"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="x86 sparc ppc amd64"
IUSE="doc"
DEPEND=">=virtual/jdk-1.2"
S="${WORKDIR}/jakarta-${P}"
src_compile() { :; }
src_install() {
cd dist/lib
mv log4j-${PV}.jar ${PN}.jar
java-pkg_dojar ${PN}.jar
use doc && java-pkg_dohtml -r docs/*
}
|