Gentoo Archives: gentoo-commits

From: "William Thomson (wltjr)" <wltjr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/edtftpj: ChangeLog edtftpj-2.0.1.ebuild
Date: Tue, 25 Mar 2008 20:05:40
Message-Id: E1JeFNB-0005L3-1O@stork.gentoo.org
1 wltjr 08/03/25 20:03:53
2
3 Modified: ChangeLog
4 Added: edtftpj-2.0.1.ebuild
5 Log:
6 Bumped to latest release. Seems to be some API changes, but no deps no slot. Till there is a need/reason to slot.
7 (Portage version: 2.1.4.1)
8
9 Revision Changes Path
10 1.39 dev-java/edtftpj/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/edtftpj/ChangeLog?rev=1.39&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/edtftpj/ChangeLog?rev=1.39&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/edtftpj/ChangeLog?r1=1.38&r2=1.39
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-java/edtftpj/ChangeLog,v
19 retrieving revision 1.38
20 retrieving revision 1.39
21 diff -u -r1.38 -r1.39
22 --- ChangeLog 8 Mar 2008 21:29:32 -0000 1.38
23 +++ ChangeLog 25 Mar 2008 20:03:52 -0000 1.39
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-java/edtftpj
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-java/edtftpj/ChangeLog,v 1.38 2008/03/08 21:29:32 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-java/edtftpj/ChangeLog,v 1.39 2008/03/25 20:03:52 wltjr Exp $
29 +
30 +*edtftpj-2.0.1 (25 Mar 2008)
31 +
32 + 25 Mar 2008; William L. Thomson Jr. <wltjr@g.o>
33 + +edtftpj-2.0.1.ebuild:
34 + Bumped to latest release. Seems to be some API changes, but no deps no slot.
35 + Till there is a need/reason to slot.
36
37 08 Mar 2008; Markus Meier <maekke@g.o> edtftpj-1.5.6.ebuild:
38 x86 stable, bug #212671
39
40
41
42 1.1 dev-java/edtftpj/edtftpj-2.0.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/edtftpj/edtftpj-2.0.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/edtftpj/edtftpj-2.0.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: edtftpj-2.0.1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-java/edtftpj/edtftpj-2.0.1.ebuild,v 1.1 2008/03/25 20:03:52 wltjr Exp $
52
53 JAVA_PKG_IUSE="doc examples source"
54
55 inherit java-pkg-2 java-ant-2
56
57 DESCRIPTION="FTP client library written in Java"
58 SRC_URI="http://www.enterprisedt.com/products/edtftpj/download/${P}.zip"
59 HOMEPAGE="http://www.enterprisedt.com"
60
61 LICENSE="LGPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64
65 RDEPEND=">=virtual/jre-1.4
66 =dev-java/junit-3.8*"
67
68 DEPEND=">=virtual/jdk-1.4
69 app-arch/unzip
70 ${RDEPEND}"
71
72 src_unpack() {
73 unpack ${A}
74 find "${S}" '(' -name '*.class' -o -name '*.jar' ')' -print -delete
75 rm "${S}/doc/LICENSE.TXT" || die "Failed to remove LICENSE.TXT"
76 }
77
78 src_compile() {
79 cd "${S}"/src
80 eant jar -Dftp.classpath=$(java-pkg_getjars junit) $(use_doc javadocs)
81 }
82
83 src_install() {
84 java-pkg_dojar lib/*.jar
85
86 use doc && java-pkg_dojavadoc build/doc/api
87 use source && java-pkg_dosrc src/com
88
89 if use examples; then
90 insinto /usr/share/doc/${PF}/examples
91 doins demo/*.{java,txt} || die "Failed to install examples."
92 fi
93 }
94
95
96
97 --
98 gentoo-commits@l.g.o mailing list