forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dvipdfm-0.13.2d-r2.ebuild
59 lines (43 loc) · 1.59 KB
/
dvipdfm-0.13.2d-r2.ebuild
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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=3
inherit eutils
DESCRIPTION="DVI to PDF translator"
SRC_URI="http://gaspra.kettering.edu/dvipdfm/${P}.tar.gz"
HOMEPAGE="http://gaspra.kettering.edu/dvipdfm/"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE=""
DEPEND="!>=app-text/tetex-2
>=media-libs/libpng-1.2.1
>=sys-libs/zlib-1.1.4
!app-text/ptex
virtual/latex-base"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${PN}
src_prepare() {
epatch "${FILESDIR}"/${P}-libpng14.patch
}
src_install () {
einstall texmf="${ED}usr/share/texmf-site" || die "einstall failed!"
# Install .map and .enc files to correct locations, bug #200956
dodir /usr/share/texmf-site/fonts/map/dvipdfm/base
for i in cmr.map psbase14.map lw35urw.map lw35urwa.map t1fonts.map; do
mv "${ED}usr/share/texmf-site/dvipdfm/config/${i}" "${ED}usr/share/texmf-site/fonts/map/dvipdfm/base" || die "moving .map file failed"
done
dodir /usr/share/texmf-site/fonts/enc/dvipdfm
mv "${ED}usr/share/texmf-site/dvipdfm/base" "${ED}usr/share/texmf-site/fonts/enc/dvipdfm/base" || die "moving .enc file failed"
dodoc AUTHORS ChangeLog Credits NEWS OBTAINING README* TODO
docinto doc
dodoc doc/*
docinto latex-support
dodoc latex-support/*
insinto /usr/share/texmf-site/tex/latex/dvipdfm/
doins latex-support/dvipdfm.def
}
pkg_postinst() {
if [ "$ROOT" = "/" ] ; then
"${EPREFIX}"/usr/sbin/texmf-update
fi
}