From 96a1492c275da73f13392f88dd271e226598b292 Mon Sep 17 00:00:00 2001 From: Adrian Almenar Date: Wed, 6 Nov 2002 05:24:12 +0000 Subject: Initial Import --- dev-java/commons-logging/ChangeLog | 9 ++++ .../commons-logging/commons-logging-1.0.2.ebuild | 51 ++++++++++++++++++++++ .../files/digest-commons-logging-1.0.2 | 1 + 3 files changed, 61 insertions(+) create mode 100644 dev-java/commons-logging/ChangeLog create mode 100644 dev-java/commons-logging/commons-logging-1.0.2.ebuild create mode 100644 dev-java/commons-logging/files/digest-commons-logging-1.0.2 (limited to 'dev-java') diff --git a/dev-java/commons-logging/ChangeLog b/dev-java/commons-logging/ChangeLog new file mode 100644 index 000000000000..4711830c9734 --- /dev/null +++ b/dev-java/commons-logging/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-java/commons-logging +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.1 2002/11/06 05:24:12 strider Exp $ + +*commons-logging-1.0.2 (06 Nov 2002) + + 06 Nov 2002; Adrian Almenar ChangeLog commons-logging-1.0.2.ebuild files/digest-commons-logging-1.0.2 : + Initial import. + diff --git a/dev-java/commons-logging/commons-logging-1.0.2.ebuild b/dev-java/commons-logging/commons-logging-1.0.2.ebuild new file mode 100644 index 000000000000..c2741df10fa7 --- /dev/null +++ b/dev-java/commons-logging/commons-logging-1.0.2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.0.2.ebuild,v 1.1 2002/11/06 05:24:12 strider Exp $ + +S="${WORKDIR}/${P}-src" +DESCRIPTION="Jakarta component that abstract logging API" +HOMEPAGE="http://jakarta.apache.org/commons/logging.html" +SRC_URI="http://jakarta.apache.org/builds/jakarta-commons/release/${PN}/v${PV}/${P}-src.tar.gz" +DEPEND=">=virtual/jdk-1.3 + >=dev-java/ant-1.4" +RDEPEND=">=virtual/jre-1.3" +LICENSE="Apache-1.1" +SLOT="0" +KEYWORDS="~x86" +IUSE="jikes junit" + +src_compile() { + local myc + + cd logging + cp LICENSE.txt ../LICENSE + + 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 + + echo "log4j.jar=`java-config --classpath=log4j`" >> build.properties + + ANT_OPTS=${myc} ant dist || die "Compilation failed" +} + +src_install () { + cd logging + dojar dist/commons-logging-api.jar || die "Unable to install" + dojar dist/commons-logging.jar || die "Unable to install" + dodoc RELEASE-NOTES.txt + dohtml PROPOSAL.html STATUS.html usersguide.html + dohtml -r dist/docs/* +} + +pkg_postinst() { + einfo "**************** Documentation can be found at ******************\n + WEB: ${HOMEPAGE}\n + LOCAL: /usr/share/doc/${PF}\n + *****************************************************************" +} diff --git a/dev-java/commons-logging/files/digest-commons-logging-1.0.2 b/dev-java/commons-logging/files/digest-commons-logging-1.0.2 new file mode 100644 index 000000000000..608ab555e60d --- /dev/null +++ b/dev-java/commons-logging/files/digest-commons-logging-1.0.2 @@ -0,0 +1 @@ +MD5 78bfaac25906a54b925bcc285872c9c9 commons-logging-1.0.2-src.tar.gz 33550 -- cgit v1.2.3-65-gdbad