# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 IUSE="doc" DESCRIPTION="LaTeX to RTF converter" HOMEPAGE="http://latex2rtf.sourceforge.net/" SRC_URI="http://unc.dl.sourceforge.net/sourceforge/latex2rtf/${PN}-${PV}.tar.gz" LICENSE="GPL-2" KEYWORDS="~x86" SLOT="0" DEPEND="virtual/glibc app-text/tetex media-gfx/imagemagick" src_unpack() { unpack ${A} cd ${S} einfo Using Gentoo specific Makefile cp ${FILESDIR}/Makefile Makefile } src_compile() { PREFIX=${D}/usr/ emake || die } src_install() { PREFIX=${D}/usr/ make -e install || die dodoc README doc/latex2rtf.txt # if doc is not used, only the text version is intalled. if (use doc); then dodoc doc/latex2rtf.html doc/latex2rtf.pdf doc/latex2rtf.txt doinfo doc/latex2rtf.info fi }