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.5.20_p2.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.5.20_p2.ebuild')
-rw-r--r-- | sys-libs/db/db-4.5.20_p2.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-libs/db/db-4.5.20_p2.ebuild b/sys-libs/db/db-4.5.20_p2.ebuild index cf1d02239150..441da1c82e09 100644 --- a/sys-libs/db/db-4.5.20_p2.ebuild +++ b/sys-libs/db/db-4.5.20_p2.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.5.20_p2.ebuild,v 1.32 2012/05/24 05:34:44 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-4.5.20_p2.ebuild,v 1.33 2012/09/24 00:31:53 vapier Exp $ inherit eutils db flag-o-matic java-pkg-opt-2 multilib @@ -27,7 +27,7 @@ done LICENSE="OracleDB" SLOT="4.5" KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips 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 ) @@ -103,7 +103,7 @@ src_compile() { --libdir=/usr/"$(get_libdir)" \ --enable-compat185 \ --without-uniquename \ - --enable-rpc \ + $(use_enable rpc) \ --host="${CHOST}" \ ${myconf} "${javaconf}" || die "configure failed" |