blob: 96eb5425b9df63698a6b9f29835f964265e52380 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/xdvik/xdvik-22.40y-r1.ebuild,v 1.8 2004/06/02 16:36:18 agriffis Exp $
inherit eutils
IUSE="cjk libwww"
XDVIK_JP="${P}-j1.17"
DESCRIPTION="DVI previewer for X Window System"
SRC_URI="mirror://sourceforge/xdvi/${P}.tar.gz
cjk? ( mirror://gentoo/${XDVIK_JP}.patch.gz )"
HOMEPAGE="http://sourceforge.net/projects/xdvi/"
KEYWORDS="x86 alpha ppc sparc amd64"
SLOT="0"
LICENSE="GPL-2"
DEPEND=">=media-libs/t1lib-1.3
app-text/ptex
!app-text/tetex
virtual/x11
cjk? ( media-fonts/kochi-substitute )
libwww? ( >=net-libs/libwww-5.3.2-r1 )"
src_unpack () {
unpack ${P}.tar.gz
if use cjk ; then
epatch ${DISTDIR}/${XDVIK_JP}.patch.gz
epatch ${FILESDIR}/${XDVIK_JP}-vfontcap-gentoo.diff
fi
}
src_compile () {
local myconf
if use cjk ; then
export CPPFLAGS="${CPPFLAGS} -I/usr/include/freetype2"
myconf="${myconf} --with-vflib=vf2ft"
fi
econf --enable-xdvietcdir=/usr/share/texmf/xdvi \
--disable-multiplatform \
--with-system-t1lib \
`use_with libwww system-wwwlib` \
${myconf} || die "econf failed"
cd texk/xdvik
make || die
}
src_install () {
dodir /usr/share/texmf/xdvi
dodir /usr/share/man/man1
cd ${S}/texk/xdvik
einstall texmf=${D}/usr/share/texmf \
XDVIETCDIR=${D}/usr/share/texmf/xdvi \
|| die "install failed"
dodoc ANNOUNCE BUGS FAQ README.*
if use cjk; then
dodoc CHANGES.xdvik-jp
docinto READMEs
dodoc READMEs/*
fi
}
|