diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-07-27 19:35:27 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-07-27 19:35:27 +0000 |
commit | 303d3715db705011db952fab40d4ea0b0b17f36b (patch) | |
tree | e81a46b39df1752c3939eda2ee4c2866fe17aa7f /dev-tex/tth/tth-3.77.ebuild | |
parent | Stable on sparc wrt #185967 (diff) | |
download | gentoo-2-303d3715db705011db952fab40d4ea0b0b17f36b.tar.gz gentoo-2-303d3715db705011db952fab40d4ea0b0b17f36b.tar.bz2 gentoo-2-303d3715db705011db952fab40d4ea0b0b17f36b.zip |
bump to latest version, install latex2gif ps2gif ps2png, bug #185328
(Portage version: 2.1.3_rc9)
Diffstat (limited to 'dev-tex/tth/tth-3.77.ebuild')
-rw-r--r-- | dev-tex/tth/tth-3.77.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-tex/tth/tth-3.77.ebuild b/dev-tex/tth/tth-3.77.ebuild new file mode 100644 index 000000000000..c1b32d7b7ce0 --- /dev/null +++ b/dev-tex/tth/tth-3.77.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/tth/tth-3.77.ebuild,v 1.1 2007/07/27 19:35:27 aballier Exp $ + +inherit toolchain-funcs + +DESCRIPTION="TTH translates TEX into HTML." +HOMEPAGE="http://hutchinson.belmont.ma.us/tth/" +SRC_URI="mirror://gentoo/${P}.tgz" + +SLOT="0" +LICENSE="free-noncomm" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="virtual/libc" +RDEPEND="virtual/ghostscript + media-libs/netpbm" + +S="${WORKDIR}/tth_C" + +src_compile() { + echo 'all: tth' > Makefile + tc-export CC + emake || die "compile failed" +} + +src_install() { + dobin tth latex2gif ps2gif ps2png + dodoc CHANGES + doman tth.1 + dohtml * +} |