Gentoo Archives: gentoo-commits

From: "Vlastimil Babka (caster)" <caster@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/xsd2jibx: xsd2jibx-0.2a_beta-r2.ebuild ChangeLog xsd2jibx-0.2a_beta.ebuild
Date: Mon, 01 Jun 2009 21:56:23
Message-Id: E1MBFUU-0000ij-5C@stork.gentoo.org
1 caster 09/06/01 21:56:22
2
3 Modified: ChangeLog
4 Added: xsd2jibx-0.2a_beta-r2.ebuild
5 Removed: xsd2jibx-0.2a_beta.ebuild
6 Log:
7 Revbump so that the commons-lang slot change works properly, not causing bugs such as #272040.
8 (Portage version: 2.2_rc33/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 dev-java/xsd2jibx/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/xsd2jibx/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/xsd2jibx/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/xsd2jibx/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-java/xsd2jibx/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 23 May 2009 00:01:17 -0000 1.5
24 +++ ChangeLog 1 Jun 2009 21:56:22 -0000 1.6
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-java/xsd2jibx
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-java/xsd2jibx/ChangeLog,v 1.5 2009/05/23 00:01:17 ali_bush Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-java/xsd2jibx/ChangeLog,v 1.6 2009/06/01 21:56:22 caster Exp $
30 +
31 +*xsd2jibx-0.2a_beta-r2 (01 Jun 2009)
32 +
33 + 01 Jun 2009; Vlastimil Babka <caster@g.o>
34 + -xsd2jibx-0.2a_beta.ebuild, +xsd2jibx-0.2a_beta-r2.ebuild:
35 + Revbump so that the commons-lang slot change works properly, not causing
36 + bugs such as #272040.
37
38 23 May 2009; Alistair Bush <ali_bush@g.o>
39 xsd2jibx-0.2a_beta-r1.ebuild:
40
41
42
43 1.1 dev-java/xsd2jibx/xsd2jibx-0.2a_beta-r2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/xsd2jibx/xsd2jibx-0.2a_beta-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/xsd2jibx/xsd2jibx-0.2a_beta-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: xsd2jibx-0.2a_beta-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-java/xsd2jibx/xsd2jibx-0.2a_beta-r2.ebuild,v 1.1 2009/06/01 21:56:22 caster Exp $
53
54 EAPI="2"
55 JAVA_PKG_IUSE="doc source"
56 inherit java-pkg-2 java-ant-2
57
58 MY_PV="beta2a"
59
60 DESCRIPTION="JiBX binding and code from schema generator"
61 HOMEPAGE="http://jibx.sourceforge.net/xsd2jibx/"
62 SRC_URI="mirror://sourceforge/jibx/${PN}-${MY_PV}.zip"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc ~x86"
67 IUSE=""
68
69 COMMON_DEP="dev-java/commons-logging:0
70 dev-java/xpp3:0
71 dev-java/jaxme:0
72 dev-java/jibx:0
73 dev-java/commons-lang:2.1"
74 DEPEND=">=virtual/jdk-1.4
75 app-arch/unzip
76 ${COMMON_DEP}"
77 RDEPEND=">=virtual/jre-1.4
78 ${COMMON_DEP}"
79
80 S="${WORKDIR}/${PN}"
81
82 java_prepare() {
83 cp "${FILESDIR}/build.xml" .
84 # patch from freemind authors, freemind won't build without it
85 # they sent upstream (that's how I found it) which said he's preparing
86 # complete rewrite. It only adds non-abstract functionality.
87 epatch "${FILESDIR}/${P}-freemind.patch"
88
89 cd "${S}/lib"
90 rm -v *.jar || die
91 java-pkg_jar-from commons-logging,xpp3,jaxme,jibx,commons-lang-2.1
92 }
93
94 EANT_ANT_TASKS="jibx"
95 EANT_EXTRA_ARGS="-Djibxhome=/usr/share/jibx/"
96
97 src_install() {
98 java-pkg_dojar lib/${PN}.jar
99
100 dohtml -R docs/*
101 use doc && java-pkg_dojavadoc api
102 use source && java-pkg_dosrc src/main/org
103 }