Gentoo Archives: gentoo-commits

From: "Ralph Sennhauser (sera)" <sera@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/xsdlib: ChangeLog xsdlib-20090415.ebuild
Date: Tue, 05 Jun 2012 12:42:52
Message-Id: 20120605124243.0A4B42004B@flycatcher.gentoo.org
1 sera 12/06/05 12:42:43
2
3 Modified: ChangeLog
4 Added: xsdlib-20090415.ebuild
5 Log:
6 Version bump. Based on work of James Le Cuirot <chewi@××××××××××××××.uk> in java-overlay.
7
8 (Portage version: 2.1.10.62/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.34 dev-java/xsdlib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xsdlib/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xsdlib/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xsdlib/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-java/xsdlib/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 15 Apr 2012 18:38:50 -0000 1.33
24 +++ ChangeLog 5 Jun 2012 12:42:42 -0000 1.34
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-java/xsdlib
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-java/xsdlib/ChangeLog,v 1.33 2012/04/15 18:38:50 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-java/xsdlib/ChangeLog,v 1.34 2012/06/05 12:42:42 sera Exp $
30 +
31 +*xsdlib-20090415 (05 Jun 2012)
32 +
33 + 05 Jun 2012; Ralph Sennhauser <sera@g.o> +xsdlib-20090415.ebuild:
34 + Version bump. Based on work of James Le Cuirot <chewi@××××××××××××××.uk> in
35 + java-overlay.
36
37 15 Apr 2012; Mike Frysinger <vapier@g.o> xsdlib-20050627-r2.ebuild:
38 Add back ia64 love #349020 by Dennis Schridde.
39
40
41
42 1.1 dev-java/xsdlib/xsdlib-20090415.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xsdlib/xsdlib-20090415.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/xsdlib/xsdlib-20090415.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xsdlib-20090415.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-java/xsdlib/xsdlib-20090415.ebuild,v 1.1 2012/06/05 12:42:42 sera Exp $
52
53 EAPI="4"
54
55 JAVA_PKG_IUSE="doc source"
56
57 inherit java-pkg-2 java-pkg-simple
58
59 DESCRIPTION="Sun XML Datatypes Library"
60 HOMEPAGE="http://msv.java.net/"
61 SRC_URI="http://java.net/downloads/msv/releases/${PN}.${PV}.zip"
62
63 LICENSE="BSD-2 Apache-1.1"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
66 IUSE=""
67
68 COMMON_DEP="
69 dev-java/xerces:2
70 dev-java/relaxng-datatype:0"
71 RDEPEND="${COMMON_DEP}
72 >=virtual/jre-1.4"
73 DEPEND="${COMMON_DEP}
74 >=virtual/jdk-1.4
75 app-arch/unzip"
76
77 S="${WORKDIR}/${P}"
78
79 java_prepare() {
80 find -name '*.jar' -exec rm -v {} + || die
81 }
82
83 JAVA_SRC_DIR="src src-apache"
84 JAVA_GENTOO_CLASSPATH="relaxng-datatype,xerces-2"
85
86 src_compile() {
87 java-pkg-simple_src_compile
88
89 local dir; for dir in ${JAVA_SRC_DIR}; do
90 pushd ${dir} > /dev/null || die
91 jar -uf "${S}"/${PN}.jar $(find -name '*.properties') || die
92 popd > /dev/null
93 done
94 }
95
96 src_install() {
97 java-pkg-simple_src_install
98
99 dodoc README.txt
100 dohtml HowToUse.html
101 }