# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 [[ "${PV}" = *9999* ]] && live=git-r3 inherit ${live} DESCRIPTION="LibYAML binding for Lua" HOMEPAGE="http://gvvaughan.github.io/lyaml" if [[ "${PV}" = *9999* ]] ; then EGIT_REPO_URI="https://github.com/gvvaughan/${PN}.git" KEYWORDS="-*" else SRC_URI="https://github.com/gvvaughan/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64" fi LICENSE="MIT" SLOT="0" IUSE="luajit test" RDEPEND="!luajit? ( || ( dev-lang/lua:5.1 >=dev-lang/lua-5.1:0 ) ) luajit? ( dev-lang/luajit:2 ) dev-libs/libyaml" DEPEND="${RDEPEND} test? ( dev-lua/specl ) dev-lua/slingshot" DOCS=( "README.md" "NEWS" ) src_prepare() { rmdir slingshot || die ln -s "${EPREFIX}"/usr/share/slingshot . || die sed 's/lib_LTLIBRARIES += /luaexec_LTLIBRARIES = /' -i local.mk || die # WARNING: Order matters! Slingshot options are processed first and are ignored otherwise! ./bootstrap --skip-rock-checks --skip-git --skip-po || die } src_configure() { local lua=lua use luajit && lua=luajit econf \ LUA="${lua}" } src_test() { emake check }