diff options
author | 2002-11-02 21:47:27 +0000 | |
---|---|---|
committer | 2002-11-02 21:47:27 +0000 | |
commit | 0f3d4765547be8ce43a0ecb22359d16e7e1892f0 (patch) | |
tree | bdde11242a47bd0d8fb2d10fd25fba9f9122ccb8 /dev-java | |
parent | Fixes #10101. (diff) | |
download | historical-0f3d4765547be8ce43a0ecb22359d16e7e1892f0.tar.gz historical-0f3d4765547be8ce43a0ecb22359d16e7e1892f0.tar.bz2 historical-0f3d4765547be8ce43a0ecb22359d16e7e1892f0.zip |
Fixes #10100.
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/commons-lang/ChangeLog | 8 | ||||
-rw-r--r-- | dev-java/commons-lang/commons-lang-1.0.ebuild | 51 | ||||
-rw-r--r-- | dev-java/commons-lang/files/digest-commons-lang-1.0 | 1 |
3 files changed, 60 insertions, 0 deletions
diff --git a/dev-java/commons-lang/ChangeLog b/dev-java/commons-lang/ChangeLog new file mode 100644 index 000000000000..2c54edd7b27d --- /dev/null +++ b/dev-java/commons-lang/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-java/commons-dbcp +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-lang/ChangeLog,v 1.1 2002/11/02 21:47:27 karltk Exp $ + +*commons-dbcp-1.0 (02 Nov 2002) + + 02 Nov 2002; Karl Trygve Kalleberg <karltk@gentoo.org> commons-dbcp-1.0.ebuild files/digest-commons-dbcp-1.0 : + Initial import. Ebuild submitted by Adrian Almenar <aalmenar@conectium.com>. diff --git a/dev-java/commons-lang/commons-lang-1.0.ebuild b/dev-java/commons-lang/commons-lang-1.0.ebuild new file mode 100644 index 000000000000..c0aae67d957f --- /dev/null +++ b/dev-java/commons-lang/commons-lang-1.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-lang/commons-lang-1.0.ebuild,v 1.1 2002/11/02 21:47:27 karltk Exp $ + +S="${WORKDIR}/${PN}-${PV}-src" +DESCRIPTION="Jakarta components to manipulate core java classes" +HOMEPAGE="http://jakarta.apache.org/commons/lang.html" +SRC_URI="http://jakarta.apache.org/builds/jakarta-commons/release/${PN}/v${PV}/${PN}-${PV}-src.tar.gz" +DEPEND=">=virtual/jdk-1.3 + >=dev-java/ant-1.4 + junit? ( >=junit-3.7 )" +RDEPEND=">=virtual/jre-1.3" +LICENSE="Apache-1.1" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64 ~alpha" +IUSE="jikes junit" + +src_compile() { + local myc + + cp lang/LICENSE.txt LICENSE + cd lang + + if [ -n "`use jikes`" ] ; then + myc="${myc} -Dbuild.compiler=jikes" + fi + + if [ -n "`use junit`" ] ; then + echo "junit.jar=`java-config --classpath=junit`" | sed s/:.*// > build.properties + ANT_OPTS=${myc} ant test || die "Testing Classes Failed" + fi + + ANT_OPTS=${myc} ant jar || die "Compilation Failed" + ANT_OPTS=${myc} ant javadoc || die "Building Documents Failed" +} + +src_install () { + cd lang + dodoc RELEASE-NOTES.txt + dojar dist/${PN}*.jar || die "Unable to install" + dohtml -r dist/docs/* + dohtml PROPOSAL.html STATUS.html +} + + +pkg_postinst() { + einfo "************ Documentation can be found at ***************\n + WEB: ${HOMEPAGE}\n + LOCAL: /usr/share/doc/${PF}\n + **********************************************************" +} diff --git a/dev-java/commons-lang/files/digest-commons-lang-1.0 b/dev-java/commons-lang/files/digest-commons-lang-1.0 new file mode 100644 index 000000000000..f990d8d79f82 --- /dev/null +++ b/dev-java/commons-lang/files/digest-commons-lang-1.0 @@ -0,0 +1 @@ +MD5 d367df1f903c5b6d6a5f24d51db0df5d commons-lang-1.0-src.tar.gz 90747 |