summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-11-20 16:41:52 +0000
committerMike Frysinger <vapier@gentoo.org>2012-11-20 16:41:52 +0000
commitd8c249e60f2891eb992671b43eb076af0f976cbc (patch)
treea5f828831bbc2e6f2808f7ee0fbbed388bd9f498 /sys-libs/libunwind
parentstable ppc, bug #442600 (diff)
downloadgentoo-2-d8c249e60f2891eb992671b43eb076af0f976cbc.tar.gz
gentoo-2-d8c249e60f2891eb992671b43eb076af0f976cbc.tar.bz2
gentoo-2-d8c249e60f2891eb992671b43eb076af0f976cbc.zip
Add USE=lzma to control liblzma usage.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Diffstat (limited to 'sys-libs/libunwind')
-rw-r--r--sys-libs/libunwind/ChangeLog5
-rw-r--r--sys-libs/libunwind/libunwind-1.1.ebuild8
2 files changed, 10 insertions, 3 deletions
diff --git a/sys-libs/libunwind/ChangeLog b/sys-libs/libunwind/ChangeLog
index db9425a6003c..ed498e5163c8 100644
--- a/sys-libs/libunwind/ChangeLog
+++ b/sys-libs/libunwind/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/libunwind
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.27 2012/11/02 00:48:02 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.28 2012/11/20 16:41:52 vapier Exp $
+
+ 20 Nov 2012; Mike Frysinger <vapier@gentoo.org> libunwind-1.1.ebuild:
+ Add USE=lzma to control liblzma usage.
02 Nov 2012; Anthony G. Basile <blueness@gentoo.org> libunwind-1.1.ebuild:
keyword ~ppc64, bug #429710
diff --git a/sys-libs/libunwind/libunwind-1.1.ebuild b/sys-libs/libunwind/libunwind-1.1.ebuild
index 1f1709bfb87a..703b7c9cb37b 100644
--- a/sys-libs/libunwind/libunwind-1.1.ebuild
+++ b/sys-libs/libunwind/libunwind-1.1.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/libunwind/libunwind-1.1.ebuild,v 1.2 2012/11/02 00:48:02 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-1.1.ebuild,v 1.3 2012/11/20 16:41:52 vapier Exp $
EAPI="4"
@@ -11,7 +11,10 @@ SRC_URI="http://download.savannah.nongnu.org/releases/libunwind/${P}.tar.gz"
LICENSE="MIT"
SLOT="7"
KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="debug debug-frame static-libs"
+IUSE="debug debug-frame lzma static-libs"
+
+RDEPEND="lzma? ( app-arch/xz-utils )"
+DEPEND="${RDEPEND}"
DOCS=( AUTHORS ChangeLog NEWS README TODO )
@@ -36,6 +39,7 @@ src_configure() {
econf \
--enable-cxx-exceptions \
$(use_enable debug-frame) \
+ $(use_enable lzma minidebuginfo) \
$(use_enable static-libs static) \
$(use_enable debug conservative_checks) \
$(use debug && echo --enable-debug)