diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2007-11-15 13:23:54 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2007-11-15 13:23:54 +0000 |
commit | a5ae717466d720a1c1a52d3956027bab601fdb4e (patch) | |
tree | 0463aa2eb31894b14d46a2369357e98096b2affc /dev-java | |
parent | version bump (diff) | |
download | gentoo-2-a5ae717466d720a1c1a52d3956027bab601fdb4e.tar.gz gentoo-2-a5ae717466d720a1c1a52d3956027bab601fdb4e.tar.bz2 gentoo-2-a5ae717466d720a1c1a52d3956027bab601fdb4e.zip |
Move the too long DESCRIPTION to metadata.xml and quote variables.
(Portage version: 2.1.3.19)
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/qdox/ChangeLog | 6 | ||||
-rw-r--r-- | dev-java/qdox/metadata.xml | 6 | ||||
-rw-r--r-- | dev-java/qdox/qdox-1.6.3.ebuild | 8 |
3 files changed, 14 insertions, 6 deletions
diff --git a/dev-java/qdox/ChangeLog b/dev-java/qdox/ChangeLog index e1ae3409709b..34c90e57dbbe 100644 --- a/dev-java/qdox/ChangeLog +++ b/dev-java/qdox/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-java/qdox # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/qdox/ChangeLog,v 1.17 2007/11/15 13:21:37 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/qdox/ChangeLog,v 1.18 2007/11/15 13:23:54 betelgeuse Exp $ + + 15 Nov 2007; Petteri Räty <betelgeuse@gentoo.org> metadata.xml, + qdox-1.6.3.ebuild: + Move the too long DESCRIPTION to metadata.xml and quote variables. 15 Nov 2007; Petteri Räty <betelgeuse@gentoo.org> -qdox-20050104.ebuild, -qdox-20050104-r1.ebuild: diff --git a/dev-java/qdox/metadata.xml b/dev-java/qdox/metadata.xml index 838c00a4a448..5a63a2817636 100644 --- a/dev-java/qdox/metadata.xml +++ b/dev-java/qdox/metadata.xml @@ -1,5 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<herd>java</herd> + <herd>java</herd> + <longdescription> + High speed, small footprint parser for extracting class/interface/method + definitions from source files complete with JavaDoc @tags. + </longdescription> </pkgmetadata> diff --git a/dev-java/qdox/qdox-1.6.3.ebuild b/dev-java/qdox/qdox-1.6.3.ebuild index 5c2755ad7837..3ebb1343c7f9 100644 --- a/dev-java/qdox/qdox-1.6.3.ebuild +++ b/dev-java/qdox/qdox-1.6.3.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/qdox/qdox-1.6.3.ebuild,v 1.6 2007/11/02 03:22:07 wltjr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/qdox/qdox-1.6.3.ebuild,v 1.7 2007/11/15 13:23:54 betelgeuse Exp $ JAVA_PKG_IUSE="doc source" inherit java-pkg-2 java-ant-2 -DESCRIPTION="High speed, small footprint parser for extracting class/interface/method definitions from source files complete with JavaDoc @tags." +DESCRIPTION="Parser for extracting class/interface/method definitions" HOMEPAGE="http://qdox.codehaus.org/" SRC_URI="http://repository.codehaus.org/com/thoughtworks/${PN}/${PN}/${PV}/${P}-sources.jar" LICENSE="Apache-2.0" @@ -28,11 +28,11 @@ src_compile() { $(find -name "*.java") || die "Cannot compile sources" mkdir dist cd build/classes - jar -cvf ${S}/dist/${PN}.jar com || die "Cannot create JAR" + jar -cvf "${S}/dist/${PN}.jar" com || die "Cannot create JAR" # generate javadoc if use doc ; then - cd ${S} + cd "${S}" mkdir javadoc javadoc -d javadoc -sourcepath . -subpackages com \ -classpath $(java-pkg_getjars ant-core,junit) |