blob: 30b875c90a88c2df34d0cdeb3b5aa5ab62c98f17 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/tomcat-servlet-api/tomcat-servlet-api-6.0.10_pre.ebuild,v 1.1 2007/02/13 19:24:37 wltjr Exp $
inherit eutils java-pkg-2 java-ant-2
MY_A="apache-${P/_pre/}-src"
MY_P="${MY_A/-servlet-api/}"
DESCRIPTION="Tomcat's Servlet API 2.5/JSP API 2.1 implementation"
HOMEPAGE="http://tomcat.apache.org/"
#SRC_URI="mirror://apache/jakarta/tomcat-6/v${PV/_/-}/src/${MY_P}.tar.gz"
SRC_URI="http://people.apache.org/~remm/tomcat-6/v${PV/_pre/}/src/${MY_P}.tar.gz"
LICENSE="Apache-1.1"
SLOT="2.5"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="source"
DEPEND="|| ( >=virtual/jdk-1.5 >=virtual/jdk-1.6 )
source? ( app-arch/zip )"
RDEPEND="|| ( >=virtual/jre-1.5 >=virtual/jre-1.6 )"
S="${WORKDIR}/${MY_P}/"
src_unpack() {
unpack ${A}
cd "${S}"
cp ${FILESDIR}/${SLOT}-build.xml build.xml || die "Could not replace build.xml"
rm */*/build.xml
}
src_compile() {
# local antflags="jar $(use_doc javadoc examples)"
local antflags="jar"
eant ${antflags}
}
src_install() {
cd "${S}/output/build/lib"
java-pkg_dojar *.jar
# use doc && java-pkg_dohtml -r docs/*
if use source; then
cd "${S}"
java-pkg_dosrc java/javax/servlet/
fi
}
|