Gentoo Archives: gentoo-commits

From: "Petteri Raty (betelgeuse)" <betelgeuse@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/henplus: ChangeLog henplus-0.9.8.ebuild
Date: Fri, 01 May 2009 20:51:27
Message-Id: E1LzzhV-0007DW-Ox@stork.gentoo.org
1 betelgeuse 09/05/01 20:51:17
2
3 Modified: ChangeLog
4 Added: henplus-0.9.8.ebuild
5 Log:
6 Version bump. Fixes bug #268125.
7 (Portage version: 2.2_rc28/cvs/Linux i686)
8
9 Revision Changes Path
10 1.22 dev-db/henplus/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/henplus/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/henplus/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/henplus/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/henplus/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 17 Nov 2008 20:54:11 -0000 1.21
23 +++ ChangeLog 1 May 2009 20:51:17 -0000 1.22
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-db/henplus
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/henplus/ChangeLog,v 1.21 2008/11/17 20:54:11 flameeyes Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/henplus/ChangeLog,v 1.22 2009/05/01 20:51:17 betelgeuse Exp $
30 +
31 +*henplus-0.9.8 (01 May 2009)
32 +
33 + 01 May 2009; Petteri Räty <betelgeuse@g.o>
34 + +files/0.9.8-build.xml.patch, +henplus-0.9.8.ebuild:
35 + Version bump. Fixes bug #268125.
36
37 17 Nov 2008; Diego E. Pettenò <flameeyes@g.o> files/henplus.patch:
38 Fix patch with absolute paths.
39
40
41
42 1.1 dev-db/henplus/henplus-0.9.8.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/henplus/henplus-0.9.8.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/henplus/henplus-0.9.8.ebuild?rev=1.1&content-type=text/plain
46
47 Index: henplus-0.9.8.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-db/henplus/henplus-0.9.8.ebuild,v 1.1 2009/05/01 20:51:17 betelgeuse Exp $
52
53 EAPI="2"
54 JAVA_PKG_IUSE="doc source"
55
56 inherit java-pkg-2 eutils java-ant-2
57
58 DESCRIPTION="Java-based multisession SQL shell for databases with JDBC support."
59 HOMEPAGE="http://henplus.sf.net"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 COMMON_DEPEND="dev-java/commons-cli:1
67 dev-java/libreadline-java:0"
68 RDEPEND=">=virtual/jre-1.4
69 ${COMMON_DEPEND}"
70 DEPEND=">=virtual/jdk-1.4
71 ${COMMON_DEPEND}"
72
73 java_prepare() {
74 epatch "${FILESDIR}/0.9.8-build.xml.patch"
75 rm -v lib/*.jar lib/*/*.jar || die
76 }
77
78 JAVA_ANT_REWRITE_CLASSPATH="true"
79 EANT_GENTOO_CLASSPATH="commons-cli-1,libreadline-java"
80
81 src_install () {
82 java-pkg_dojar "build/${PN}.jar"
83
84 java-pkg_dolauncher ${PN} -pre "${FILESDIR}/${PN}.pre" \
85 --main henplus.HenPlus
86
87 dodoc README || die
88 dohtml doc/HenPlus.html || die
89 use doc && java-pkg_dojavadoc javadoc/api
90
91 use source && java-pkg_dosrc "src/${PN}"
92 }