summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Hill <dirtyepic@gentoo.org>2009-07-26 03:51:14 +0000
committerRyan Hill <dirtyepic@gentoo.org>2009-07-26 03:51:14 +0000
commitfdfa89a2e4d227a9ccb8e5eaad733f35782e556d (patch)
treed28f912e84ddb3625041c58d4f01d561d9301133 /sys-libs
parentVersion bump. Ebuild adpated to upstream file reorganisation (diff)
downloadgentoo-2-fdfa89a2e4d227a9ccb8e5eaad733f35782e556d.tar.gz
gentoo-2-fdfa89a2e4d227a9ccb8e5eaad733f35782e556d.tar.bz2
gentoo-2-fdfa89a2e4d227a9ccb8e5eaad733f35782e556d.zip
Version bump (bug #273372).
Also fix license (bug #273366) and disable tests. (Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/libunwind/ChangeLog10
-rw-r--r--sys-libs/libunwind/libunwind-0.99.ebuild31
2 files changed, 39 insertions, 2 deletions
diff --git a/sys-libs/libunwind/ChangeLog b/sys-libs/libunwind/ChangeLog
index 63a83089a5b8..08c22c4f78ac 100644
--- a/sys-libs/libunwind/ChangeLog
+++ b/sys-libs/libunwind/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-libs/libunwind
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.4 2008/10/14 09:58:27 robbat2 Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/ChangeLog,v 1.5 2009/07/26 03:51:14 dirtyepic Exp $
+
+*libunwind-0.99 (26 Jul 2009)
+
+ 26 Jul 2009; Ryan Hill <dirtyepic@gentoo.org> +libunwind-0.99.ebuild:
+ Version bump (bug #273372).
+ Also fix license (bug #273366) and disable tests.
*libunwind-0.98.5-r1 (14 Oct 2008)
diff --git a/sys-libs/libunwind/libunwind-0.99.ebuild b/sys-libs/libunwind/libunwind-0.99.ebuild
new file mode 100644
index 000000000000..4995a50a8009
--- /dev/null
+++ b/sys-libs/libunwind/libunwind-0.99.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libunwind/libunwind-0.99.ebuild,v 1.1 2009/07/26 03:51:14 dirtyepic Exp $
+
+inherit autotools
+
+DESCRIPTION="Portable and efficient API to determine the call-chain of a program"
+HOMEPAGE="http://savannah.nongnu.org/projects/libunwind"
+SRC_URI="http://download.savannah.nongnu.org/releases/libunwind/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="7"
+KEYWORDS="~amd64 ~ia64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+RESTRICT="test" # https://savannah.nongnu.org/bugs/?22368
+ # https://bugs.gentoo.org/273372
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ eautoreconf
+}
+
+src_install() {
+ emake install DESTDIR="${D}" || die
+ dodoc AUTHORS ChangeLog NEWS README TODO
+}