blob: 15880cd06f02273cc77e7d7f2318a5c499eab27a (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/dvipdfmx/dvipdfmx-20090708.ebuild,v 1.1 2009/11/29 22:24:00 scarabeus Exp $
EAPI="2"
inherit eutils base autotools
DESCRIPTION="DVI to PDF translator with multi-byte character support"
HOMEPAGE="http://project.ktug.or.kr/dvipdfmx/"
SRC_URI="http://project.ktug.or.kr/${PN}/snapshot/latest/${P}.tar.gz"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
DEPEND="
app-text/libpaper
media-libs/libpng
sys-libs/zlib
virtual/tex-base
app-text/libpaper
"
RDEPEND="${DEPEND}
virtual/poppler
app-text/poppler-data
"
PATCHES=(
"${FILESDIR}/${PV}-fix_file_collisions.patch"
)
src_prepare() {
base_src_prepare
eautoreconf
}
src_install() {
# Override dvipdfmx.cfg default installation location so that it is easy to
# modify it and it gets config protected. Symlink it from the old location.
emake configdatadir="/etc/texmf/dvipdfm" DESTDIR="${D}" install || die "make install failed"
dosym /etc/texmf/dvipdfm/dvipdfmx.cfg /usr/share/texmf/dvipdfm/dvipdfmx.cfg || die
# Symlink poppler-data cMap, bug #201258
dosym /usr/share/poppler/cMap /usr/share/texmf/fonts/cmap/cMap || die
dodoc AUTHORS ChangeLog README || die
}
pkg_postinst() {
[[ ${ROOT} == / ]] && mktexlsr
}
pkg_postrm() {
[[ ${ROOT} == / ]] && mktexlsr
}
|