summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Klimaszewski <steev@gentoo.org>2011-07-31 09:13:07 +0000
committerStephen Klimaszewski <steev@gentoo.org>2011-07-31 09:13:07 +0000
commit5c2c1070c47e61483416323913d136973868f5c6 (patch)
treec7cbf03ddf34ba864d6121cc00bd0af389329b13 /app-text
parentclean up (diff)
downloadgentoo-2-5c2c1070c47e61483416323913d136973868f5c6.tar.gz
gentoo-2-5c2c1070c47e61483416323913d136973868f5c6.tar.bz2
gentoo-2-5c2c1070c47e61483416323913d136973868f5c6.zip
Fix use dependencies, this fixes bug 372471. Thanks to Piotr Szymaniak for reporting.
(Portage version: 2.1.10.9/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/crm114/ChangeLog9
-rw-r--r--app-text/crm114/crm114-20100106.ebuild5
2 files changed, 11 insertions, 3 deletions
diff --git a/app-text/crm114/ChangeLog b/app-text/crm114/ChangeLog
index 6829097f9f57..8fe118e3db4b 100644
--- a/app-text/crm114/ChangeLog
+++ b/app-text/crm114/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-text/crm114
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/crm114/ChangeLog,v 1.45 2011/01/12 07:28:22 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/crm114/ChangeLog,v 1.46 2011/07/31 09:13:07 steev Exp $
+
+ 31 Jul 2011; Steev Klimaszewsk <steev@gentoo.org> crm114-20100106.ebuild:
+ By default, crm114 is built +static, however tre is not built +static-libs.
+ Because of this, crm114 is failing to build, reporting that it can't find
+ -ltre. Fix the use
+ dependencies, so that it should build correctly. This fixes bug 372471.
+ Thanks to Piotr Szymaniak for reporting.
12 Jan 2011; Justin Lecher <jlec@gentoo.org> -crm114-20070810.ebuild:
Removed old
diff --git a/app-text/crm114/crm114-20100106.ebuild b/app-text/crm114/crm114-20100106.ebuild
index 36fc738db845..39fe1ae033ef 100644
--- a/app-text/crm114/crm114-20100106.ebuild
+++ b/app-text/crm114/crm114-20100106.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/app-text/crm114/crm114-20100106.ebuild,v 1.1 2011/01/05 17:30:44 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/crm114/crm114-20100106.ebuild,v 1.2 2011/07/31 09:13:07 steev Exp $
EAPI=2
@@ -18,7 +18,8 @@ KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="mew mimencode nls normalizemime +static test"
RDEPEND="
- dev-libs/tre
+ static? ( dev-libs/tre[static-libs] )
+ !static? ( dev-libs/tre[-static-libs] )
mew? ( app-emacs/mew )
mimencode? ( net-mail/metamail )
normalizemime? ( mail-filter/normalizemime )"