blob: 3df3ff75857bdc3c95672689b47bbb3a3929435e (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop texlive-common
DESCRIPTION="GUI and command-line converter for [e]ps and pdf"
HOMEPAGE="http://tex.aanhet.net/epspdf/"
# Unversioned epspdf.zip in https://ctan.space-pro.be/tex-archive/support/
SRC_URI="https://dev.gentoo.org/~flow/distfiles//${PN}/${P}.zip"
S="${WORKDIR}"/${PN}
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
IUSE="doc tk"
RDEPEND="
!<dev-texlive/texlive-pictures-2023_p69409-r2
>=dev-texlive/texlive-basic-2011
app-text/ghostscript-gpl
tk? ( dev-lang/tk )
"
BDEPEND="
app-arch/unzip
sys-apps/texinfo
"
src_compile() {
cd doc || die
makeinfo epspdf || die
}
src_install() {
exeinto /usr/share/${PN}
doexe epspdf.tlu
insinto /usr/share/${PN}
if use tk ; then
doins epspdf.help doc/images/epspdf.png
doexe epspdftk.tcl
fi
dobin_texmf_scripts ${PN}/epspdf.tlu
use tk && dobin_texmf_scripts ${PN}/epspdftk.tcl
doinfo doc/epspdf.info
dodoc doc/Changelog
if use doc ; then
dodoc doc/epspdf.pdf
dodoc -r doc
fi
# Give it a .desktop
if use tk; then
make_desktop_entry epspdftk epspdftk "${EPREFIX}/usr/share/${PN}/epspdf.png" "Graphics;ImageProcessing"
fi
}
|