diff options
author | Vlastimil Babka <caster@gentoo.org> | 2008-02-02 17:24:05 +0000 |
---|---|---|
committer | Vlastimil Babka <caster@gentoo.org> | 2008-02-02 17:24:05 +0000 |
commit | 67985eb597ed4f8646666b2f80b1a34e7f95d28e (patch) | |
tree | 9a561534bdb1f9eadb24258ffdc05bfd8a2f0ee4 /dev-util/jconfig | |
parent | Bump patchset to fix #208212 (diff) | |
download | gentoo-2-67985eb597ed4f8646666b2f80b1a34e7f95d28e.tar.gz gentoo-2-67985eb597ed4f8646666b2f80b1a34e7f95d28e.tar.bz2 gentoo-2-67985eb597ed4f8646666b2f80b1a34e7f95d28e.zip |
Remove gen-1 version.
(Portage version: 2.1.4.1)
Diffstat (limited to 'dev-util/jconfig')
-rw-r--r-- | dev-util/jconfig/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/jconfig/jconfig-2.8-r1.ebuild | 42 |
2 files changed, 5 insertions, 44 deletions
diff --git a/dev-util/jconfig/ChangeLog b/dev-util/jconfig/ChangeLog index 467a2bed0b6d..01ec9b5445e6 100644 --- a/dev-util/jconfig/ChangeLog +++ b/dev-util/jconfig/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/jconfig -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/jconfig/ChangeLog,v 1.13 2007/11/05 14:36:27 opfer Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/jconfig/ChangeLog,v 1.14 2008/02/02 17:24:05 caster Exp $ + + 02 Feb 2008; Vlastimil Babka <caster@gentoo.org> -jconfig-2.8-r1.ebuild: + Remove gen-1 version. 05 Nov 2007; Christian Faulhammer <opfer@gentoo.org> jconfig-2.8-r2.ebuild: diff --git a/dev-util/jconfig/jconfig-2.8-r1.ebuild b/dev-util/jconfig/jconfig-2.8-r1.ebuild deleted file mode 100644 index 4f78a4da49de..000000000000 --- a/dev-util/jconfig/jconfig-2.8-r1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/jconfig/jconfig-2.8-r1.ebuild,v 1.4 2006/10/05 14:42:16 gustavoz Exp $ - -inherit java-pkg - -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="doc jikes" -RDEPEND=">=virtual/jre-1.3 - dev-java/sun-jmx" -DEPEND=">=virtual/jdk-1.3 - ${RDEPEND} - dev-java/ant-core - jikes? ( dev-java/jikes )" - -S="${WORKDIR}/${PN/c/C}" - -src_unpack() { - unpack ${A} - cd ${S}/lib/ - rm -f *.jar - java-pkg_jar-from sun-jmx -} - -src_compile() { - local antflags="jar" - use jikes && antflags="${antflags} -Dbuild.compiler=jikes" - use doc && antflags="${antflags} javadoc" - ant ${antflags} || die "failed to build" -} - -src_install() { - java-pkg_dojar dist/jconfig.jar - use doc && java-pkg_dohtml -r javadoc/* - - dodoc README -} |