diff options
author | Vlastimil Babka <caster@gentoo.org> | 2010-04-27 09:03:42 +0000 |
---|---|---|
committer | Vlastimil Babka <caster@gentoo.org> | 2010-04-27 09:03:42 +0000 |
commit | 55cd01230372b11bda4536e7ec3c28e6144c8a33 (patch) | |
tree | 3c37bea7590725a4a56c1a4f08c9efe4d6279080 /dev-java/jcodings/jcodings-1.0.4.ebuild | |
parent | Force python2 fixing bug #312249 (diff) | |
download | historical-55cd01230372b11bda4536e7ec3c28e6144c8a33.tar.gz historical-55cd01230372b11bda4536e7ec3c28e6144c8a33.tar.bz2 historical-55cd01230372b11bda4536e7ec3c28e6144c8a33.zip |
Version bump, security bug #312547.
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'dev-java/jcodings/jcodings-1.0.4.ebuild')
-rw-r--r-- | dev-java/jcodings/jcodings-1.0.4.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-java/jcodings/jcodings-1.0.4.ebuild b/dev-java/jcodings/jcodings-1.0.4.ebuild new file mode 100644 index 000000000000..6acfe236f0a3 --- /dev/null +++ b/dev-java/jcodings/jcodings-1.0.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/jcodings/jcodings-1.0.4.ebuild,v 1.1 2010/04/27 09:03:42 caster Exp $ + +EAPI="2" +JAVA_PKG_IUSE="source" +inherit base java-pkg-2 java-ant-2 + +MY_PN="jruby-${PN}" +GIT_PV="0-gbaaab90" + +DESCRIPTION="Byte-based encoding support library for Java" +HOMEPAGE="http://jruby.codehaus.org/" +SRC_URI="http://github.com/jruby/${PN}/tarball/${PV} -> ${P}-git.tar.gz" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="" + +RDEPEND=">=virtual/jre-1.5" +DEPEND=">=virtual/jdk-1.5" + +EANT_BUILD_TARGET="build" +S="${WORKDIR}/${MY_PN}-${PV}-${GIT_PV}" + +src_install() { + java-pkg_dojar target/${PN}.jar + use source && java-pkg_dosrc src/* +} |