summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-11-13 18:46:39 +0000
committerMike Frysinger <vapier@gentoo.org>2011-11-13 18:46:39 +0000
commit5683d59c31e06e85c2d8d62b671db5274dbc63cf (patch)
treec72c560ada26c4953ab5502ba81778309c4cd571 /dev-libs/beecrypt
parentfix typo (diff)
downloadgentoo-2-5683d59c31e06e85c2d8d62b671db5274dbc63cf.tar.gz
gentoo-2-5683d59c31e06e85c2d8d62b671db5274dbc63cf.tar.bz2
gentoo-2-5683d59c31e06e85c2d8d62b671db5274dbc63cf.zip
Convert USE=nocxx to USE=cxx.
(Portage version: 2.2.0_alpha74/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/beecrypt')
-rw-r--r--dev-libs/beecrypt/ChangeLog5
-rw-r--r--dev-libs/beecrypt/beecrypt-4.2.1.ebuild8
2 files changed, 8 insertions, 5 deletions
diff --git a/dev-libs/beecrypt/ChangeLog b/dev-libs/beecrypt/ChangeLog
index 2fa307464290..6647d271b69d 100644
--- a/dev-libs/beecrypt/ChangeLog
+++ b/dev-libs/beecrypt/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/beecrypt
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/beecrypt/ChangeLog,v 1.77 2011/10/05 19:18:30 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/beecrypt/ChangeLog,v 1.78 2011/11/13 18:46:39 vapier Exp $
+
+ 13 Nov 2011; Mike Frysinger <vapier@gentoo.org> beecrypt-4.2.1.ebuild:
+ Convert USE=nocxx to USE=cxx.
05 Oct 2011; Alexis Ballier <aballier@gentoo.org> beecrypt-4.2.1.ebuild:
remove ptex dep as it is going away
diff --git a/dev-libs/beecrypt/beecrypt-4.2.1.ebuild b/dev-libs/beecrypt/beecrypt-4.2.1.ebuild
index 5a4acb6f824c..4da8d4a5b8ae 100644
--- a/dev-libs/beecrypt/beecrypt-4.2.1.ebuild
+++ b/dev-libs/beecrypt/beecrypt-4.2.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/beecrypt/beecrypt-4.2.1.ebuild,v 1.13 2011/10/05 19:18:30 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/beecrypt/beecrypt-4.2.1.ebuild,v 1.14 2011/11/13 18:46:39 vapier Exp $
EAPI="3"
PYTHON_DEPEND="python? 2"
@@ -14,10 +14,10 @@ SRC_URI="mirror://sourceforge/beecrypt/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="java nocxx python threads doc"
+IUSE="java cxx python threads doc"
COMMONDEPEND="!<app-arch/rpm-4.2.1
- !nocxx? ( threads? ( >=dev-libs/icu-2.8 ) )"
+ threads? ( cxx? ( >=dev-libs/icu-2.8 ) )"
DEPEND="${COMMONDEPEND}
java? ( >=virtual/jdk-1.4 )
@@ -47,7 +47,7 @@ src_configure() {
--disable-expert-mode \
$(use_enable threads) \
$(use_with python python "${EPREFIX}"/usr/bin/python2) \
- $(use threads && use_with !nocxx cplusplus || echo --without-cplusplus) \
+ $(use threads && use_with cxx cplusplus || echo --without-cplusplus) \
$(use_with java)
}