diff options
author | Paul de Vrieze <pauldv@gentoo.org> | 2004-10-19 14:08:13 +0000 |
---|---|---|
committer | Paul de Vrieze <pauldv@gentoo.org> | 2004-10-19 14:08:13 +0000 |
commit | 3089448403fadb14e7aecee02ddddab1748e7968 (patch) | |
tree | a4bd88f04c91e3f16cad93f727153b36b67ddecd /dev-util | |
parent | minor fix (Manifest recommit) (diff) | |
download | gentoo-2-3089448403fadb14e7aecee02ddddab1748e7968.tar.gz gentoo-2-3089448403fadb14e7aecee02ddddab1748e7968.tar.bz2 gentoo-2-3089448403fadb14e7aecee02ddddab1748e7968.zip |
Try to fix bug #67681 by explicitly enabling javahl
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/subversion/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/subversion/subversion-1.1.0.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/dev-util/subversion/ChangeLog b/dev-util/subversion/ChangeLog index 2cc3fad6d629..5a248d2a3919 100644 --- a/dev-util/subversion/ChangeLog +++ b/dev-util/subversion/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/subversion # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/ChangeLog,v 1.111 2004/10/19 13:43:03 pauldv Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/ChangeLog,v 1.112 2004/10/19 14:08:13 pauldv Exp $ + + 19 Oct 2004; <pauldv@gentoo.org> subversion-1.1.0.ebuild: + Explicitly enable or disable javahl to fix bug #67681 19 Oct 2004; <pauldv@gentoo.org> subversion-1.1.0.ebuild: Fix missing quotes problem in combination with jikes. Thanks to diff --git a/dev-util/subversion/subversion-1.1.0.ebuild b/dev-util/subversion/subversion-1.1.0.ebuild index 953e7a0092e3..5263df773a9f 100644 --- a/dev-util/subversion/subversion-1.1.0.ebuild +++ b/dev-util/subversion/subversion-1.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/subversion-1.1.0.ebuild,v 1.5 2004/10/19 13:43:03 pauldv Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/subversion-1.1.0.ebuild,v 1.6 2004/10/19 14:08:13 pauldv Exp $ inherit elisp-common libtool python eutils @@ -105,10 +105,13 @@ src_compile() { use python && myconf="${myconf} --with-python=/usr/bin/python" use python || myconf="${myconf} --without-python" - + if use java; then + myconf="${myconf} --enable-javahl" use jikes && myconf="${myconf} --with-jikes=yes" use jikes || myconf="${myconf} --without-jikes" + else + myconf="${myconf} --disable-javahl" fi if use python || use perl; then |