Gentoo Archives: gentoo-commits

From: "Krzysztof Pawlik (nelchael)" <nelchael@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/resin-servlet-api: resin-servlet-api-4.0.25.ebuild ChangeLog
Date: Sat, 11 Feb 2012 18:45:56
Message-Id: 20120211184540.222282004B@flycatcher.gentoo.org
1 nelchael 12/02/11 18:45:40
2
3 Modified: ChangeLog
4 Added: resin-servlet-api-4.0.25.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.10.45/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.54 dev-java/resin-servlet-api/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/resin-servlet-api/ChangeLog?rev=1.54&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/resin-servlet-api/ChangeLog?rev=1.54&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/resin-servlet-api/ChangeLog?r1=1.53&r2=1.54
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-java/resin-servlet-api/ChangeLog,v
20 retrieving revision 1.53
21 retrieving revision 1.54
22 diff -u -r1.53 -r1.54
23 --- ChangeLog 6 Sep 2011 16:38:38 -0000 1.53
24 +++ ChangeLog 11 Feb 2012 18:45:40 -0000 1.54
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-java/resin-servlet-api
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-java/resin-servlet-api/ChangeLog,v 1.53 2011/09/06 16:38:38 nelchael Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-java/resin-servlet-api/ChangeLog,v 1.54 2012/02/11 18:45:40 nelchael Exp $
31 +
32 +*resin-servlet-api-4.0.25 (11 Feb 2012)
33 +
34 + 11 Feb 2012; Krzysztof Pawlik <nelchael@g.o>
35 + +resin-servlet-api-4.0.25.ebuild:
36 + Version bump.
37
38 *resin-servlet-api-4.0.22 (06 Sep 2011)
39
40
41
42
43 1.1 dev-java/resin-servlet-api/resin-servlet-api-4.0.25.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/resin-servlet-api/resin-servlet-api-4.0.25.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/resin-servlet-api/resin-servlet-api-4.0.25.ebuild?rev=1.1&content-type=text/plain
47
48 Index: resin-servlet-api-4.0.25.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-java/resin-servlet-api/resin-servlet-api-4.0.25.ebuild,v 1.1 2012/02/11 18:45:40 nelchael Exp $
53
54 EAPI="2"
55
56 JAVA_PKG_IUSE="source"
57
58 inherit java-pkg-2 java-ant-2
59
60 DESCRIPTION="Resin Servlet API 3.0/JSP API 2.1 implementation"
61 HOMEPAGE="http://www.caucho.com/"
62 SRC_URI="http://www.caucho.com/download/resin-${PV}-src.zip"
63
64 LICENSE="GPL-2"
65 SLOT="3.0"
66 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
67
68 IUSE=""
69
70 COMMON_DEP=""
71
72 RDEPEND=">=virtual/jre-1.6
73 ${COMMON_DEP}"
74 DEPEND=">=virtual/jdk-1.6
75 app-arch/unzip
76 ${COMMON_DEP}"
77
78 S="${WORKDIR}/resin-${PV}"
79
80 src_unpack() {
81 unpack ${A}
82
83 cd "${S}"
84 rm -f modules/ext/*.jar project-jars/*.jar webapp-jars/*.jar
85 java-ant_bsfix_files build-common.xml || die
86 }
87
88 EANT_BUILD_TARGET="servlet16"
89 EANT_DOC_TARGET=""
90
91 src_install() {
92 java-pkg_newjar "modules/servlet16/dist/servlet-16.jar"
93 use source && java-pkg_dosrc "${S}"/modules/servlet16/src/*
94
95 dosym "${PN}.jar" "/usr/share/${PN}-${SLOT}/lib/servlet-api.jar"
96 java-pkg_regjar "${D}/usr/share/${PN}-${SLOT}/lib/servlet-api.jar"
97 dosym "${PN}.jar" "/usr/share/${PN}-${SLOT}/lib/jsp-api.jar"
98 java-pkg_regjar "${D}/usr/share/${PN}-${SLOT}/lib/jsp-api.jar"
99 }