# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Lua library of modules for common programming tasks" HOMEPAGE="http://luaforge.net/projects/stdlib/" SRC_URI="http://luaforge.net/frs/download.php/3584/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" IUSE="doc" DEPEND="dev-lang/lua" RDEPEND="${DEPEND} >=dev-lua/lrexlib-2.2.0" S="${WORKDIR}/${PN}" src_compile() { : } src_install() { local luaver= luaver="$(lua -v 2>&1| cut -d' ' -f2)" luaver="${luaver%.*}" insinto /usr/share/lua/${luaver} doins modules/*.lua || die "doins failed" if use doc; then dohtml -r modules/* || die "dohtml failed" fi }