# ChangeLog for dev-java/mx4j
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/mx4j/ChangeLog,v 1.18 2007/02/03 22:49:14 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/mx4j/ChangeLog,v 1.19 2007/04/08 13:04:08 betelgeuse Exp $
+
+ 08 Apr 2007; Petteri Räty <betelgeuse@gentoo.org> -mx4j-3.0.1-r1.ebuild:
+ Time for the non splitted ebuild to go.
03 Feb 2007; Steve Dibb <beandog@gentoo.org> mx4j-3.0.1-r2.ebuild:
amd64 stable, bug 160985
28 Sep 2006; Joshua Nichols <nichoj@gentoo.org> +mx4j-3.0.1-r1.ebuild:
Revision bump to support new Java system.
+*mx4j-3.0.1 (03 Jul 2006)
+
03 Jul 2006; Joshua Nichols <nichoj@gentoo.org> +mx4j-3.0.1.ebuild:
Version bump needed for tomcat-5.5.
+++ /dev/null
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/mx4j/mx4j-3.0.1-r1.ebuild,v 1.4 2006/11/28 04:28:45 nichoj Exp $
-
-inherit eutils java-pkg-2 java-ant-2
-
-DESCRIPTION="An Open Source implementation of the Java(TM) Management Extensions (JMX) and JMX Remote API (JSR 160) specifications."
-HOMEPAGE="http://mx4j.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz"
-RDEPEND="dev-java/bcel
- dev-java/commons-logging
- dev-java/log4j
- =www-servers/axis-1*
- ~dev-java/servletapi-2.3
- =dev-java/gnu-jaf-1*
- =dev-java/gnu-javamail-1*
- dev-java/jython
- =dev-java/hessian-3.0.8*
- =dev-java/burlap-3.0*"
-DEPEND="${RDEPEND}
- >=virtual/jdk-1.3
- >=dev-java/ant-core-1.6
- source? ( app-arch/zip )"
-RDEPEND="${RDEPEND}
- >=virtual/jre-1.3"
-
-LICENSE="mx4j"
-SLOT="3.0"
-KEYWORDS="amd64 x86"
-IUSE="doc examples source"
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}/lib
- java-pkg_jar-from bcel
- java-pkg_jar-from commons-logging commons-logging.jar
- java-pkg_jar-from log4j
- java-pkg_jar-from axis-1
- java-pkg_jar-from servletapi-2.3
- java-pkg_jar-from gnu-jaf-1
- java-pkg_jar-from gnu-javamail-1 gnumail.jar mail.jar
- java-pkg_jar-from jython
- java-pkg_jar-from hessian-3.0.8
- java-pkg_jar-from burlap-3.0
-}
-
-src_compile() {
- eant -f build/build.xml \
- compile.jmx compile.rjmx compile.tools \
- $(use_doc javadocs) $(use examples && echo compile.examples)
-}
-
-src_install () {
- java-pkg_dojar dist/lib/*.jar
- java-pkg_dowar dist/lib/*.war
-
- dodoc LICENSE README
- use doc && java_pkg-dohtml -r dist/docs/api/*
-
- use source && java-pkg_dosrc ${S}/src/core/*
-
- if use examples; then
- dodir /usr/share/doc/${PF}/examples
- cp -r src/examples/mx4j/examples/* ${D}usr/share/doc/${PF}/examples
- fi
-}