blob: c59e874eb1d294d7571da89733eff4322053ba3a (
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
48
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/cos/cos-20021105-r1.ebuild,v 1.1 2007/02/10 19:42:01 nichoj Exp $
inherit java-pkg-2 java-ant-2
MY_PV=05Nov2002
MY_P=${PN}-${MY_PV}
DESCRIPTION=" The com.oreilly.servlet package is the \"must have\" class library for servlet developers."
HOMEPAGE="http://servlets.com/cos/"
SRC_URI="http://servlets.com/${PN}/${MY_P}.zip"
LICENSE="cos"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip
dev-java/ant-core"
RDEPEND=">=virtual/jre-1.4
=dev-java/servletapi-2.3*"
S=${WORKDIR}
src_unpack() {
unpack ${A}
rm -r lib classes *.war
# TODO I'm not sure how to fix the compilation error for this class
# so i'll just delete it for now..
rm src/com/oreilly/servlet/CacheHttpServlet.java
cp ${FILESDIR}/build-${PV}.xml build.xml
cat > build.properties <<-EOF
classpath=$(java-pkg_getjars servletapi-2.3)
EOF
}
src_compile() {
eant -Dproject.name=${PN} jar $(use_doc)
}
src_install() {
java-pkg_dojar dist/${PN}.jar
dodoc readme.txt license.txt
use doc && java-pkg_dohtml -r dist/doc/api
}
|