Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-java/commons-el
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-el/ChangeLog,v 1.26 2008/05/08 22:10:50 ken69267 Exp $
08 May 2008; Kenneth Prugh
amd64 stable, bug #219644
03 May 2008; Christian Faulhammer
commons-el-1.0-r2.ebuild:
stable x86, bug 219644
03 May 2008; Christian Faulhammer
commons-el-1.0-r2.ebuild:
filtered jikes and unquote a variable
30 Apr 2008; Brent Baude
stable ppc64, bug 219644
*commons-el-1.0-r2 (14 Jan 2008)
14 Jan 2008; Jean-Noël Rivasseau
+files/commons-el-1.0-manifest, +commons-el-1.0-r2.ebuild:
Uses java-osgi to create an OSGi compliant jar.
25 Apr 2007; Petteri Räty
commons-el-1.0-r1.ebuild:
Remove java-pkg_getjars junit because junit is not needed.
25 Apr 2007; Petteri Räty
Remove generation 1 ebuild.
03 Feb 2007; Steve Dibb
amd64 stable, bug 162928
21 Jan 2007; Christian Faulhammer
commons-el-1.0-r1.ebuild:
stable x86, bug #162928
20 Jan 2007; Markus Rothe
Stable on ppc64; bug #162928
09 Dec 2006; Diego Pettenò
commons-el-1.0-r1.ebuild:
Add ~x86-fbsd keyword.
05 Oct 2006; Gustavo Zacarias
commons-el-1.0-r1.ebuild:
Dropping sparc keywords, see #96229
22 Jul 2006; Krzysiek Pawlik
commons-el-1.0-r1.ebuild:
ant_src_unpack -> src_unpack
*commons-el-1.0-r1 (04 Jul 2006)
04 Jul 2006; Joshua Nichols
Revision bump to support new Java system.
05 Nov 2005; Petteri Räty
Fixed homepage reported in bug 111533.
29 May 2005; Markus Rothe
Stable on ppc64
26 Apr 2005; Jan Brinkmann
dosrc correction, fixes #90480
15 Apr 2005; Jan Brinkmann
added ~ppc to KEYWORDS
09 Apr 2005; Markus Rothe
Added ~ppc64 to KEYWORDS
14 Feb 2005; Jan Brinkmann
stable on amd64.
17 Oct 2004; Dylan Carlson
keywords ~amd64; closes #67333.
22 Mar 2004; Chris Aniszczyk
Stable on x86. Fixes according to #45398
*commons-el-1.0 (28 Feb 2004)
28 Feb 2004; Chris Aniszczyk
Initial Import.
Thanks to Greg Bowyer
AUX commons-el-1.0-manifest 557 RMD160 2a92c42ee59526b3c45f8bd22d4ae9e1c13db4ac SHA1 81d3698dc37c45807d2a78b6571a5a70b85427b4 SHA256 b2ce487366d61c8ce0ff49c59c20aac7efb358ecb2174d775dc306b4987824f1
DIST commons-el-1.0-src.tar.gz 64009 RMD160 1f178aeb6aed1cd807573c3add6195a719a533e2 SHA1 bb39426efbd03a2b27105fa42faf90858cfc3d50 SHA256 3c9bdded6073563aaaddc9ad7c7387b242dc03cc385381503026b665a366c2c6
EBUILD commons-el-1.0-r1.ebuild 1416 RMD160 67cf808bc8d1cc1ab4c0a3f77230ea198bba1904 SHA1 b76d5ffd06008abe5eb468293fda0daf7a41264c SHA256 f31f75375a9ba33e9f20ce8a333dbfd97fc0c010a2294e987d21a18716b5a21e
EBUILD commons-el-1.0-r2.ebuild 1503 RMD160 c432b1b3440341a2d8b26127e55e9e2bae344d30 SHA1 fa19d2d656d0af15bd0e655435b8389e721d0c90 SHA256 236c355fbe6189fea20672fe39d14a88132cdcfce9745e672bbb6550c33cc537
MISC ChangeLog 2974 RMD160 1f48e3a6df3466975f1ce3b4f90032865b81d384 SHA1 b2c321f8c45cb1d57c3c32ba9e7869df6a531328 SHA256 ab1030022a2fc1da4ebbdf12af0fa13d3a7665c2abd10a349d27b75dd57c9fc2
MISC metadata.xml 157 RMD160 ab0b3741457dee7531f59c4da0f0e9e8399af084 SHA1 c37a6b9922aef61b5b3387655bccb6e3b16e0e26 SHA256 295d02c5805b0257938eb80314b371daac94b8d6ea85629a902de7a824adc0c9
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-el/commons-el-1.0-r1.ebuild,v 1.9 2008/01/14 10:46:39 elvanor Exp $
JAVA_PKG_IUSE="source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="EL is the JSP 2.0 Expression Language Interpreter from Apache."
HOMEPAGE="http://jakarta.apache.org/commons/el/"
SRC_URI="mirror://apache/jakarta/commons/el/source/${P}-src.tar.gz"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="amd64 ~ppc ppc64 x86 ~x86-fbsd"
COMMON_DEP="~dev-java/servletapi-2.4"
RDEPEND=">=virtual/jre-1.4
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.4
${COMMON_DEP}
source? ( app-arch/zip )"
S=${WORKDIR}/${P}-src
src_unpack() {
unpack ${A}
cd "${S}"
mv build.properties build.properties.old
echo "servlet-api.jar=$(java-pkg_getjar servletapi-2.4 servlet-api.jar)" >> build.properties
echo "jsp-api.jar=$(java-pkg_getjar servletapi-2.4 jsp-api.jar)" >> build.properties
echo "servletapi.build.notrequired = true" >> build.properties
echo "jspapi.build.notrequired = true" >> build.properties
# Build.xml is broken, fix it
sed -i "s:../LICENSE:./LICENSE.txt:" build.xml || die "sed failed"
}
src_install() {
java-pkg_dojar dist/${PN}.jar || die "Unable to install"
dodoc LICENSE.txt RELEASE-NOTES.txt || die
dohtml STATUS.html PROPOSAL.html || die
use source && java-pkg_dosrc src/java/org
}
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-el/commons-el-1.0-r2.ebuild,v 1.5 2008/05/08 22:10:50 ken69267 Exp $
JAVA_PKG_IUSE="source"
inherit java-pkg-2 java-ant-2 java-osgi
DESCRIPTION="EL is the JSP 2.0 Expression Language Interpreter from Apache."
HOMEPAGE="http://jakarta.apache.org/commons/el/"
SRC_URI="mirror://apache/jakarta/commons/el/source/${P}-src.tar.gz"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="amd64 ~ppc ppc64 x86 ~x86-fbsd"
COMMON_DEP="~dev-java/servletapi-2.4"
RDEPEND=">=virtual/jre-1.4
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.4
${COMMON_DEP}"
JAVA_PKG_FILTER_COMPILER="jikes"
S=${WORKDIR}/${P}-src
src_unpack() {
unpack ${A}
cd "${S}"
mv "build.properties" "build.properties.old"
echo "servlet-api.jar=$(java-pkg_getjar servletapi-2.4 servlet-api.jar)" >> build.properties
echo "jsp-api.jar=$(java-pkg_getjar servletapi-2.4 jsp-api.jar)" >> build.properties
echo "servletapi.build.notrequired = true" >> build.properties
echo "jspapi.build.notrequired = true" >> build.properties
# Build.xml is broken, fix it
sed -i "s:../LICENSE:./LICENSE.txt:" build.xml || die "sed failed"
}
src_install() {
java-osgi_dojar-fromfile "dist/${PN}.jar" "${FILESDIR}/${P}-manifest" \
"Apache Commons EL" || die "Unable to install"
dodoc LICENSE.txt RELEASE-NOTES.txt || die
dohtml STATUS.html PROPOSAL.html || die
use source && java-pkg_dosrc src/java/org
}