# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit toolchain-funcs DESCRIPTION="A LALR(1) parser generator." HOMEPAGE="http://www.hwaci.com/sw/lemon/" SRC_URI="http://www.sqlite.org/cvstrac/getfile/sqlite/tool/lemon.c?v=${PV}" LICENSE="public-domain" SLOT="0" KEYWORDS="~x86 ~ppc ~ia64 ~sparc ~alpha ~mips ~hppa" IUSE="" src_compile() { # in case it was downloaded from the main site mv "lemon.c?v=$(PV)" lemon.c "$(tc-getCC)" -o lemon lemon.c || die } src_install() { dobin lemon }