diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-09-11 23:20:13 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-09-11 23:20:13 +0000 |
commit | c7375127fa8f88c1bc12349b681186dbda0a2e85 (patch) | |
tree | 86eef89da9c2e3b18710f93e4d7d39d724e8d6c6 /dev-util/jconfig | |
parent | amd64/x86 stable, bug #284326 (diff) | |
download | gentoo-2-c7375127fa8f88c1bc12349b681186dbda0a2e85.tar.gz gentoo-2-c7375127fa8f88c1bc12349b681186dbda0a2e85.tar.bz2 gentoo-2-c7375127fa8f88c1bc12349b681186dbda0a2e85.zip |
Bump
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/jconfig')
-rw-r--r-- | dev-util/jconfig/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/jconfig/jconfig-2.8.5.ebuild | 47 |
2 files changed, 54 insertions, 2 deletions
diff --git a/dev-util/jconfig/ChangeLog b/dev-util/jconfig/ChangeLog index 0d53688b001d..094f9b24f12b 100644 --- a/dev-util/jconfig/ChangeLog +++ b/dev-util/jconfig/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/jconfig -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/jconfig/ChangeLog,v 1.18 2008/06/26 16:37:10 nixnut Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/jconfig/ChangeLog,v 1.19 2009/09/11 23:20:13 patrick Exp $ + +*jconfig-2.8.5 (11 Sep 2009) + + 11 Sep 2009; Patrick Lauer <patrick@gentoo.org> +jconfig-2.8.5.ebuild: + Bump 26 Jun 2008; nixnut <nixnut@gentoo.org> jconfig-2.8-r3.ebuild: Stable on ppc wrt bug 228827 diff --git a/dev-util/jconfig/jconfig-2.8.5.ebuild b/dev-util/jconfig/jconfig-2.8.5.ebuild new file mode 100644 index 000000000000..d13831cdabfc --- /dev/null +++ b/dev-util/jconfig/jconfig-2.8.5.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/jconfig/jconfig-2.8.5.ebuild,v 1.1 2009/09/11 23:20:13 patrick Exp $ + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="jConfig is an extremely helpful utility, providing a simple API for the management of properties." +SRC_URI="mirror://sourceforge/${PN}/${PN}-src-v${PV}.tar.gz" +HOMEPAGE="http://www.jconfig.org/" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +COMMON_DEP="java-virtuals/jmx" + +RDEPEND=">=virtual/jre-1.4 + ${COMMON_DEP}" + +DEPEND=">=virtual/jdk-1.4 + ${COMMON_DEP}" + +S="${WORKDIR}/${PN/c/C}" + +src_unpack() { + unpack ${A} + cd "${S}" + + rm -v dist/*.jar || die + rm -v lib/*.jar || die + + java-pkg_jar-from --into lib jmx +} + +JAVA_ANT_ENCODING="ISO-8859-1" + +src_install() { + java-pkg_dojar dist/jconfig.jar + + dodoc README || die + + use doc && java-pkg_dojavadoc javadoc + use source && java-pkg_dosrc src/* + +} |