diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-05-30 23:33:32 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-05-30 23:33:32 +0000 |
commit | 89f171c7b315b4f0cb4b8fbd3813c62d8c271d4a (patch) | |
tree | c8e0aeabc577515f49be7ad09c5a3613edacfddf /sys-libs/libcxxrt | |
parent | add a static-libs useflag and link tests with -lm (diff) | |
download | gentoo-2-89f171c7b315b4f0cb4b8fbd3813c62d8c271d4a.tar.gz gentoo-2-89f171c7b315b4f0cb4b8fbd3813c62d8c271d4a.tar.bz2 gentoo-2-89f171c7b315b4f0cb4b8fbd3813c62d8c271d4a.zip |
stop hacking around unwind headers and install them protected under libcxxrt directory as that is what libcxx build system expects
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'sys-libs/libcxxrt')
-rw-r--r-- | sys-libs/libcxxrt/ChangeLog | 6 | ||||
-rw-r--r-- | sys-libs/libcxxrt/libcxxrt-9999.ebuild | 6 |
2 files changed, 7 insertions, 5 deletions
diff --git a/sys-libs/libcxxrt/ChangeLog b/sys-libs/libcxxrt/ChangeLog index 2634caadfe13..890da6a24d54 100644 --- a/sys-libs/libcxxrt/ChangeLog +++ b/sys-libs/libcxxrt/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-libs/libcxxrt # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcxxrt/ChangeLog,v 1.9 2013/05/30 22:41:12 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcxxrt/ChangeLog,v 1.10 2013/05/30 23:33:32 aballier Exp $ + + 30 May 2013; Alexis Ballier <aballier@gentoo.org> libcxxrt-9999.ebuild: + stop hacking around unwind headers and install them protected under libcxxrt + directory as that is what libcxx build system expects 30 May 2013; Alexis Ballier <aballier@gentoo.org> libcxxrt-9999.ebuild: propagate static-libs use dep to libunwind diff --git a/sys-libs/libcxxrt/libcxxrt-9999.ebuild b/sys-libs/libcxxrt/libcxxrt-9999.ebuild index 6a34b752a0bb..c605dce95434 100644 --- a/sys-libs/libcxxrt/libcxxrt-9999.ebuild +++ b/sys-libs/libcxxrt/libcxxrt-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcxxrt/libcxxrt-9999.ebuild,v 1.5 2013/05/30 22:41:12 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcxxrt/libcxxrt-9999.ebuild,v 1.6 2013/05/30 23:33:32 aballier Exp $ EAPI=4 @@ -36,8 +36,6 @@ src_prepare() { base_src_prepare cp "${FILESDIR}/Makefile" src/ || die cp "${FILESDIR}/Makefile.test" test/Makefile || die - rm -f src/unwind* || die - cp -f "${FILESDIR}/unwind.h" src/ || die } src_compile() { @@ -63,7 +61,7 @@ src_install() { use static-libs && dolib.a src/${PN}.a insinto /usr/include/libcxxrt/ - doins src/cxxabi.h + doins src/cxxabi.h src/unwind*.h dodoc AUTHORS COPYRIGHT README } |