diff options
author | 2004-10-20 08:40:43 +0000 | |
---|---|---|
committer | 2004-10-20 08:40:43 +0000 | |
commit | c5ef32daad835519537170a88329cc90e723b384 (patch) | |
tree | 06ee9daa6fb469c73fbb1d7234cb4bc4f578dd45 /dev-java/java-getopt | |
parent | Keywords ~amd64. (Manifest recommit) (diff) | |
download | gentoo-2-c5ef32daad835519537170a88329cc90e723b384.tar.gz gentoo-2-c5ef32daad835519537170a88329cc90e723b384.tar.bz2 gentoo-2-c5ef32daad835519537170a88329cc90e723b384.zip |
Version bump. Keywords ~amd64.
Diffstat (limited to 'dev-java/java-getopt')
-rw-r--r-- | dev-java/java-getopt/ChangeLog | 8 | ||||
-rw-r--r-- | dev-java/java-getopt/Manifest | 14 | ||||
-rw-r--r-- | dev-java/java-getopt/files/digest-java-getopt-1.0.10 | 1 | ||||
-rw-r--r-- | dev-java/java-getopt/java-getopt-1.0.10.ebuild | 28 |
4 files changed, 39 insertions, 12 deletions
diff --git a/dev-java/java-getopt/ChangeLog b/dev-java/java-getopt/ChangeLog index c90cbffa113f..a1e353783ca5 100644 --- a/dev-java/java-getopt/ChangeLog +++ b/dev-java/java-getopt/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-java/java-getopt # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/java-getopt/ChangeLog,v 1.7 2004/10/16 17:19:06 axxo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/java-getopt/ChangeLog,v 1.8 2004/10/20 08:40:43 absinthe Exp $ + +*java-getopt-1.0.10 (20 Oct 2004) + + 20 Oct 2004; Dylan Carlson <absinthe@gentoo.org> + +java-getopt-1.0.10.ebuild: + Version bump. Keywords ~amd64. 16 Oct 2004; Thomas Matthijs <axxo@gentoo.org> java-getopt-1.0.9.ebuild: use java-pkg_dohtml instead of dohtml to also install the package-list in diff --git a/dev-java/java-getopt/Manifest b/dev-java/java-getopt/Manifest index c01b3076c649..7004b089c1b4 100644 --- a/dev-java/java-getopt/Manifest +++ b/dev-java/java-getopt/Manifest @@ -1,14 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 ef080a49bae2486e2d42afbdcbfcb526 java-getopt-1.0.9.ebuild 813 MD5 c4d88d13d7350bb16689f0ba260d8836 ChangeLog 946 +MD5 ef080a49bae2486e2d42afbdcbfcb526 java-getopt-1.0.9.ebuild 813 MD5 a6ec7d7724fbd068ffb39b5be56134ed metadata.xml 157 +MD5 30de0e3260158e8ee4d77a76212ef97c java-getopt-1.0.10.ebuild 822 MD5 f1e4ef407b1542fc56a559aded2b49c0 files/digest-java-getopt-1.0.9 68 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.6 (GNU/Linux) - -iD8DBQFBcVgT/rLF9B432nYRAqmkAJ0UkZaxeW2PexPxHjrXWQQmPcb5DgCgwo0I -p2gd/FdkTw6dFS5yOlYKC5I= -=vMc9 ------END PGP SIGNATURE----- +MD5 65efd41a087d22f82770644b6512ec36 files/digest-java-getopt-1.0.10 69 diff --git a/dev-java/java-getopt/files/digest-java-getopt-1.0.10 b/dev-java/java-getopt/files/digest-java-getopt-1.0.10 new file mode 100644 index 000000000000..9f63d6df6643 --- /dev/null +++ b/dev-java/java-getopt/files/digest-java-getopt-1.0.10 @@ -0,0 +1 @@ +MD5 30872c62c6b1d7fba9097995ebe281a5 java-getopt-1.0.10.tar.gz 44090 diff --git a/dev-java/java-getopt/java-getopt-1.0.10.ebuild b/dev-java/java-getopt/java-getopt-1.0.10.ebuild new file mode 100644 index 000000000000..10d302b5ff12 --- /dev/null +++ b/dev-java/java-getopt/java-getopt-1.0.10.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/java-getopt/java-getopt-1.0.10.ebuild,v 1.1 2004/10/20 08:40:43 absinthe Exp $ + +inherit java-pkg + +DESCRIPTION="Java command line option parser" +HOMEPAGE="http://www.urbanophile.com/arenn/hacking/download.html" +SRC_URI="ftp://ftp.urbanophile.com/pub/arenn/software/sources/java-getopt-${PV}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="1" +DEPEND=">=virtual/jdk-1.2 + >=dev-java/ant-1.4.1" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="" + +S=${WORKDIR} + +src_compile() { + mv gnu/getopt/buildx.xml build.xml + ant all || die "failed to build" +} + +src_install () { + java-pkg_dojar build/lib/gnu.getopt.jar + java-pkg_dohtml -r build/api/* + dodoc gnu/getopt/COPYING.LIB gnu/getopt/ChangeLog gnu/getopt/README +} |