diff options
author | Vlastimil Babka <caster@gentoo.org> | 2007-05-08 13:09:18 +0000 |
---|---|---|
committer | Vlastimil Babka <caster@gentoo.org> | 2007-05-08 13:09:18 +0000 |
commit | 76127540c0a4090faadee4f67f5015dda404b1b0 (patch) | |
tree | de468d8e84314d6d089663ab724f80ce47bcbd2b /dev-java/fop | |
parent | x86 stable wrt #176963 (diff) | |
download | gentoo-2-76127540c0a4090faadee4f67f5015dda404b1b0.tar.gz gentoo-2-76127540c0a4090faadee4f67f5015dda404b1b0.tar.bz2 gentoo-2-76127540c0a4090faadee4f67f5015dda404b1b0.zip |
Fixed out of memory build issues on amd64 by using ecj for compiling and raising memory limit to 256M, bug #177585; Install also sample config via examples flag, bug #177615.
(Portage version: 2.1.2.7)
Diffstat (limited to 'dev-java/fop')
-rw-r--r-- | dev-java/fop/ChangeLog | 7 | ||||
-rw-r--r-- | dev-java/fop/fop-0.93.ebuild | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/dev-java/fop/ChangeLog b/dev-java/fop/ChangeLog index 7b6ae65c5257..e6dfc2d6ebce 100644 --- a/dev-java/fop/ChangeLog +++ b/dev-java/fop/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-java/fop # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/fop/ChangeLog,v 1.41 2007/05/07 16:01:49 caster Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/fop/ChangeLog,v 1.42 2007/05/08 13:09:18 caster Exp $ + + 08 May 2007; Vlastimil Babka <caster@gentoo.org> fop-0.93.ebuild: + Fixed out of memory build issues on amd64 by using ecj for compiling and + raising memory limit to 256M, bug #177585; Install also sample config via + examples flag, bug #177615. 07 May 2007; Vlastimil Babka <caster@gentoo.org> fop-0.93.ebuild ChangeLog: Version bump. Thanks to people in bug #113589 and other developers for work diff --git a/dev-java/fop/fop-0.93.ebuild b/dev-java/fop/fop-0.93.ebuild index 049195ecb56b..4ed3680604a5 100644 --- a/dev-java/fop/fop-0.93.ebuild +++ b/dev-java/fop/fop-0.93.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/fop/fop-0.93.ebuild,v 1.2 2007/05/08 11:14:00 ali_bush Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/fop/fop-0.93.ebuild,v 1.3 2007/05/08 13:09:18 caster Exp $ # TODO: hyphenation support doesn't seem to be built correctly, because there's no xml in hyph dir # but upstream binary distro contains only fop.jar, no hyph nor sandbox @@ -75,7 +75,7 @@ src_compile() { use jai && af="${af} -Djai.present=true" use jimi && af="${af} -Djimi.present=true" - ANT_OPTS="-Xmx256M" + export ANT_OPTS="-Xmx256M" java-pkg_force-compiler ecj-3.2 eant ${af} package $(use_doc javadocs) } @@ -100,6 +100,6 @@ src_install() { dodoc NOTICE README use doc && java-pkg_dojavadoc build/javadocs - use examples && java-pkg_doexamples examples + use examples && java-pkg_doexamples examples/* conf use source && java-pkg_dosrc src/java/org src/java-1.4/* src/sandbox/org } |