summaryrefslogtreecommitdiff
blob: f97aea3aa9bfb2a3034103e8e819d10b01de8e4d (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
34
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/regexp/regexp-1.3.ebuild,v 1.10 2004/08/24 01:52:34 zx Exp $

DESCRIPTION="100% Pure Java Regular Expression package"
SRC_URI="mirror://apache/jakarta/regexp/source/jakarta-${P}.tar.gz"
HOMEPAGE="http://jakarta.apache.org/"
SLOT="0"
IUSE="doc jikes"
LICENSE="Apache-1.1"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
DEPEND=">=virtual/jdk-1.3"

S=${WORKDIR}/jakarta-${P}

src_unpack() {
	unpack ${A}
	cd ${S}
	mkdir lib
	sed -i 's:./jakarta-site2::' build.xml || die "sed failed"
}

src_compile() {
	local antflags="jar"
	use doc && antflags="${antflags} javadocs"
	ant ${antflags} || die "compile problem"
}

src_install() {
	cd ${S}/build
	mv jakarta-${P}.jar ${PN}.jar
	dojar ${PN}.jar
	use doc && dohtml -r docs/api/*
}