diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-11-01 17:40:49 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-11-01 17:40:49 +0000 |
commit | 5035ed034a0dacf3ddd88454331999d4a5b6d10b (patch) | |
tree | d0717604f835d72287bae2f08374ca48df0bc374 /sys-libs/libcxxrt | |
parent | remove old (diff) | |
download | gentoo-2-5035ed034a0dacf3ddd88454331999d4a5b6d10b.tar.gz gentoo-2-5035ed034a0dacf3ddd88454331999d4a5b6d10b.tar.bz2 gentoo-2-5035ed034a0dacf3ddd88454331999d4a5b6d10b.zip |
remove old
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'sys-libs/libcxxrt')
-rw-r--r-- | sys-libs/libcxxrt/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/libcxxrt/files/0001-Link-to-libdl-where-needed-for-dladdr-exception.cc.patch | 24 | ||||
-rw-r--r-- | sys-libs/libcxxrt/libcxxrt-0.0_p20120528.ebuild | 54 |
3 files changed, 6 insertions, 79 deletions
diff --git a/sys-libs/libcxxrt/ChangeLog b/sys-libs/libcxxrt/ChangeLog index 590d884d7580..c0b1cfad84fb 100644 --- a/sys-libs/libcxxrt/ChangeLog +++ b/sys-libs/libcxxrt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/libcxxrt # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcxxrt/ChangeLog,v 1.4 2012/09/11 20:16:56 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcxxrt/ChangeLog,v 1.5 2012/11/01 17:40:49 aballier Exp $ + + 01 Nov 2012; Alexis Ballier <aballier@gentoo.org> + -files/0001-Link-to-libdl-where-needed-for-dladdr-exception.cc.patch, + -libcxxrt-0.0_p20120528.ebuild: + remove old 11 Sep 2012; Alexis Ballier <aballier@gentoo.org> libcxxrt-0.0_p20120911.ebuild, libcxxrt-9999.ebuild: diff --git a/sys-libs/libcxxrt/files/0001-Link-to-libdl-where-needed-for-dladdr-exception.cc.patch b/sys-libs/libcxxrt/files/0001-Link-to-libdl-where-needed-for-dladdr-exception.cc.patch deleted file mode 100644 index da14ad8a412d..000000000000 --- a/sys-libs/libcxxrt/files/0001-Link-to-libdl-where-needed-for-dladdr-exception.cc.patch +++ /dev/null @@ -1,24 +0,0 @@ -From 924fc4689d447ab73dd5acc27f1c22f697d2d4d0 Mon Sep 17 00:00:00 2001 -From: Alexis Ballier <aballier@gentoo.org> -Date: Sun, 27 May 2012 19:39:13 -0400 -Subject: [PATCH] Link to libdl where needed for dladdr() (exception.cc) - ---- - src/CMakeLists.txt | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) - -diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index 0b44852..b4086d9 100644 ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -13,6 +13,7 @@ set(CXXRT_SOURCES - - add_library(cxxrt-static STATIC ${CXXRT_SOURCES}) - add_library(cxxrt-shared SHARED ${CXXRT_SOURCES}) -+target_link_libraries(cxxrt-shared ${CMAKE_DL_LIBS}) - - set_target_properties(cxxrt-static cxxrt-shared PROPERTIES - OUTPUT_NAME "cxxrt" --- -1.7.8.6 - diff --git a/sys-libs/libcxxrt/libcxxrt-0.0_p20120528.ebuild b/sys-libs/libcxxrt/libcxxrt-0.0_p20120528.ebuild deleted file mode 100644 index 6f57e75cbfc6..000000000000 --- a/sys-libs/libcxxrt/libcxxrt-0.0_p20120528.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libcxxrt/libcxxrt-0.0_p20120528.ebuild,v 1.1 2012/05/28 13:58:04 aballier Exp $ - -EAPI=4 - -EGIT_REPO_URI="git://github.com/pathscale/libcxxrt.git" - -[ "${PV%9999}" != "${PV}" ] && SCM="git-2" || SCM="" - -inherit cmake-utils ${SCM} base flag-o-matic - -DESCRIPTION="C++ Runtime from PathScale, FreeBSD and NetBSD." -HOMEPAGE="https://github.com/pathscale/libcxxrt http://www.pathscale.com/node/265" -if [ "${PV%9999}" = "${PV}" ] ; then - SRC_URI="mirror://gentoo/${P}.tar.xz" - DEPEND="app-arch/xz-utils" -else - SRC_URI="" -fi - -LICENSE="BSD-2" -SLOT="0" -if [ "${PV%9999}" = "${PV}" ] ; then - KEYWORDS="~amd64" -else - KEYWORDS="" -fi -IUSE="" - -RDEPEND="" -DEPEND="${RDEPEND} - ${DEPEND}" - -PATCHES=( "${FILESDIR}/0001-Link-to-libdl-where-needed-for-dladdr-exception.cc.patch" ) - -src_prepare() { - base_src_prepare -} - -src_install() { - # TODO: See README. Maybe hide it in a subdir and let only libcxx know about - # it. FreeBSD head installs it in /lib - cd "${CMAKE_BUILD_DIR}" - dolib.so lib/${PN}.so - dolib.a lib/${PN}.a - - cd "${S}" - - insinto /usr/include/libcxxrt/ - doins src/cxxabi.h src/unwind*.h - - dodoc AUTHORS COPYRIGHT README -} |