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 | 95aef532d45acdf2b46a4c0f938e8fb4aa472baa (patch) | |
tree | 4c83aca06cd16fdc855481e73fbec86662e64de8 /dev-util | |
parent | minor fix (diff) | |
download | historical-95aef532d45acdf2b46a4c0f938e8fb4aa472baa.tar.gz historical-95aef532d45acdf2b46a4c0f938e8fb4aa472baa.tar.bz2 historical-95aef532d45acdf2b46a4c0f938e8fb4aa472baa.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/Manifest | 4 | ||||
-rw-r--r-- | dev-util/subversion/subversion-1.1.0.ebuild | 7 |
3 files changed, 11 insertions, 5 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/Manifest b/dev-util/subversion/Manifest index 68f1e51df3e3..7e5441d6fbd2 100644 --- a/dev-util/subversion/Manifest +++ b/dev-util/subversion/Manifest @@ -1,8 +1,8 @@ -MD5 bdb499a5494ac614f64652c00b56ae2b ChangeLog 19022 +MD5 94bf0a7aae96a0a683ba9e2cbc95a28d ChangeLog 19139 MD5 8fbcd267012fd1eef74d5161888cc7b8 metadata.xml 222 MD5 1b9acc042ae6c0b58071cf9ea8adc57a subversion-0.27.0.ebuild 7880 MD5 5cff2e6d2191553c86d931e5240ba23a subversion-0.32.1.ebuild 8136 -MD5 bc8ea0c71f8399d7843bdef7365b97d0 subversion-1.1.0.ebuild 9139 +MD5 49411df04a2c8c37deab695ca2b26db2 subversion-1.1.0.ebuild 9221 MD5 220e6cbebb218332e8b449ccdd7477dd subversion-1.0.9.ebuild 9721 MD5 4c7351dd78c5ddf1c3f49cb621d6efe9 subversion-1.0.8.ebuild 9721 MD5 4fd39b311d09602c93a9ff0aceaf8596 files/70svn-gentoo.el 136 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 |