blob: 40d878fd631df5842926054be9a1ec4e9c9008b6 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/dvipng/dvipng-1.9.ebuild,v 1.1 2007/02/08 23:16:34 opfer Exp $
IUSE="truetype"
DESCRIPTION="A program to translate a DVI (DeVice Independent) files into PNG (Portable Network Graphics) bitmaps"
HOMEPAGE="http://dvipng.sourceforge.net/"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
RDEPEND="media-libs/gd
media-libs/libpng
virtual/tetex
sys-libs/zlib
truetype? ( >=media-libs/freetype-2.1.5 )"
DEPEND="${RDEPEND}
sys-apps/texinfo"
src_compile() {
econf $(use_with truetype freetype) || die "Configure failed"
emake || die "Compile failed"
}
src_install() {
make DESTDIR="${D}" install || die "Install failed"
dodoc ChangeLog README RELEASE || die "dodoc failed"
}
|