diff options
author | Marek Szuba <marecki@gentoo.org> | 2023-05-21 11:54:10 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2023-05-21 11:54:10 +0100 |
commit | bb0cb690cc7fc0d6d3b288143ae5582e0fc494ba (patch) | |
tree | a72d9ff00056c39609bfadbd35b1e55beb9d874d /sys-libs | |
parent | www-servers/tomcat: Stabilize 10.1.8 amd64, #906885 (diff) | |
download | gentoo-bb0cb690cc7fc0d6d3b288143ae5582e0fc494ba.tar.gz gentoo-bb0cb690cc7fc0d6d3b288143ae5582e0fc494ba.tar.bz2 gentoo-bb0cb690cc7fc0d6d3b288143ae5582e0fc494ba.zip |
sys-libs/blocksruntime: drop 0_pre20171027-r1
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/blocksruntime/blocksruntime-0_pre20171027-r1.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/sys-libs/blocksruntime/blocksruntime-0_pre20171027-r1.ebuild b/sys-libs/blocksruntime/blocksruntime-0_pre20171027-r1.ebuild deleted file mode 100644 index bcafbfff5a34..000000000000 --- a/sys-libs/blocksruntime/blocksruntime-0_pre20171027-r1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs vcs-snapshot - -COMMIT=9cc93ae2b58676c23fd02cf0c686fa15b7a3ff81 # 27 Oct 2017 - -DESCRIPTION="BlocksRuntime library needed for clang's -fblocks support" -HOMEPAGE="https://github.com/mackyle/blocksruntime" -SRC_URI="https://github.com/mackyle/blocksruntime/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86" -IUSE="static-libs" - -RDEPEND="" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-0_pre20171027-ldflags-soname.patch -) - -src_prepare() { - default - - tc-export CC AR RANLIB -} - -src_compile() { - ./buildlib -shared || die -} - -src_install() { - prefix="${EPREFIX}/usr" \ - includedir="${EPREFIX}/usr/include/blocksruntime" \ - libdir="${EPREFIX}/usr/$(get_libdir)" \ - DESTDIR="${D}" \ - ./installlib $(use static-libs || echo -shared) || die -} |