From 00c938d76e1b8a132837290d34be080ff925e8fd Mon Sep 17 00:00:00 2001 From: David Seifert Date: Mon, 30 Jan 2017 09:25:54 +0100 Subject: dev-cpp/luabind: Remove from tree --- dev-cpp/luabind/luabind-0.9.1-r1.ebuild | 62 --------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 dev-cpp/luabind/luabind-0.9.1-r1.ebuild (limited to 'dev-cpp/luabind/luabind-0.9.1-r1.ebuild') diff --git a/dev-cpp/luabind/luabind-0.9.1-r1.ebuild b/dev-cpp/luabind/luabind-0.9.1-r1.ebuild deleted file mode 100644 index 93d952d97c1d..000000000000 --- a/dev-cpp/luabind/luabind-0.9.1-r1.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -# NOTE: cross compiling is probably broken - -EAPI=6 - -inherit eutils multilib - -DESCRIPTION="Creates bindings for lua on c++" -HOMEPAGE="http://www.rasterbar.com/products/luabind.html" -SRC_URI="mirror://sourceforge/luabind/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="dev-lang/lua" -DEPEND="${RDEPEND} - dev-libs/boost - dev-util/boost-build" - -PATCHES=( - "${FILESDIR}"/${P}-boost.patch -) - -src_prepare() { - default - - # backwardscomapt with old boost-build-1.49.0 - if [[ -e $(which bjam-1_49 2>/dev/null) ]] ; then - my_bjam_bin=bjam-1_49 - else - my_bjam_bin=bjam - fi -} - -src_compile() { - # linkflags get appended, so they actually do nothing - ${my_bjam_bin} release \ - -d+2 \ - --prefix="${D}/usr/" \ - --libdir="${D}/usr/$(get_libdir)" \ - cflags="${CFLAGS}" \ - linkflags="${LDFLAGS}" \ - link=shared || die "compile failed" -} - -src_install() { - ${my_bjam_bin} release \ - -d+2 \ - --prefix="${D}/usr/" \ - --libdir="${D}/usr/$(get_libdir)" \ - cflags="${CFLAGS}" \ - linkflags="${LDFLAGS}" \ - link=shared \ - install || die "install failed" -} - -# generally, this really sucks, patches welcome -- cgit v1.2.3-65-gdbad