blob: b6a26d2712d2ca05daa4122297d333bca1a2596e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/dvipng/dvipng-1.12.ebuild,v 1.10 2009/05/30 06:40:05 ulm Exp $
EAPI="2"
inherit eutils
DESCRIPTION="A program to translate a DVI (DeVice Independent) files into PNG (Portable Network Graphics) bitmaps"
HOMEPAGE="http://dvipng.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="truetype test"
RDEPEND="media-libs/gd[jpeg,png]
media-libs/libpng
virtual/latex-base
sys-libs/zlib
truetype? ( >=media-libs/freetype-2.1.5 )"
DEPEND="${RDEPEND}
virtual/texi2dvi
test? ( ||
( dev-texlive/texlive-fontsrecommended app-text/ptex )
)"
src_configure() {
export VARTEXFONTS="${T}/fonts"
econf $(use_with truetype freetype) || die "Configure failed"
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
dodoc ChangeLog README RELEASE || die "dodoc failed"
}
|