diff options
author | Ralph Sennhauser <sera@gentoo.org> | 2011-12-19 12:22:54 +0000 |
---|---|---|
committer | Ralph Sennhauser <sera@gentoo.org> | 2011-12-19 12:22:54 +0000 |
commit | a7e54307e88c1db9fb9ae8dccb1a160e5e072b8f (patch) | |
tree | 21e00fea07fed3ebca5583e6cbe364318844f60e /dev-java/commons-jexl/commons-jexl-1.1.ebuild | |
parent | Fix homepage wrt #202445. (diff) | |
download | historical-a7e54307e88c1db9fb9ae8dccb1a160e5e072b8f.tar.gz historical-a7e54307e88c1db9fb9ae8dccb1a160e5e072b8f.tar.bz2 historical-a7e54307e88c1db9fb9ae8dccb1a160e5e072b8f.zip |
Fix homepage wrt #202445. Fix unquoted variables to please repoman.
Package-Manager: portage-2.1.10.41/cvs/Linux x86_64
Diffstat (limited to 'dev-java/commons-jexl/commons-jexl-1.1.ebuild')
-rw-r--r-- | dev-java/commons-jexl/commons-jexl-1.1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-java/commons-jexl/commons-jexl-1.1.ebuild b/dev-java/commons-jexl/commons-jexl-1.1.ebuild index 58903ffb35df..19f085ecfb8f 100644 --- a/dev-java/commons-jexl/commons-jexl-1.1.ebuild +++ b/dev-java/commons-jexl/commons-jexl-1.1.ebuild @@ -1,13 +1,13 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-jexl/commons-jexl-1.1.ebuild,v 1.5 2007/06/10 10:23:53 philantrop Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-jexl/commons-jexl-1.1.ebuild,v 1.6 2011/12/19 12:22:54 sera Exp $ JAVA_PKG_IUSE="doc source test" inherit eutils java-pkg-2 java-ant-2 DESCRIPTION="Expression language engine, can be embedded in applications and frameworks." -HOMEPAGE="http://jakarta.apache.org/commons/jexl" +HOMEPAGE="http://commons.apache.org/jexl/" SRC_URI="mirror://apache/jakarta/commons/jexl/source/${P}-src.tar.gz" CDEPEND="dev-java/commons-logging @@ -28,7 +28,7 @@ S="${WORKDIR}/${P}-src" src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # https://issues.apache.org/jira/browse/JEXL-31 epatch "${FILESDIR}/1.1-test-target.patch" @@ -48,5 +48,5 @@ src_install() { dodoc RELEASE-NOTES.txt || die use doc && java-pkg_dojavadoc dist/docs/api - use source && java-pkg_dosrc ${S}/src/java/* + use source && java-pkg_dosrc "${S}"/src/java/* } |