blob: 0fbe3e6d403f33419493399c885583ac4286be5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-fileupload/commons-fileupload-1.0_beta.ebuild,v 1.3 2003/04/26 05:36:58 strider Exp $
inherit jakarta-commons
MY_PV=${PV/_/-}-1
S="${WORKDIR}/${PN}-${MY_PV}"
DESCRIPTION="The Commons FileUpload package makes it easy to add robust, high-performance, file upload capability to your servlets and web applications."
HOMEPAGE="http://jakarta.apache.org/commons/fileupload/index.html"
SRC_URI="mirror://apache/jakarta/commons/fileupload/source/${PN}-${MY_PV}-src.tar.gz"
DEPEND=">=virtual/jdk-1.3
>=dev-java/ant-1.4"
RDEPEND=">=virtual/jdk-1.3"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc"
IUSE="jikes"
src_compile() {
jakarta-commons_src_compile myconf make
}
|