diff options
author | 2006-08-26 14:35:35 +0000 | |
---|---|---|
committer | 2006-08-26 14:35:35 +0000 | |
commit | e493a3ce9d984923f1375db407615018cc1164e8 (patch) | |
tree | 09238f776c98fe93ad3f05808b4db82297f1cd76 /dev-java/gnu-jaxp | |
parent | Fix enewuser calls wrt bug #145153. Spotted by James Rowe <jnrowe@ukfsn.org> (diff) | |
download | gentoo-2-e493a3ce9d984923f1375db407615018cc1164e8.tar.gz gentoo-2-e493a3ce9d984923f1375db407615018cc1164e8.tar.bz2 gentoo-2-e493a3ce9d984923f1375db407615018cc1164e8.zip |
Migrated to generation 2. Forces 1.4 because gnu-jaxp is not compatible with the 1.5 api. Also added support for the source use flag.
(Portage version: 2.1.1_pre5-r3)
Diffstat (limited to 'dev-java/gnu-jaxp')
-rw-r--r-- | dev-java/gnu-jaxp/ChangeLog | 9 | ||||
-rw-r--r-- | dev-java/gnu-jaxp/files/digest-gnu-jaxp-1.3-r1 | 3 | ||||
-rw-r--r-- | dev-java/gnu-jaxp/gnu-jaxp-1.3-r1.ebuild | 36 |
3 files changed, 47 insertions, 1 deletions
diff --git a/dev-java/gnu-jaxp/ChangeLog b/dev-java/gnu-jaxp/ChangeLog index 0ae3c543b351..32974b4648a3 100644 --- a/dev-java/gnu-jaxp/ChangeLog +++ b/dev-java/gnu-jaxp/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-java/gnu-jaxp # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/gnu-jaxp/ChangeLog,v 1.22 2006/02/09 02:02:43 nichoj Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/gnu-jaxp/ChangeLog,v 1.23 2006/08/26 14:35:35 betelgeuse Exp $ + +*gnu-jaxp-1.3-r1 (26 Aug 2006) + + 26 Aug 2006; Petteri Räty <betelgeuse@gentoo.org> + +gnu-jaxp-1.3-r1.ebuild: + Migrated to generation 2. Forces 1.4 because gnu-jaxp is not compatible with + the 1.5 api. Also added support for the source use flag. 09 Feb 2006; Joshua Nichols <nichoj@gentoo.org> gnu-jaxp-1.3.ebuild: Marked stable on amd64. diff --git a/dev-java/gnu-jaxp/files/digest-gnu-jaxp-1.3-r1 b/dev-java/gnu-jaxp/files/digest-gnu-jaxp-1.3-r1 new file mode 100644 index 000000000000..5cb510ea49ec --- /dev/null +++ b/dev-java/gnu-jaxp/files/digest-gnu-jaxp-1.3-r1 @@ -0,0 +1,3 @@ +MD5 fa83180e76348810ec15660fc14be349 jaxp-1.3.tar.gz 1346478 +RMD160 d1e05f5982c9a43cd437073d6f9c5fa810dae9ad jaxp-1.3.tar.gz 1346478 +SHA256 7320671fbdea017501af4c11c3a3ca0b0c8bfb745c21e941608136496b15e901 jaxp-1.3.tar.gz 1346478 diff --git a/dev-java/gnu-jaxp/gnu-jaxp-1.3-r1.ebuild b/dev-java/gnu-jaxp/gnu-jaxp-1.3-r1.ebuild new file mode 100644 index 000000000000..387b4ec3ac6e --- /dev/null +++ b/dev-java/gnu-jaxp/gnu-jaxp-1.3-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/gnu-jaxp/gnu-jaxp-1.3-r1.ebuild,v 1.1 2006/08/26 14:35:35 betelgeuse Exp $ + +inherit eutils java-pkg-2 + +MY_P=${PN/gnu-/}-${PV} + +DESCRIPTION="GNU JAXP, a free implementation of SAX parser API, DOM Level 2, Sun JAXP 1.1." +HOMEPAGE="http://www.gnu.org/software/classpathx/jaxp/" +SRC_URI="ftp://ftp.gnu.org/pub/gnu/classpathx/${MY_P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc source" + +# Should work with 1.3 but did not test yet after migration to gen 2 +RDEPEND="=virtual/jre-1.4* + =dev-libs/libxml2-2* + dev-libs/libxslt" +DEPEND="=virtual/jdk-1.4* + ${RDEPEND}" + +S=${WORKDIR}/${MY_P} + +src_compile() { + econf --disable-gcj || die "configure failed!" + emake gnujaxp.jar $(use_doc) || die "compile failed!" +} + +src_install() { + java-pkg_dojar gnujaxp.jar + dodoc README + use doc && java-pkg_dohtml -r apidoc/* + use source && java-pkg_dosrc source/* +} |