diff options
author | 2006-07-20 11:25:52 +0000 | |
---|---|---|
committer | 2006-07-20 11:25:52 +0000 | |
commit | 5facf6656173698df946d54c27d003b527efbdec (patch) | |
tree | 17ff94e3498c7d6eabf0738b42ac56e2fde2a4ff /dev-java/commons-logging/commons-logging-1.0.4-r2.ebuild | |
parent | Adding CVS version of gnome-pilot from january which has a netsync patch appl... (diff) | |
download | historical-5facf6656173698df946d54c27d003b527efbdec.tar.gz historical-5facf6656173698df946d54c27d003b527efbdec.tar.bz2 historical-5facf6656173698df946d54c27d003b527efbdec.zip |
Migrated to Generation 2.
Package-Manager: portage-2.1.1_pre3-r1
Diffstat (limited to 'dev-java/commons-logging/commons-logging-1.0.4-r2.ebuild')
-rw-r--r-- | dev-java/commons-logging/commons-logging-1.0.4-r2.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/dev-java/commons-logging/commons-logging-1.0.4-r2.ebuild b/dev-java/commons-logging/commons-logging-1.0.4-r2.ebuild new file mode 100644 index 000000000000..1942243364bf --- /dev/null +++ b/dev-java/commons-logging/commons-logging-1.0.4-r2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.0.4-r2.ebuild,v 1.1 2006/07/20 11:21:37 nelchael Exp $ + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="The Jakarta-Commons Logging package is an ultra-thin bridge between different logging libraries." +HOMEPAGE="http://jakarta.apache.org/commons/logging/" +SRC_URI="mirror://apache/jakarta/commons/logging/source/${P}-src.tar.gz" + +LICENSE="Apache-1.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="avalon doc source" + +RDEPEND=">=virtual/jre-1.3 + =dev-java/avalon-logkit-1.2* + dev-java/log4j + avalon? ( =dev-java/avalon-framework-4.2* )" +DEPEND=">=virtual/jdk-1.3 + dev-java/ant-core + source? ( app-arch/zip ) + ${RDEPEND}" + +S="${WORKDIR}/${P}-src/" + +ant_src_unpack() { + unpack ${A} + cd ${S} + + echo "log4j.jar=$(java-pkg_getjars log4j)" > build.properties + echo "logkit.jar=$(java-pkg_getjars avalon-logkit-1.2)" >> build.properties + use avalon && echo "avalon-framework.jar=$(java-pkg_getjars avalon-framework-4.2)" >> build.properties +} + +src_compile() { + local antflags="compile" + use doc && antflags="${antflags} javadoc" + eant ${antflags} || die "compile problem" +} + +src_install() { + java-pkg_dojar target/${PN}-api.jar target/${PN}.jar + + dodoc RELEASE-NOTES.txt + dohtml PROPOSAL.html STATUS.html + use doc && java-pkg_dohtml -r dist/docs/ + use source && java-pkg_dosrc src/java/org +} |