blob: add159d3d4dba6a05bdf8a52d284f659e8555012 (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="${PN//-bin/}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Conversion between markup formats (binary package)"
HOMEPAGE="https://pandoc.org/
https://github.com/jgm/pandoc/"
BASE_URI="https://github.com/jgm/${MY_PN}/releases/download/${PV}/${MY_P}"
SRC_URI="
amd64? ( ${BASE_URI}-linux-amd64.tar.gz )
arm64? ( ${BASE_URI}-linux-arm64.tar.gz )
"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="-* amd64 arm64"
IUSE="+pandoc-symlink"
RDEPEND="
pandoc-symlink? (
!${CATEGORY}/${MY_PN}
!app-text/pandoc-cli
!dev-haskell/pandoc
)
"
QA_FLAGS_IGNORED="usr/bin/${PN}"
QA_PRESTRIPPED="${QA_FLAGS_IGNORED}"
src_unpack() {
default
# Manpages are gzipped.
unpack "${S}/share/man/man1"/*.1.gz
}
src_install() {
exeinto /usr/bin
newexe "./bin/${MY_PN}" "${PN}"
dosym "${PN}" /usr/bin/pandoc-lua-bin
dosym "${PN}" /usr/bin/pandoc-server-bin
newman "${WORKDIR}/${MY_PN}-lua.1" pandoc-lua-bin.1
newman "${WORKDIR}/${MY_PN}-server.1" pandoc-server-bin.1
newman "${WORKDIR}/${MY_PN}.1" "${PN}.1"
if use pandoc-symlink ; then
dosym "${PN}" "/usr/bin/${MY_PN}"
dosym pandoc-lua-bin "/usr/bin/${MY_PN}-lua"
dosym pandoc-server-bin "/usr/bin/${MY_PN}-server"
dosym "${PN}.1" "/usr/share/man/man1/${MY_PN}.1"
dosym pandoc-lua-bin.1 "/usr/share/man/man1/${MY_PN}-lua.1"
dosym pandoc-server-bin.1 "/usr/share/man/man1/${MY_PN}-server.1"
fi
}
|