diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-09-24 00:31:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-09-24 00:31:53 +0000 |
commit | 59378de0720364216ec033b4d7fcbe5d35bde7b6 (patch) | |
tree | 1a4670d33639659a08817337b6736a768d5a700f /sys-libs/db/db-4.7.25_p4.ebuild | |
parent | Version bump. (diff) | |
download | historical-59378de0720364216ec033b4d7fcbe5d35bde7b6.tar.gz historical-59378de0720364216ec033b4d7fcbe5d35bde7b6.tar.bz2 historical-59378de0720364216ec033b4d7fcbe5d35bde7b6.zip |
Make rpc support conditional #424838 by Kiichiro.
Package-Manager: portage-2.2.0_alpha131/cvs/Linux x86_64
Diffstat (limited to 'sys-libs/db/db-4.7.25_p4.ebuild')
-rw-r--r-- | sys-libs/db/db-4.7.25_p4.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-libs/db/db-4.7.25_p4.ebuild b/sys-libs/db/db-4.7.25_p4.ebuild index cd14a835eae3..f05aae566c26 100644 --- a/sys-libs/db/db-4.7.25_p4.ebuild +++ b/sys-libs/db/db-4.7.25_p4.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.7.25_p4.ebuild,v 1.15 2012/05/24 05:34:44 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-4.7.25_p4.ebuild,v 1.16 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="OracleDB" SLOT="4.7" KEYWORDS="alpha amd64 arm hppa ia64 m68k ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd" -IUSE="doc java cxx tcl test" +IUSE="doc java cxx tcl test rpc" # the entire testsuite needs the TCL functionality DEPEND="tcl? ( >=dev-lang/tcl-8.4 ) @@ -116,7 +116,7 @@ src_compile() { --enable-compat185 \ --enable-o_direct \ --without-uniquename \ - --enable-rpc \ + $(use_enable rpc) \ $(use arm && echo --with-mutex=ARM/gcc-assembly) \ $(use amd64 && echo --with-mutex=x86/gcc-assembly) \ $(use_enable cxx) \ |