diff options
author | Joshua Nichols <nichoj@gentoo.org> | 2005-12-25 02:44:16 +0000 |
---|---|---|
committer | Joshua Nichols <nichoj@gentoo.org> | 2005-12-25 02:44:16 +0000 |
commit | cd06fdc86c35fb520cc79307247540ba970a782d (patch) | |
tree | 3c89112f0f3780ad8513f7de728112db2a38848d /dev-util | |
parent | version bump (bug #116657) (diff) | |
download | historical-cd06fdc86c35fb520cc79307247540ba970a782d.tar.gz historical-cd06fdc86c35fb520cc79307247540ba970a782d.tar.bz2 historical-cd06fdc86c35fb520cc79307247540ba970a782d.zip |
Changed einfo calls to echo.
Package-Manager: portage-2.1_pre1
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/weka/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/weka/Manifest | 14 | ||||
-rw-r--r-- | dev-util/weka/weka-3.4.6.ebuild | 10 |
3 files changed, 11 insertions, 18 deletions
diff --git a/dev-util/weka/ChangeLog b/dev-util/weka/ChangeLog index 04355e56bd67..35a2433c5535 100644 --- a/dev-util/weka/ChangeLog +++ b/dev-util/weka/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/weka # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/weka/ChangeLog,v 1.12 2005/12/06 02:18:50 nichoj Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/weka/ChangeLog,v 1.13 2005/12/25 02:44:16 nichoj Exp $ + + 25 Dec 2005; Joshua Nichols <nichoj@gentoo.org> weka-3.4.6.ebuild: + Changed einfo calls to echo. *weka-3.4.6 (06 Dec 2005) diff --git a/dev-util/weka/Manifest b/dev-util/weka/Manifest index c101d801dfc1..4f85cd47f2a1 100644 --- a/dev-util/weka/Manifest +++ b/dev-util/weka/Manifest @@ -1,17 +1,7 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 ca73e153828dd8240b6f9bad872e9ab5 ChangeLog 1684 +MD5 54781bd9d16a302311519b414bf2725b ChangeLog 1785 MD5 e6cdfc65e52842dc2d8910061cdbb9e7 files/digest-weka-3.4.3_p20041113 143 MD5 9727935f12238d4296b8f3fbecae24c3 files/digest-weka-3.4.6 60 MD5 60179e67fd9dadf4d3fc08c2b89317a6 files/weka-build_xml.patch 2035 MD5 a6ec7d7724fbd068ffb39b5be56134ed metadata.xml 157 MD5 f3c42bc97f73602a7acce5fe05ab5d5e weka-3.4.3_p20041113.ebuild 1458 -MD5 f60df2cd2bb569dcdcf657462d8ff6c1 weka-3.4.6.ebuild 1911 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.2 (GNU/Linux) - -iD8DBQFDlPWvndWRXhKOboURAjkJAJ9VVF/OGO0QbvZl+ieGFnuuWXNLTACg0Vid -ejJGypWi/1y7Xm1ccydwjK0= -=D5NS ------END PGP SIGNATURE----- +MD5 65f792e0421b0fd6c5c9664e17692d3e weka-3.4.6.ebuild 1907 diff --git a/dev-util/weka/weka-3.4.6.ebuild b/dev-util/weka/weka-3.4.6.ebuild index aee513ec71d0..fa07dd6afc9f 100644 --- a/dev-util/weka/weka-3.4.6.ebuild +++ b/dev-util/weka/weka-3.4.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/weka/weka-3.4.6.ebuild,v 1.1 2005/12/06 02:11:34 nichoj Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/weka/weka-3.4.6.ebuild,v 1.2 2005/12/25 02:44:16 nichoj Exp $ inherit eutils java-pkg versionator @@ -31,13 +31,13 @@ src_unpack() { src_compile() { mkdir build dist - einfo "Compiling sources" + echo "Compiling sources" # We need to set the maximum heap size to 128m to avoid # OutOfMemoryErrors find src/ -name "*.java" | xargs javac -J-Xmx128m -d build \ -sourcepath src/ -nowarn || die "Failed to compile ${i}" - einfo "Copying resources" + echo "Copying resources" cd src find . -type f -not -name '*.java' -and -not -name "*.MF" -print | \ while read file; do @@ -46,12 +46,12 @@ src_compile() { done cd .. - einfo "Creating JAR" + echo "Creating JAR" jar cf dist/${PN}.jar -C build . || die "Failed to create JAR archive" if use doc ; then mkdir -p dist/doc - einfo "Generating javadocs" + echo "Generating javadocs" find src/ -name "*.java" | xargs javadoc -d dist/doc/ \ -quiet || die "Failed to generate javadoc" fi |