diff options
author | 2012-09-24 00:31:53 +0000 | |
---|---|---|
committer | 2012-09-24 00:31:53 +0000 | |
commit | cb54c36d4964faf07eed00f470784ef1742d4320 (patch) | |
tree | 347eaa9e244d84e0d1d1f17cb70fd011e3b6372a /sys-libs/db/db-4.3.29_p1-r1.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-cb54c36d4964faf07eed00f470784ef1742d4320.tar.gz gentoo-2-cb54c36d4964faf07eed00f470784ef1742d4320.tar.bz2 gentoo-2-cb54c36d4964faf07eed00f470784ef1742d4320.zip |
Make rpc support conditional #424838 by Kiichiro.
(Portage version: 2.2.0_alpha131/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs/db/db-4.3.29_p1-r1.ebuild')
-rw-r--r-- | sys-libs/db/db-4.3.29_p1-r1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-libs/db/db-4.3.29_p1-r1.ebuild b/sys-libs/db/db-4.3.29_p1-r1.ebuild index ef197d743a34..bd6d2ad65437 100644 --- a/sys-libs/db/db-4.3.29_p1-r1.ebuild +++ b/sys-libs/db/db-4.3.29_p1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-4.3.29_p1-r1.ebuild,v 1.16 2012/05/24 05:34:44 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-4.3.29_p1-r1.ebuild,v 1.17 2012/09/24 00:31:53 vapier Exp $ inherit eutils db flag-o-matic java-pkg-opt-2 autotools multilib @@ -27,7 +27,7 @@ done LICENSE="DB" SLOT="4.3" KEYWORDS="alpha amd64 arm hppa ia64 m68k ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd" -IUSE="tcl java doc cxx" +IUSE="tcl java doc cxx rpc" DEPEND="tcl? ( >=dev-lang/tcl-8.4 ) java? ( >=virtual/jdk-1.4 ) @@ -130,7 +130,7 @@ src_compile() { --enable-compat185 \ --enable-o_direct \ --without-uniquename \ - --enable-rpc \ + $(use_enable rpc) \ --host="${CHOST}" \ ${myconf} "${javaconf}" || die "configure failed" |