# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit toolchain-funcs DESCRIPTION="mimetex lets you easily embed LaTeX math in your html and dynamic web pages" HOMEPAGE="http://www.forkosh.dreamhost.com/mimetex.html" SRC_URI="http://www.forkosh.com/${PN}.zip" LICENSE="GPL" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="app-arch/unzip" RDEPEND="" src_unpack() { mkdir -p ${S} && cd ${S} unpack ${A} } src_compile() { $(tc-getCC) ${CFLAGS} -DAA -o ${PN} mimetex.c gifsave.c -lm \ || die "compile failed!" } src_install() { dobin ${PN} }