blob: b9a3711249409bf12de53116bd36738c1ca109eb (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/dvibook/dvibook-20001129.ebuild,v 1.3 2005/01/01 16:12:06 eradicator Exp $
inherit eutils
DESCRIPTION="DVI file utilities: dvibook, dviconcat, dvitodvi, and dviselect."
HOMEPAGE="http://www.ctan.org/tex-archive/dviware/dvibook/"
# Taken from: ftp://tug.ctan.org/tex-archive/dviware/${PN}.tar.gz
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="dvibook"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND="virtual/x11"
RDEPEND=""
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}.patch
}
src_compile() {
xmkmf -a || die "xmkmf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install install.man || die
dodoc README
}
|