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/simplyhtml: ChangeLog simplyhtml-0.13.1.ebuild
Date: Sun, 31 May 2009 18:49:14
Message-Id: E1MAq5o-0005uc-C1@stork.gentoo.org
1 caster 09/05/31 18:49:12
2
3 Modified: ChangeLog
4 Added: simplyhtml-0.13.1.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.14 dev-java/simplyhtml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/simplyhtml/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/simplyhtml/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/simplyhtml/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-java/simplyhtml/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 3 May 2009 13:06:17 -0000 1.13
23 +++ ChangeLog 31 May 2009 18:49:12 -0000 1.14
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-java/simplyhtml
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-java/simplyhtml/ChangeLog,v 1.13 2009/05/03 13:06:17 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-java/simplyhtml/ChangeLog,v 1.14 2009/05/31 18:49:12 caster Exp $
29 +
30 +*simplyhtml-0.13.1 (31 May 2009)
31 +
32 + 31 May 2009; Vlastimil Babka <caster@g.o>
33 + +simplyhtml-0.13.1.ebuild:
34 + Version bump.
35
36 03 May 2009; Markus Meier <maekke@g.o> simplyhtml-0.12.5.ebuild:
37 amd64/x86 stable, bug #267737
38
39
40
41 1.1 dev-java/simplyhtml/simplyhtml-0.13.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/simplyhtml/simplyhtml-0.13.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/simplyhtml/simplyhtml-0.13.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: simplyhtml-0.13.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-java/simplyhtml/simplyhtml-0.13.1.ebuild,v 1.1 2009/05/31 18:49:12 caster Exp $
51
52 EAPI=2
53 JAVA_PKG_IUSE="doc source"
54 inherit java-pkg-2 java-ant-2 versionator
55
56 MY_PN="SimplyHTML"
57 MY_PV="$(replace_all_version_separators _)"
58 #MY_P="${MY_PN}_${PV}"
59
60 DESCRIPTION="Text processing application based on HTML and CSS files."
61 HOMEPAGE="http://${PN}.sourceforge.net"
62 SRC_URI="mirror://sourceforge/${PN}/${MY_PN}_src_${MY_PV}.tar.gz"
63 #SRC_URI="mirror://gentoo/${P}.tar.bz2"
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
67 IUSE=""
68
69 COMMON_DEP="dev-java/javahelp
70 dev-java/gnu-regexp"
71 DEPEND=">=virtual/jdk-1.4
72 ${COMMON_DEP}"
73 RDEPEND=">=virtual/jre-1.4
74 ${COMMON_DEP}"
75
76 S="${WORKDIR}/${PN}-${MY_PV}/src"
77
78 JAVA_PKG_FILTER_COMPILER="jikes"
79
80 java_prepare() {
81 # it wants to copy lib jars
82 sed -i '/copy file/d' build.xml || die
83 }
84
85 src_compile() {
86 local cp="$(java-pkg_getjars javahelp,gnu-regexp-1)"
87 eant -Dclasspath="${cp}" jar $(use_doc)
88 }
89
90 src_install() {
91 cd ..
92 java-pkg_dojar dist/lib/${MY_PN}*.jar
93
94 dodoc readme.txt || die
95
96 use doc && java-pkg_dojavadoc dist/api
97 use source && java-pkg_dosrc src/com src/de
98 }