summaryrefslogtreecommitdiff
blob: c7b57526558d708a349f3336e3cc023df52e8618 (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
# Copyright 1999-2003 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.1 2003/08/18 13:55:01 usata 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"
SLOT="0"
LICENSE="GPL-2"

DEPEND=">=media-libs/t1lib-1.3
	virtual/tetex
	virtual/x11
	cjk? ( media-fonts/kochi-substitute )
	libwww? ( >=net-libs/libwww-5.3.2-r1 )"

src_unpack () {

	unpack ${P}.tar.gz
	if [ -n "`use cjk`" ] ; then
		epatch ${DISTDIR}/${XDVIK_JP}.patch.gz
		epatch ${FILESDIR}/${XDVIK_JP}-vfontcap-gentoo.diff
	fi
}

src_compile () {

	local myconf

	use libwww && myconf="--with-system-wwwlib"
	use cjk && myconf="${myconf} --with-vflib=vf2ft" \
		&& export CPPFLAGS="${CPPFLAGS} -I/usr/include/freetype2"

	econf --enable-xdvietcdir=/usr/share/texmf/xdvi \
		--disable-multiplatform \
		--with-system-t1lib \
		${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 [ -n "`use cjk`" ]; then
		dodoc CHANGES.xdvik-jp 
		docinto READMEs
		dodoc READMEs/*
	fi
}